ban 发表于 2019-3-30 11:54

Python制作全网Vip电影永久免费观看软件


第一次发贴,见谅哈。可以通过此代码打包合成.exe文件,方便使用

import requests
import re
import tkinter as tk
import webbrowser

url = 'http://www.qmaile.com/'
responed = requests.get(url)
# responed.encoding = 'utf-8' 下一个也可以
responed.encoding = responed.apparent_encoding
# print(responed.text)

reg = re.compile('<option value="(.*?)" selected="">')
res = re.findall(reg,responed.text)
#print(res)

one = res[0]
two = res[1]
three = res[2]
four = res[3]
five = res[4]
six = res[5]

root = tk.Tk() #启动窗口
root.title('班小超的软件')
root.geometry('500x300') #界面大小
# root.geometry('500x250+100+100')# 固定界面大小
l1 = tk.Label(root,text='播放接口:',font=12) #标签
l1.grid(row = 0,column = 0) #位置

var = tk.StringVar()
r1 = tk.Radiobutton(root,text='播放接口1',variable = var,value = one)
r1.grid(row = 0,column = 1)
r2 = tk.Radiobutton(root,text='播放接口2',variable = var,value = two)
r2.grid(row = 1,column = 1)
r3 = tk.Radiobutton(root,text='播放接口3',variable = var,value = three)
r3.grid(row = 2,column = 1)
r4 = tk.Radiobutton(root,text='播放接口4',variable = var,value = four)
r4.grid(row = 3,column = 1)
r5 = tk.Radiobutton(root,text='播放接口5',variable = var,value = five)
r5.grid(row = 4,column = 1)
r6 = tk.Radiobutton(root,text='播放接口6',variable = var,value = six)
r6.grid(row = 5,column = 1)

l2 = tk.Label(root,text='播放链接:',font=12) #标签
l2.grid(row=6,column=0)

e1 = tk.Entry(root,text='',width=45) #文本框
e1.grid(row=6,column=1)

def bf():
    webbrowser.open(var.get()+e1.get())

def qc():
    e1.delete(0,'end')

b1 = tk.Button(root,text='播放',font=12,width=8,command = bf)
b1.grid(row=7,column=1)
b2 = tk.Button(root,text='清除',font=12,width=8,command = qc)
b2.grid(row=8,column=1)

root .mainloop()

dsj 发表于 2019-10-12 22:15

ixeliap 发表于 2019-3-30 12:09

危险网站{:301_1001:}

陈小皮 发表于 2019-3-30 12:17

这个咋用呢啊

lu_ 发表于 2019-3-30 12:18

还是网页直接解析方便

hb_chenjianghu 发表于 2019-3-30 12:26

还是网页解析更加方便

detective 发表于 2019-3-30 12:29

支持原创,不过这个解析网站貌似有点问题啊?

Zuichu521 发表于 2019-3-30 14:15

链接删了?

ytkxw 发表于 2019-3-30 16:50

你们都好牛啊

czqxz 发表于 2019-3-30 18:52

需要单独打开浏览器,麻烦啊

c0ld 发表于 2019-3-30 19:11

用pyinstaller就可以直接打包成exe,楼主还花心思用tk写了个窗口,点个赞,
像我这种懒人爬虫爬完直接打印地址= =
页: [1] 2 3
查看完整版本: Python制作全网Vip电影永久免费观看软件