【urllib and urllib2】
这是两个python的网络模块 内置的 提供很好的网络访问的功能。
#!coding:utf-8 import urllib2 res = urllib2.urlopen(‘http://www.baidu.com‘) html = res.read() print(html)
时间: 2024-10-13 07:16:35
【urllib and urllib2】
这是两个python的网络模块 内置的 提供很好的网络访问的功能。
#!coding:utf-8 import urllib2 res = urllib2.urlopen(‘http://www.baidu.com‘) html = res.read() print(html)