Metadata-Version: 2.1
Name: scrapinglib
Version: 0.2.4
Summary: UNKNOWN
Home-page: https://github.com/Suwmlee/scrapinglib
Author: suwmlee
Author-email: suwmlee@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Suwmlee/scrapinglib/issues
Project-URL: Source, https://github.com/Suwmlee/scrapinglib
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# scrapinglib







## 使用:



```

from scrapinglib import search



proxydict = {

    "http": "socks5h://127.0.0.1:1080",

    "https": "socks5h://127.0.0.1:1080"

}

# search tmdb id 14534

data = search('14534', 'tmdb', type='general', proxies=proxydict)



```



