使用Python访问并下载网页内容的代码

2016-03-01 0 930
使用Python访问并下载网页内容的代码

[Python]代码    

#!/usr/local/bin/python3.2
import urllib.request,io,os,sys

req = urllib.request.Request("http://www.google.com")

f = urllib.request.urlopen(req)

s = f.read()

s = s.decode('gbk','ignore')

mdir = sys.path[0]+'/'

file = open(mdir+'admin6.txt','a',1,'gbk')

file.write(s)
file.close()

遇见资源网 python 使用Python访问并下载网页内容的代码 http://www.ox520.com/16041.html

常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务