-
Notifications
You must be signed in to change notification settings - Fork 0
/
descargador.py
46 lines (31 loc) · 1.17 KB
/
descargador.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from pytube import YouTube
import os
from tkinter import *
from tkinter import messagebox as MessageBox
print(os.getcwd())
def accion():
enlace=videos.get()
video = YouTube(enlace)
descarga = video.streams.get_highest_resolution()
descarga.download()
def popup():
MessageBox.showinfo("Sobre mí","Enlace a mi perfil de LinkedIn:\nhttps://www.linkedin.com/in/jairon-ayovi-bone-62b05a60/")
root = Tk()
root.config(bd=15)
root.title("Descargar vídeos")
imagen = PhotoImage(file="youtube.png")
foto = Label(root, image=imagen, bd=0)
foto.grid(row=0, column=0)
menubar = Menu(root)
root.config(menu=menubar)
helpmenu = Menu(menubar, tearoff=0)
menubar.add_cascade(label="Para más información", menu=helpmenu)
helpmenu.add_command(label="Información del autor",command=popup)
menubar.add_command(label="Salir", command=root.destroy)
instrucciones = Label(root, text="Programa creado en Python para descargar vídeos de Youtube\n")
instrucciones.grid(row=0, column=1)
videos = Entry(root)
videos.grid(row=1, column=1)
boton = Button(root, text="Descargar ", command=accion)
boton.grid(row=2, column=1)
root.mainloop()