Home >Backend Development >Python Tutorial >Access and download web content using Python

Access and download web content using Python

大家讲道理
大家讲道理Original
2016-11-09 10:45:002091browse

[Python] code

#!/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()
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn