July 2015
Intermediate to advanced
366 pages
8h 7m
English
There are a number of Python modules that you can use to make REST requests. There are really too many! Modules include urllib2, httplib2, pycurl, and requests. requests is definitely the best of the bunch in my opinion. It is cleaner and easier to use for repeated interaction with RESTful APIs. Once you've made the request, you can then parse the JSON response with the Python json module. In this recipe, you will learn how to do this.
The Python requests module can be used to submit requests to an ArcGIS Server resource and process the returned response. Follow these steps to learn the basic steps involved in submitting requests and processing the response using the requests ...
Read now
Unlock full access