2 Star 1 Fork 1

Reeye/share

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
chh.py 849 Bytes
一键复制 编辑 原始数据 按行查看 历史
Reeye 提交于 2022-01-05 13:09 . 1
import urllib.parse
import urllib.request
import tkinter.messagebox
import tkinter.simpledialog
import time
url = 'https://www.chiphell.com/forum-26-1.html'
keyword = tkinter.simpledialog.askstring('提示', '输入抓取关键词', initialvalue = '3090')
cookie = tkinter.simpledialog.askstring('提示', '输入cookie', initialvalue = '')
while True:
req = urllib.request.Request(url)
req.add_header('cookie', cookie)
req.add_header('user-agent', "Mozilla/5.0 (Windows NT 10.0; Win64; x64)")
try:
response = urllib.request.urlopen(req)
content = response.read().decode("utf8")
if content.find(keyword) != -1:
tkinter.messagebox.showinfo('提示', '有人在卖[' + keyword + ']赶紧去抢!')
break
except urllib.error.HTTPError as e:
print(e.code)
time.sleep(5)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/reeye/share.git
git@gitee.com:reeye/share.git
reeye
share
share
master

搜索帮助