简单爬虫例子

Posted 20181013python

tags:

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

import re
from urllib.request import urlopen

def getPage(url):
    response = urlopen(url)
    return response.read().decode(utf-8)

def parsePage(s):
    ret = re.findall(
        <div class="item">.*?<div class="pic">.*?<em .*?>(?P<id>d+).*?<span class="title">(?P<title>.*?)</span>
       .*?<span class="rating_num" .*?>(?P<rating_num>.*?)</span>.*?<span>(?P<comment_num>.*?)评价</span>,s,re.S)
    return ret

def main(num):
    url = https://movie.douban.com/top250?start=%s&filter= % num
    response_html = getPage(url)
    ret = parsePage(response_html)
    print(ret)

count = 0
for i in range(10):   # 10页
    main(count)
    count += 25

# url从网页上把代码搞下来
# bytes decode ——> utf-8 网页内容就是我的待匹配字符串
# ret = re.findall(正则,带匹配的字符串)  #ret是所有匹配到的内容组成的列表

 

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

在android中显示隐藏片段

简单爬虫例子

python多线程爬虫的简单例子

Python——网络爬虫,一个简单的通用代码框架

golang goroutine例子[golang并发代码片段]

有没有易懂的 Python 多线程爬虫代码