Metadata-Version: 2.4
Name: scrapinglib
Version: 0.12.0
Home-page: https://github.com/Suwmlee/scrapinglib
Author: suwmlee
Author-email: suwmlee@gmail.com
Project-URL: Bug Tracker, https://github.com/Suwmlee/scrapinglib/issues
Project-URL: Source, https://github.com/Suwmlee/scrapinglib
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: lxml
Requires-Dist: pysocks
Requires-Dist: mechanicalsoup
Requires-Dist: curl_cffi
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python

# scrapinglib


## 使用:

```python
from scrapinglib import search

# 搜刮`TMDB`编号`14534`的电影信息
data = search('14534', 'tmdb', type='general')

# 使用代理
proxydict = {
    "http": "socks5h://127.0.0.1:1080",
    "https": "socks5h://127.0.0.1:1080"
}
data = search('14534', 'tmdb', type='general', proxies=proxydict)

```
