例子,python获取网页内容。
import sys, urllib
url = "http://www.jb200.com" #网页地址
wp = urllib.urlopen(url) #打开连接
content = wp.read() #获取页面内容
fp = open("/home/cx/content.txt","w") #打开一个文本文件
fp.write(content) #写入数据
fp.close() #关闭文件
CopyRight © 2010-2021 脚本学堂 Jb200.com , All Rights Reserved.