Process REST Payload Using Pandas
Posted: May 29, 2022
[ Process REST Payload using pandas¶ Let us understand how to process REST Payload using Pandas Dataframe APIs. We can get details about all the public repositories using GET /repositories from https://api.github.com. As it is getting or reading data from external application the details are available via GET. We will have JSON Array as part …
0 comments
Process REST Payload Using Collection Operations
Posted: May 29, 2022
[ Process REST Payload using Collection Operations¶ Let us understand how to process REST Payload using Collection Operations. We can get details about all the public repositories using GET /repositories from https://api.github.com. As it is getting or reading data from external application the details are available via GET. We will have JSON Array as part …
0 comments
Process REST Payload Using Collection Operations Read More »
Convert REST Payload to Python Objects
Posted: May 29, 2022
[ Convert REST Payload to Python Objects¶ Let us understand how we can convert REST GET Payload to appropriate Python Objects. We have already seen that the payload is of type str. Also, it contains valid json. It can be a simple JSON Document or JSON Array. Here are the steps involved in converting REST …
0 comments
Getting Started with Requests
Posted: May 29, 2022
[ Getting Started with requests¶ Let us get started with requests module. You might have to install requests using pip. requests is part of many other 3rd party libraries. You can check whether it is already installed or not. In [1]: !pip list|grep requests requests 2.27.1 In [2]: !pip install requests Defaulting to user installation because normal …
0 comments
Overview of Postman
Posted: May 29, 2022
[ Overview of Postman¶ Postman is the most popular way of exploring REST APIs with out getting into programming nuances. Let us get an overview of postman. You can use postman via browser, however we recommend to download and install the client utility. Here are the some of the key features related to Postman. It …
0 comments
Using curl Commands
Posted: May 29, 2022
[ Using curl command¶ Let us understand how we can use curl command to place REST requests to get the response from the external applications. curl is available in almost all operating sytems. It is a command which can be leveraged to talk to external applications via REST APIs. We can make all standard REST …
0 comments