简介
$ k; `# u& ~( _! A- z+ ^* y AutoScraper 是使用 Python 实现的 Web 爬虫,兼容 Python 3,能快速且智能获取指定网站上的数据,这些数据可以是网页文本、URL 地址或者是其它 HTML 元素。另外,它还可以学习抓取规则并返回类似的元素。
8 J+ N: \3 q$ t# W 下载安装
9 b% R) f$ j$ \1 k 项目的源码地址是:https://github.com/alirezamika/autoscraper % E' u8 s+ v |- Z
兼容 Python 3。可使用以下方法进行安装:6 ?, C) B. j: N: z* T/ p( {3 s
(1)从git获取安装 $ pip install git+https://github.com/alirezamika/autoscraper.git
. j" e( ]/ J5 ]: T (2)从PyPI获取安装 $ pip install autoscraper
! Q- h+ m8 r& s: b3 n (3)下载源码后进行安装 $ python setup.py install7 q$ N* l5 t( q- N$ L
简单使用 3 O3 M$ n7 b+ c9 d
假设我们想在stackoverflow页面中获取所有相关的文章标题:
# t) X! x" y+ L5 x* S( z from autoscraper import AutoScraper
url = 'https://stackoverflow.com/questions/2081586/web-scraping-with-python'
wanted_list = ["How to call an external command?"]
scraper = AutoScraper()
result = scraper.build(url, wanted_list)
print(result) 输出结果如下:1 e4 @/ x* g' @, L
[
'How do I merge two dictionaries in a single expression in Python (taking union of dictionaries)?',
'How to call an external command?',
'What are metaclasses in Python?',
'Does Python have a ternary conditional operator?',
'How do you remove duplicates from a list whilst preserving order?',
'Convert bytes to a string',
'How to get line count of a large file cheaply in Python?',
"Does Python have a string 'contains' substring method?",
'Why is “1000000000000000 in range(1000000000000001)” so fast in Python 3?'
]抓取相似结果 ( z: i8 [0 v- m5 y) Y5 [, Y- I
当你还想获取stackoverflow上其他页面中所有相关的文章标题,则可以直接通过get_result_similar方法获取:$ j7 |7 |. W/ s; e5 _
scraper.get_result_similar('https://stackoverflow.com/questions/606191/convert-bytes-to-a-string') 两个页面的抓取结果为:
# S0 \9 H* }+ |- [
! R0 M# N8 \8 z6 K0 r4 ~7 J 抓取确切结果
% z8 j' k6 F( f# A7 v& X 当你只想抓取某个确切的结果,可以使用get_result_exact方法,即从wanted_list中以完全相同的顺序检索数据:
3 `$ C q7 _6 O0 | scraper.get_result_exact('https://stackoverflow.com/questions/606191/convert-bytes-to-a-string') 比如抓取页面中排第2的相关文章标题,执行结果:
" ]0 M2 e' d3 ]7 M7 b! Q1 L6 B8 v
+ [) ?. W2 g& Z# A$ W& J& T
自定义请求模块参数 " H) J( e4 F" ~9 K0 [" O8 h
你还可以传递任何自定义请求模块参数。例如,你可能想使用代理或自定义头:
4 @" d+ d6 }) D& G- ]6 D proxies = {
"http": 'http://127.0.0.1:8001',
"https": 'https://127.0.0.1:8001',
}
result = scraper.build(url, wanted_list, request_args=dict(proxies=proxies))抓取多项信息 8 g# j* E- h1 s. \
假设我们想要抓取关于文本,Star的数量和Github回购页面的问题链接:
& |* ?' U; C9 K" l! ^! C; X from autoscraper import AutoScraper
url = 'https://github.com/alirezamika/autoscraper'
wanted_list = ['A Smart, Automatic, Fast and Lightweight Web Scraper for Python', '2.5k', 'https://github.com/alirezamika/autoscraper/issues']
scraper = AutoScraper()
scraper.build(url, wanted_list) 执行结果为:
7 ^- ^* F* f1 w' y* e
6 A: d0 P! |" {: L 保存模型
i- G- X$ x- e; m6 ]5 W, D+ K 我们可以保存抓取的模型以便以后使用:* x8 w! k4 C1 F( ]; D% S; ^
# 指定保存的文件路径
scraper.save('stackoverflow')
# 调用方法:
scraper.load('stackoverflow') AutoScraper简单介绍就到这里了,如果你想使用更多的功能,详见官方主页了解。
* d# w* R' C$ e7 E
$ @0 @5 F$ m7 J5 \' X ]) A