From the
docs Note that params output from urlenpre is enpred to bytes before
it is sent to urlopen as data:
data = urllib.parse.urlenpre(d).enpre("utf-8")req = urllib.request.Request(url)with urllib.request.urlopen(req,data=data) as f: resp = f.read() print(resp)


