import gevent
from urllib.request import urlopen
# 爬虫
def f(url):
print(‘GET: %s‘ % url)
resp = urlopen(url)
data = resp.read()
with open(‘baidu.html‘, ‘wb‘) as f:
f.write(data)
print(‘%d bytes %s‘ % (len(data), url))
# f(‘http://www.xiaohuar.com/‘)
f(‘http://www.baidu.com/‘)
# gevent.joinall([
#
# gevent.spawn(f, ‘https://www.python.org/‘),
# gevent.spawn(f, ‘https://www.yahoo.com/‘),
#
# ])
python-爬网页
Posted 巅峰之斗
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-爬网页相关的知识,希望对你有一定的参考价值。
以上是关于python-爬网页的主要内容,如果未能解决你的问题,请参考以下文章