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

Access and download web content using Python

大家讲道理
Release: 2016-11-09 10:45:00
Original
2135 people have browsed it

[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()
Copy after login
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template