I need to send some JSON data in a POST message to a RESTful webservice.
Which python module should I be using for this? Is there some sample code I can refer to?
|
I need to send some JSON data in a POST message to a RESTful webservice. Which python module should I be using for this? Is there some sample code I can refer to? |
||||
|
|
|
Which bit are you having trouble with? The JSON, or the POST? For JSON, the For the POST, there are various modules in the standard library, but the best bet is to install the third-party requests library. |
|||||
|
|
Requests is probably the best library for the job. It certainly beats urllib and urllib2. You can get it and see an example at http://pypi.python.org/pypi/requests or you can just install it with "pip install requests" There's a few more examples using the Github API with both the requests library and others at https://github.com/issackelly/Consuming-Web-APIs-with-Python-Talk |
|||
|
|
|
here is what I've used for post and get requests
It does same as this sequence of CLI commands:
|
|||||
|