简介
, M3 n7 L! H3 T0 a! X; H AutoScraper 是使用 Python 实现的 Web 爬虫,兼容 Python 3,能快速且智能获取指定网站上的数据,这些数据可以是网页文本、URL 地址或者是其它 HTML 元素。另外,它还可以学习抓取规则并返回类似的元素。
: P& U/ j i- ]2 m9 d, Z 下载安装
6 U% y8 b5 |1 Z2 f8 o7 M; k/ N% x. U 项目的源码地址是:https://github.com/alirezamika/autoscraper , O& T% }3 r4 d5 u' ?( F+ _- S$ V
兼容 Python 3。可使用以下方法进行安装:
& r6 m* o1 y: |( g$ \- Y (1)从git获取安装 $ pip install git+https://github.com/alirezamika/autoscraper.git * a6 X4 G1 E8 |! H
(2)从PyPI获取安装 $ pip install autoscraper
' z2 j/ \4 @) }+ x2 z+ a (3)下载源码后进行安装 $ python setup.py install
+ t& d$ M7 c0 c6 D( c* x& S1 }; o 简单使用
) _. a9 I, U) _3 j7 H: m2 p5 M* ^ 假设我们想在stackoverflow页面中获取所有相关的文章标题:* V/ G( F7 Z: V: Y, X6 D; ^
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) 输出结果如下:
# c0 h1 n2 R$ L% W- ?( m1 e$ _' y [
'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?'
]抓取相似结果
( C* g; p# B3 u, x 当你还想获取stackoverflow上其他页面中所有相关的文章标题,则可以直接通过get_result_similar方法获取:
4 R; W1 S" Z: I. \ scraper.get_result_similar('https://stackoverflow.com/questions/606191/convert-bytes-to-a-string') 两个页面的抓取结果为:
& P7 f5 @+ R9 s3 c
9 L( [, b8 S P
抓取确切结果
7 \, c3 ^+ C6 N$ ?9 r' y! g9 c5 f 当你只想抓取某个确切的结果,可以使用get_result_exact方法,即从wanted_list中以完全相同的顺序检索数据:
: L# R9 O$ ~# M2 t0 g' d scraper.get_result_exact('https://stackoverflow.com/questions/606191/convert-bytes-to-a-string') 比如抓取页面中排第2的相关文章标题,执行结果:$ A5 G8 r0 ~2 a3 b. s/ K. \2 H; i+ Y
2 w8 A- M$ E( N9 N( }- G$ c 自定义请求模块参数 & H K1 o1 K( j, _+ c
你还可以传递任何自定义请求模块参数。例如,你可能想使用代理或自定义头:0 v0 C2 A; Q$ y) F0 k) e3 U) r: F
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))抓取多项信息
2 U# O7 b7 o" W& G6 u 假设我们想要抓取关于文本,Star的数量和Github回购页面的问题链接:) t3 H' U; w2 d5 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) 执行结果为:/ N: S( c" o8 k6 ~) L- \
1 c7 O* Z. W* `* i |/ n9 |' I
保存模型
5 ]5 I5 A# h; N$ Q6 L) X0 y* J8 T 我们可以保存抓取的模型以便以后使用:
) s! H }' V* `1 F' G4 \ # 指定保存的文件路径
scraper.save('stackoverflow')
# 调用方法:
scraper.load('stackoverflow') AutoScraper简单介绍就到这里了,如果你想使用更多的功能,详见官方主页了解。
5 |* k( s4 |4 g& `
6 U8 Z, i. I+ P0 |3 p