search
HomeBackend DevelopmentPython TutorialHow to install and use Python requests

    1. Preparation

    First of all, we need to make sure that we have installed the requests library before. If not, follow the steps below to follow the library.

    pip installation

    Whether it is Windows, Linux or Mac, it can be installed through the pip package management tool.

    Run the following command on the command line to complete the installation of the requests library:

    pip3 install requests

    This is the simplest installation method, and this method is recommended for installation.

    Verify installation

    In order to verify whether the library has been installed successfully, you can test it on the command line:

    import requests
     
    res = requests.get('https://www.baidu.com/')
     
    print(res)

    Enter the above content. If there is no error message, then just Prove that we have successfully installed requests.

    2. Example introduction

    The requests library uses the get() method to request web pages. Let’s take a look at it through an example.

    import requests
     
    res = requests.get('https://www.baidu.com/')
     
    print(type(res))
     
    print(res)
     
    print(res.text)
     
    print(res.cookies)

    Here we call the get() method to achieve it, get a response object, and then output the response type, status code, content and cookies respectively.

    It is not surprising that you can only successfully initiate a get() request using the get() method, there are other more convenient requests available. Such as post(), put(), etc.

    3.get() request

    One of the most common HTTP requests is the GET request. Let’s first learn about the method of using requests to build GET

    Basic example

    First, we build the simplest get request. The link of the request is as follows. The website will judge that if the user initiates a get request, it will return the response request information

    import requests
     
    res = requests.get('http://httpbin.org/get')
     
    print(res.text)

    The results of the operation are as follows:

    {
      "args": {}, 
      "headers": {
        "Accept": "*/*", 
        "Accept-Encoding": "gzip, deflate", 
        "Host": "httpbin.org", 
        "User-Agent": "python-requests/2.27.1", 
        "X-Amzn-Trace-Id": "Root=1-637ae5d7-35da1bf57b139d152585d12a"
      }, 
      "origin": "223.215.67.113", 
      "url": "http://httpbin.org/get"
    }

    It can be found that we successfully initiated the get request, and the returned result contains the request header, url, IP and other information.

    So, for a GET request, if we want to add additional information, how do we generally add it? For example, now I want to add two parameters, where name is Tina and age is 18. To construct this request link, can we write it directly:

    r = requests.get('http://httpbin.org/get?name=Tina&age=18')

    This is also possible. We can also construct it through a dictionary. Just use the params parameter.

    import requests
     
    data = {
     
        'name':'Tina',
        
        'age':'18'
        }
     
    res = requests.get('http://httpbin.org/get',params = data)
     
    print(res.text)

    The running results are as follows:

    {
      "args": {
        "age": "18", 
        "name": "Tina"
      }, 
      "headers": {
        "Accept": "*/*", 
        "Accept-Encoding": "gzip, deflate", 
        "Host": "httpbin.org", 
        "User-Agent": "python-requests/2.27.1", 
        "X-Amzn-Trace-Id": "Root=1-637ae902-695483e87b26b3ad49d15df7"
      }, 
      "origin": "223.215.67.113", 
      "url": "http://httpbin.org/get?name=Tina&age=18"
    }

    Judging from the running results, the requested link automatically becomes a link with a suffix.

    In addition, the web page actually returns a string type (str), but its format is json(). We can use json to return a dictionary. If it is not in json format, an error will be reported when using json and a json.decoder.JSONDecodeError exception will be thrown.

    4.post() request

    In addition to the most basic get request, there is also a more common request method is post(). It is also very simple to implement post requests using requests. The example is as follows.

    import requests
     
    res = requests.post('http://httpbin.org/post')
     
    print(res.text)

    After running, you will find the result, which means that our post request is successful.

    5. Response

    Send a request, and the response you get will definitely be a response. In addition to text, there are status codes, response headers, cookies, etc.

    requests library can be used to send HTTP requests and get responses. After sending an HTTP request, all data returned from the server is included in the Response object. The Response object has the following attributes:

    status_code: HTTP status code, indicating the server's response status.
    headers: A dictionary containing all header information returned from the server.
    body: A byte string containing all data returned from the server.

    The above is the detailed content of How to install and use Python requests. For more information, please follow other related articles on the PHP Chinese website!

    Statement
    This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
    Python vs. C  : Learning Curves and Ease of UsePython vs. C : Learning Curves and Ease of UseApr 19, 2025 am 12:20 AM

    Python is easier to learn and use, while C is more powerful but complex. 1. Python syntax is concise and suitable for beginners. Dynamic typing and automatic memory management make it easy to use, but may cause runtime errors. 2.C provides low-level control and advanced features, suitable for high-performance applications, but has a high learning threshold and requires manual memory and type safety management.

    Python vs. C  : Memory Management and ControlPython vs. C : Memory Management and ControlApr 19, 2025 am 12:17 AM

    Python and C have significant differences in memory management and control. 1. Python uses automatic memory management, based on reference counting and garbage collection, simplifying the work of programmers. 2.C requires manual management of memory, providing more control but increasing complexity and error risk. Which language to choose should be based on project requirements and team technology stack.

    Python for Scientific Computing: A Detailed LookPython for Scientific Computing: A Detailed LookApr 19, 2025 am 12:15 AM

    Python's applications in scientific computing include data analysis, machine learning, numerical simulation and visualization. 1.Numpy provides efficient multi-dimensional arrays and mathematical functions. 2. SciPy extends Numpy functionality and provides optimization and linear algebra tools. 3. Pandas is used for data processing and analysis. 4.Matplotlib is used to generate various graphs and visual results.

    Python and C  : Finding the Right ToolPython and C : Finding the Right ToolApr 19, 2025 am 12:04 AM

    Whether to choose Python or C depends on project requirements: 1) Python is suitable for rapid development, data science, and scripting because of its concise syntax and rich libraries; 2) C is suitable for scenarios that require high performance and underlying control, such as system programming and game development, because of its compilation and manual memory management.

    Python for Data Science and Machine LearningPython for Data Science and Machine LearningApr 19, 2025 am 12:02 AM

    Python is widely used in data science and machine learning, mainly relying on its simplicity and a powerful library ecosystem. 1) Pandas is used for data processing and analysis, 2) Numpy provides efficient numerical calculations, and 3) Scikit-learn is used for machine learning model construction and optimization, these libraries make Python an ideal tool for data science and machine learning.

    Learning Python: Is 2 Hours of Daily Study Sufficient?Learning Python: Is 2 Hours of Daily Study Sufficient?Apr 18, 2025 am 12:22 AM

    Is it enough to learn Python for two hours a day? It depends on your goals and learning methods. 1) Develop a clear learning plan, 2) Select appropriate learning resources and methods, 3) Practice and review and consolidate hands-on practice and review and consolidate, and you can gradually master the basic knowledge and advanced functions of Python during this period.

    Python for Web Development: Key ApplicationsPython for Web Development: Key ApplicationsApr 18, 2025 am 12:20 AM

    Key applications of Python in web development include the use of Django and Flask frameworks, API development, data analysis and visualization, machine learning and AI, and performance optimization. 1. Django and Flask framework: Django is suitable for rapid development of complex applications, and Flask is suitable for small or highly customized projects. 2. API development: Use Flask or DjangoRESTFramework to build RESTfulAPI. 3. Data analysis and visualization: Use Python to process data and display it through the web interface. 4. Machine Learning and AI: Python is used to build intelligent web applications. 5. Performance optimization: optimized through asynchronous programming, caching and code

    Python vs. C  : Exploring Performance and EfficiencyPython vs. C : Exploring Performance and EfficiencyApr 18, 2025 am 12:20 AM

    Python is better than C in development efficiency, but C is higher in execution performance. 1. Python's concise syntax and rich libraries improve development efficiency. 2.C's compilation-type characteristics and hardware control improve execution performance. When making a choice, you need to weigh the development speed and execution efficiency based on project needs.

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Tools

    SecLists

    SecLists

    SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

    EditPlus Chinese cracked version

    EditPlus Chinese cracked version

    Small size, syntax highlighting, does not support code prompt function

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    SublimeText3 English version

    SublimeText3 English version

    Recommended: Win version, supports code prompts!

    PhpStorm Mac version

    PhpStorm Mac version

    The latest (2018.2.1) professional PHP integrated development tool