Home >>Python Requests Module
By using the requests module in python you can send HTTP requests.
Method | Description |
---|---|
delete(url, args) | It helps to Sends a DELETE request to the specified url |
get(url, params, args) | This method Sends a GET request to the specified url |
head(url, args) | It is used to Sends a HEAD request to the specified url |
patch(url, data, args) | It is used to Sends a PATCH request to the specified url |
post(url, data, json, args) | This method helps to Sends a POST request to the specified url |
put(url, data, args) | It is used to Sends a PUT request to the specified url |
request(method, url, args) | It is used to Sends a request of the specified method to the specified url |
Sr.No. | Topics |
---|---|
1 | Python Requests delete() Method |
2 | Python Requests get() Method |
3 | Python Requests head() Method |
4 | Python Requests post() Method |