Python 爬虫实例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 爬虫实例相关的知识,希望对你有一定的参考价值。

下面是我写的一个简单爬虫实例

1.定义函数读取html网页的源代码

2.从源代码通过正则表达式挑选出自己需要获取的内容

3.序列中的htm依次写到d盘

#!/usr/bin/python
import re
import urllib.request

#定义函数读取html网页的源代码
def getHtml(url):
    page = urllib.request.urlopen(url)
    html = page.read()
    return html

#从源代码通过正则表达式挑选出自己需要获取的内容
def getImg(html):
    reg = r‘href="(.*?\\.htm)"‘
    imgre = re.compile(reg)
    implist = re.findall(imgre,html)

#序列中的htm依次写到d盘
    x = 0
    for imgurl in implist:
        urllib.request.urlretrieve(imgurl, ‘D:\\htm\\%s.htm‘ % x)
        x += 1



html = getHtml("http://www.10086.cn/hb/index_270_719.html")
html = html.decode(‘utf-8‘)
print(getImg(html))

 运行程序结果:

技术分享

 

 

 

以上是关于Python 爬虫实例的主要内容,如果未能解决你的问题,请参考以下文章

Python 爬虫实例

Python 爬虫实例(10)—— 四行代码实现刷 博客园 阅读数量

python爬虫实例

python爬虫实例

python 爬虫 requests+BeautifulSoup 爬取巨潮资讯公司概况代码实例

python爬虫实例详细介绍之爬取大众点评的数据