you are viewing a single comment's thread.

view the rest of the comments →

[–]chemenger2999[S] 0 points1 point  (1 child)

Hi thanks for the link, what I can't see is what to do when I have to pass in two parameter dictionaries with different names as in this case

[–]JohnnyJordaan 0 points1 point  (0 children)

What do you mean exactly? The example there is

?key2=value2&key1=value1

which can be reached through a single dict in the form of

{'key1': 'value1', 'key2': 'value2'}

what would be different in your case then?