Python Web Scraper - Simple Url Request

from urllib.request import urlopen
html = urlopen("http://www.baidu.com")
print(html.read())


注意: 以上代码基于Python 3.x

 

posted @ 2015-08-17 11:02  Master HaKu  阅读(338)  评论(0编辑  收藏  举报