python urllib2
时间: 2023-08-17 09:11:57 浏览: 127
Python 3中没有urllib2模块,而是使用urllib模块。你可以使用urllib.request模块来发送HTTP请求和处理响应。下面是一个简单的示例:
```python
import urllib.request
# 发送GET请求
response = urllib.request.urlopen('http://www.example.com')
html = response.read()
print(html)
# 发送POST请求
data = b'key1=value1&key2=value2'
req = urllib.request.Request('http://www.example.com', data=data, method='POST')
response = urllib.request.urlopen(req)
html = response.read()
print(html)
```
请注意,上述示例中的URL仅作为示例使用,你可以根据自己的需求更改URL。
阅读全文