從盜版網站下載種子有點麻煩。這個基於 Python 的 CLI 可幫助您輕鬆下載種子。
pip install bs4
pip install selenium
以下任意瀏覽器:
注意:尚未實現對 Firefox 和 IE 瀏覽器的支持
usage: pyratebay.py [-h] [-c [{all,audio,video,apps,games,other}]] query
positional arguments:
query Name of the media to download
optional arguments:
-h, --help show this help message and exit
-c, --category [{all,audio,video,apps,games,other}]
Searches for the given 'name' in the specified
category (default = all)
新更新的海盜灣網站的工作方式有所不同。它僅在加載網頁後才獲取資料。該表是由 JavaScript 動態填充的,這使得無法使用普通的requests
或urllib
模組來抓取網頁的數據,因為它只返回網頁的基本 HTML 內容,沒有任何表和其他內容。為了解決這個問題,應該先載入網頁,然後使用selenium
或bs4
模組抓取網頁的內容。這種抓取網頁的方式稱為動態網頁抓取,而該程式確實實現了這種方式。
麻省理工學院許可證