Home > Article > Backend Development > How to use the urllib.request.urlopen() function to send a POST request in Python 3.x
How to use the urllib.request.urlopen() function to send a POST request in Python 3.x
In network programming, it is often necessary to send a POST request through the HTTP protocol to interact with the server. Python provides the urllib.request.urlopen() function to send various HTTP requests, including POST requests. This article will detail how to use the urllib.request.urlopen() function to send a POST request, with code examples.
The urllib.request.urlopen() function is an HTTP client module in the Python standard library, used to send HTTP requests and receive HTTP responses. Unlike GET requests, POST requests submit data to the server and expect the server to process the submitted data accordingly.
The following are the general steps to use the urllib.request.urlopen() function to send a POST request:
import urllib.request
data = { 'key1': 'value1', 'key2': 'value2' }
import urllib.parse url = 'http://example.com/post' data = { 'key1': 'value1', 'key2': 'value2' } data = urllib.parse.urlencode(data).encode() req = urllib.request.Request(url, data=data, method='POST')
response = urllib.request.urlopen(req) result = response.read().decode() print(result)
In the above steps, url is the target URL to send the request, and data is the POST data to be submitted. When creating the request object, the urlencode() function is used to convert the data to a URL-encoded string, and the encode() method is used to encode it into a byte stream.
Finally, use the urlopen() function to send the request and read the response content through the read() method. Use the decode() method to decode the response content and print the result.
It should be noted that POST requests can contain additional HTTP request header information. These additional request headers can be set when creating the request object by adding the headers parameter.
headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.96 Safari/537.3', 'Content-Type': 'application/x-www-form-urlencoded' } req = urllib.request.Request(url, data=data, headers=headers, method='POST')
In the above code example, the two request headers User-Agent and Content-Type are set through the headers parameter.
Summary
This article introduces how to use Python's urllib.request.urlopen() function to send a POST request. First import the urllib.request module, then create a request object with the URL and POST data, and finally use the urlopen() function to send the request and get the response. By adding the headers parameter, you can also set additional request header information.
The above is a simple example of using the urllib.request.urlopen() function to send a POST request. I hope it can help you understand how to send POST requests in Python and apply it in actual projects.
The above is the detailed content of How to use the urllib.request.urlopen() function to send a POST request in Python 3.x. For more information, please follow other related articles on the PHP Chinese website!