Python 實現自動獲取種子磁力鏈結方式

2022-09-28 11:12:12 字數 1163 閱讀 1202

整個大概寫了半個小時。

**如下

import requests

import re

from bs4 import beautifulsoup

url="*種子的***/"

header=

while true:

word=input(www.cppcns.com"輸入搜尋關鍵詞:")

data=

res=requests.post(url,data=data,headers=header)

bs=beautifulsoup(res.text,"lxml")

iteminfo=bs.find_all("dd",class_="option")

t程式設計客棧orrent={}

for item in iteminfo:

magnet=item.find_next("a",href=re.compile("magnet.*")).attrs["href"]

name=item.fi程式設計客棧nd_previous("a",href=re.compile("*種子的***/.*\.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("發布時間:",torrent[item][1])

print("大小:",torrent[item][2])

print("熱度:",torrent[item][3])

print("磁力鏈結:",torrent[item][4],'\n')

www.cppcns.com

執行結果如下

本文位址:

python實現自動登入

最近大資料感興趣實踐了一下自動登入,返回結果是登入成功import urllib import urllib2 import gzip import stringio 構建post請求的字典 postvalues postdata urllib.urlencode postvalues 構建get請...

Python實現自動寫郵件

上星期接到任務要完成乙個自動寫郵件的指令碼,基本功能是每兩小時執行一次程式跑出統計 並將統計 的summary傳送到領導的郵箱。由於公司是做數字貨幣的,每兩小時實時監測策略交易情況較為必要。下面來實現自動寫郵件的功能部分 import smtplib from email.mime.text imp...

Python實現自動關機

首先,我們了解下dos下關機的命令詳情 shutdown s f t 300 c 還有300s關機 shutdown i l s r a f m computername t xx c mment d up xx yy i 顯示 gui 介面,必須是第乙個選項 l 登出 不能與選項 m 一起使用 s...