Python写的视频下载小工具
本帖最后由 stone0505 于 2022-8-16 11:21 编辑import tkinter as tk
import subprocess
#记得导包 pip install you-get
root = tk.Tk()
root.title('小软件')
root.geometry("400x50+250+250")
def download():
link = f'you-get -o video {key_word.get()}'
subprocess.run(link,shell=True)
def clear():
e.delete(0, 'end')
txt = tk.Label(text='请输入下载网址:', font=100)
txt.grid(row=0, column=0)
key_word = tk.StringVar()
e = tk.Entry(root, textvariable=key_word)
e.grid(row=0, column=2)
bt = tk.Button(text='下载', command=download)
bt.grid(row=0, column=3)
bt = tk.Button(text='清空', command=clear)
bt.grid(row=0, column=4)
root.mainloop()
软件打包了 需要可拿链接: https://pan.baidu.com/s/1WUKIVnGf-MWLQe5LltSErA?pwd=pmix 提取码: pmix
在命令行 敲命令 you-get 链接 也挺方便的 没有反应是咋回事 感谢分享 真假这是这个软件的全部代码嘛
这个区不让发软件成品 谢谢分享 下载收藏,等试用一下,感谢分享! MyModHeaven 发表于 2022-8-16 12:50
这个区不让发软件成品
成品打包了 在盘里 LingRuidong 发表于 2022-8-16 11:46
没有反应是咋回事
现需要 导包哦pip install you-get
页:
[1]
2