Open In App

GET method – Python requests

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

Requests library is one of the important aspects of Python for making HTTP requests to a specified URL. This article revolves around how one can make GET request to a specified URL using requests.GET() method. Before checking out GET method, let’s figure out what a GET request is –

GET Http Method

The GET method is used to retrieve information from the given server using a given URL. The GET method sends the encoded user information appended to the page request. The page and the encoded information are separated by the ‘?’ character. For example:

https://www.google.com/search?q=hello

How to make GET request through Python Requests

Python’s requests module provides in-built method called get() for making a GET request to a specified URL. 

Syntax – 

requests.get(url, params={key: value}, args)

Example – Let’s try making a request to Github’s APIs for example purposes. 

Python3




import requests
  
# Making a GET request
r = requests.get('https://api.github.com / users / naveenkrnl')
 
# check status code for response received
# success code - 200
print(r)
 
# print content of request
print(r.content)


save this file as request.py and through terminal run,

python request.py

Output –

 python-requests-get-method

Advantages of Using the GET Method

  • Since the data sent by the GET method are displayed in the URL, it is possible to bookmark the page with specific query string values.
  • GET requests can be cached and GET requests remain in the browser history.
  • GET requests can be bookmarked.

Disadvantages of Using the GET Method

  • The GET method is not suitable for passing sensitive information such as the username and password, because these are fully visible in the URL query string as well as potentially stored in the client browser’s memory as a visited page.
  • Because the GET method assigns data to a server environment variable, the length of the URL is limited. So, there is a limitation for the total data to be sent.

Last Updated : 23 Jun, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads