stone0505 发表于 2022-8-16 10:05

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

Xiaoqi9448 发表于 2022-8-16 12:12

在命令行 敲命令 you-get 链接 也挺方便的

LingRuidong 发表于 2022-8-16 11:46

没有反应是咋回事

保温板 发表于 2022-8-16 12:26

感谢分享

nxbgye 发表于 2022-8-16 12:50

真假这是这个软件的全部代码嘛

MyModHeaven 发表于 2022-8-16 12:50

这个区不让发软件成品

山田凉粉 发表于 2022-8-16 13:55

谢谢分享

apei999 发表于 2022-8-16 14:14

下载收藏,等试用一下,感谢分享!

stone0505 发表于 2022-8-16 14:51

MyModHeaven 发表于 2022-8-16 12:50
这个区不让发软件成品

成品打包了 在盘里

stone0505 发表于 2022-8-16 14:51

LingRuidong 发表于 2022-8-16 11:46
没有反应是咋回事

现需要 导包哦pip install you-get
页: [1] 2
查看完整版本: Python写的视频下载小工具