Answers for "application/x-www-form-urlencoded python"

0

application/x-www-form-urlencoded python

$ python3
>>> import requests
>>> d = {'spam': 20, 'eggs': 3}
>>> requests.post("http://localhost:8765", data=d)
^C
>>> import json
>>> j = json.dumps(d)
>>> requests.post("http://localhost:8765", data=j)
^C
Posted by: Guest on April-13-2022

Code answers related to "application/x-www-form-urlencoded python"

Python Answers by Framework

Browse Popular Code Answers by Language