Beyond HTTP POST
Explore how to handle HTTP methods beyond GET and POST when working with Python web services. Learn to parse XML responses, extract data using findtext(), and perform HTTP DELETE requests to manage resources programmatically. This lesson demonstrates using httplib2 for more advanced API interaction beyond standard request types.
We'll cover the following...
We'll cover the following...
HTTP isn’t limited to GET and POST. Those are certainly the most common types of requests, especially in web browsers. But web service APIs can go beyond GET and POST, and ...