您好,登錄后才能下訂單哦!
小編給大家分享一下Python如何實(shí)現(xiàn)自動(dòng)獲取種子磁力鏈接方式,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
python的五大特點(diǎn):1.簡(jiǎn)單易學(xué),開發(fā)程序時(shí),專注的是解決問題,而不是搞明白語言本身。2.面向?qū)ο螅c其他主要的語言如C++和Java相比, Python以一種非常強(qiáng)大又簡(jiǎn)單的方式實(shí)現(xiàn)面向?qū)ο缶幊獭?.可移植性,Python程序無需修改就可以在各種平臺(tái)上運(yùn)行。4.解釋性,Python語言寫的程序不需要編譯成二進(jìn)制代碼,可以直接從源代碼運(yùn)行程序。5.開源,Python是 FLOSS(自由/開放源碼軟件)之一。
因?yàn)槲议e來無事,所以準(zhǔn)備找一部電影來看看。 然后我找到了種子搜索網(wǎng)站,可是這類網(wǎng)站的彈窗廣告太多,搞得我很煩。所以我就想著自己用python寫一個(gè)自動(dòng)獲取磁力鏈接的腳本。
整個(gè)大概寫了半個(gè)小時(shí)。
代碼如下
import requests import re from bs4 import BeautifulSoup url="*種子的網(wǎng)站*/" header={ "Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", "Accept-Encoding":"gzip, deflate", "Accept-Language":"zh-CN,zh;q=0.8", "Cache-Control":"max-age=0", "Connection":"keep-alive", "Content-Length":"65", "Content-Type":"application/x-www-form-urlencoded", "Host":"btkitty.bid", "Origin":"*種子的網(wǎng)站*", "Referer":"*種子的網(wǎng)站*/", "Upgrade-Insecure-Requests":"1", "User-Agent":"Mozilla/5.0 (Windows NT 10.0.14393; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2950.5 Safari/537.36" } while True: word=input("輸入搜索關(guān)鍵詞:") data={ "keyword":word, "hidden":"true" } res=requests.post(url,data=data,headers=header) bs=BeautifulSoup(res.text,"lxml") itemInfo=bs.find_all("dd",class_="option") torrent={} for item in itemInfo: magnet=item.find_next("a",href=re.compile("magnet.*")).attrs["href"] name=item.find_previous("a",href=re.compile("*種子的網(wǎng)站*/.*\.html")).text size=item.find_next(text=re.compile("\u6587\u4ef6\u5927\u5c0f")).find_next("b").text time=item.find_next(text=re.compile("\u6536\u5f55\u65f6\u95f4")).find_next("b").text hot=item.find_next(text=re.compile("\u4eba\u6c14")).find_next("b").text torrent[name]=[name,time,size,hot,magnet] for item in torrent: print("名稱:",torrent[item][0]) print("發(fā)布時(shí)間:",torrent[item][1]) print("大小:",torrent[item][2]) print("熱度:",torrent[item][3]) print("磁力鏈接:",torrent[item][4],'\n')
運(yùn)行結(jié)果如下
以上是“Python如何實(shí)現(xiàn)自動(dòng)獲取種子磁力鏈接方式”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。