Browsing Tag
http
6 posts
HTTP different authentications with a request module in python
HTTP Basic Authentication, HTTP Digest Authentication, and HTTP Bearer Authentication are three common authentication mechanisms used in the…
Building an HTTP client with httpx in python
httpx is a Python library that provides a full-featured HTTP client based on the httpcore library. It is…
Building an HTTP client with Request and RESTful API in python
The requests module in Python is a popular library for making HTTP requests, and it is commonly used…
Building an HTTP client with urllib.request module in python
The urllib.request module in Python provides a higher-level interface for fetching URLs (Uniform Resource Locators) than the http…
Building an HTTP client with http.client module in python
In Python, the http.client module provides a set of classes and methods for working with the HTTP protocol.…
Introduction to the HTTP protocol and status codes
HTTP (Hypertext Transfer Protocol) is an application-layer protocol widely used for transmitting hypermedia documents, such as HTML. It…