About 459 results
Open links in new tab
  1. Python's Requests Library (Guide) – Real Python

    Jul 23, 2025 · The Requests library is the go-to tool for making HTTP requests in Python. Learn how to use its intuitive API to send requests and interact with the web.

  2. Python and REST APIs: Interacting With Web Services

    In this tutorial, you'll learn how to use Python to communicate with REST APIs. You'll learn about REST architecture and how to use the requests library to get data from a REST API. You'll …

  3. Making HTTP Requests With Python

    The requests library is the de facto standard for making HTTP requests in Python. It abstracts the complexities of making requests behind a beautiful, simple API so that you can focus on …

  4. Python & APIs: A Winning Combo for Reading Public Data

    Feb 1, 2025 · In this tutorial, you'll learn what APIs are and how to consume them using Python. You'll also learn some core concepts for working with APIs, such as status codes, HTTP …

  5. Python API Tutorials

    Apr 24, 2020 · Learn to design, build, secure, and consume Python APIs with FastAPI, Flask, Django, Requests, OpenAPI, testing, Docker, and deployment tips.

  6. Using FastAPI to Build Python Web APIs

    To get the most out of this tutorial, it would be helpful for you to know the basics of what HTTP is and how it works, what JSON is, and Python type hints. You will also benefit from using a …

  7. Interacting With REST APIs and Python

    In this video course, you'll learn how to use Python to communicate with REST APIs. You'll learn about REST architecture and how to use the requests library to get data from a REST API. …

  8. Python's urllib.request for HTTP Requests – Real Python

    Jan 11, 2025 · In this tutorial, you'll be making HTTP requests with Python's built-in urllib.request. You'll try out examples and review common errors encountered, all while learning more about …

  9. application programming interface (API) - Real Python

    In this example, you send a GET request to an API endpoint and check if the response is successful using a status code. If so, you parse the JSON data returned by the API and print …

  10. HTTP Requests With Python's urllib.request (Overview)

    If you’re already familiar with HTTP requests such as GET and POST, then you’re well prepared for this video course. Additionally, you should have prior experience using Python to read and …