You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think this would make it possible to then start using your structured dictionary in the params parameter when you call session.post() instead of baking that in to the url itself.
The text was updated successfully, but these errors were encountered:
I need to improve the comment; there's a second difficulty I didn't document.
The query string includes value-less items. E.g. color=&shape=. This can be solved just as you say.
The query string includes semi-colons, but does not treat them (per the spec) as interchangeable with ampersand as query parameter delimiters. Rather, they are considered delimiters within the values. E.g. color=&flags=a;b;;;. I don't know how to solve this using parse_qs().
TxBillSearch/txbillsearch/txbillsearch.py
Line 137 in 7f4a70d
I read your comments in
_query_without_id()
, and think you might be able to get away with passingkeep_blank_values=True
tourllib.parse.parse_qs()
.I think this would make it possible to then start using your structured dictionary in the
params
parameter when you callsession.post()
instead of baking that in to the url itself.The text was updated successfully, but these errors were encountered: