![]() |
VOOZH | about |
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 -
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
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.
save this file as request.py and through terminal run,
python request.py
Output -