Python-Requests Blog Posts

working with REST api internet resources with python and python requests

In this article we are going to see how to use python packages/modules to request REST api mostly web services publicly available.
If you are requesting to an URL it should be the one of the type below from CRUD operations.
POST ( Create )
GET ( Read)
PUT ( Update)
DELETE ( Delete)
Lets say you have the API access to your resources through web services and you want to automate some tasks then you can use python requests package.

1 Likes 1499 Views