简介 " M. l6 p. A; X3 y% T: n: O
AutoScraper 是使用 Python 实现的 Web 爬虫,兼容 Python 3,能快速且智能获取指定网站上的数据,这些数据可以是网页文本、URL 地址或者是其它 HTML 元素。另外,它还可以学习抓取规则并返回类似的元素。 W( u/ S! Q3 ^- P& s4 C0 b: a
下载安装 3 h6 [, _. y! r0 S- |: n
项目的源码地址是:https://github.com/alirezamika/autoscraper
2 n3 F7 n7 c7 p 兼容 Python 3。可使用以下方法进行安装:
" ]) j: n( @+ Q) P9 m (1)从git获取安装 $ pip install git+https://github.com/alirezamika/autoscraper.git ; `* K+ T5 K( V8 `2 D Z
(2)从PyPI获取安装 $ pip install autoscraper, {3 j A8 h* N3 g
(3)下载源码后进行安装 $ python setup.py install
0 g% F+ s/ A& V 简单使用 ) i+ R; L1 w1 x2 u8 R
假设我们想在stackoverflow页面中获取所有相关的文章标题:) R* Y$ @. _+ _+ M) Q
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) 输出结果如下:4 R! E( x- C/ q& q/ i
[
'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?'
]抓取相似结果
" i& {! ^. V# v, t6 X4 E) |7 [ 当你还想获取stackoverflow上其他页面中所有相关的文章标题,则可以直接通过get_result_similar方法获取:
J2 ]/ V+ k+ f0 w" v scraper.get_result_similar('https://stackoverflow.com/questions/606191/convert-bytes-to-a-string') 两个页面的抓取结果为:8 K# O$ U8 O: l' |0 G0 h1 K. v
3 F! N; m6 V6 P+ }& l( G
抓取确切结果
% B5 h% z; ? o0 `6 v 当你只想抓取某个确切的结果,可以使用get_result_exact方法,即从wanted_list中以完全相同的顺序检索数据:. |- V1 K8 v- X' q F' m5 f g
scraper.get_result_exact('https://stackoverflow.com/questions/606191/convert-bytes-to-a-string') 比如抓取页面中排第2的相关文章标题,执行结果:
+ W: W& P! m2 _* z5 [& h/ Q2 M
, K" v8 U( [* u: S' u1 D
自定义请求模块参数
# I$ A7 y9 x L* ~( F, r 你还可以传递任何自定义请求模块参数。例如,你可能想使用代理或自定义头:
) T: \- l h4 F0 X. N 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))抓取多项信息 # A! X+ f5 z/ M) C6 ]
假设我们想要抓取关于文本,Star的数量和Github回购页面的问题链接:
5 b( a. P. o8 n( m1 |: L 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) 执行结果为:
+ o J& b8 i+ Q8 M1 ] \
6 T1 u8 \! f: Y. s; S9 f6 D! W# v
保存模型
/ q7 R/ k* I7 c3 S! e6 ~6 ?$ o0 s/ l 我们可以保存抓取的模型以便以后使用:
- p0 t# \* c% I$ l2 r # 指定保存的文件路径
scraper.save('stackoverflow')
# 调用方法:
scraper.load('stackoverflow') AutoScraper简单介绍就到这里了,如果你想使用更多的功能,详见官方主页了解。. s8 M6 y8 O0 T# W
% l) T. _9 v2 l: ~- V9 V* G) h5 k