0
844
Example query : {"name": "pythoneasy", "year": 2018, "website": "pythoneasy.com" }
from urllib import parse
f = {"name": "pythoneasy", "year": 2018, "website": "pythoneasy.com" }
print(parse.urlencode(f))
name=pythoneasy&year=2018&website=pythoneasy.com
Comment here