-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyoutube.py
44 lines (37 loc) · 1.31 KB
/
youtube.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
#! /usr/bin/python
# -*- coding: utf-8 -*-
# Barea's Code
# Módulos
import webbrowser
import time
# Constantes
# Clases
# ---------------------------------------------------------------------
# ---------------------------------------------------------------------
# Funciones
# ---------------------------------------------------------------------
def looping(loop, tiempo, porcentaje, porcentaje_2, url_link):
for i in range(loop):
webbrowser.Mozilla
webbrowser.Chrome
print('\r',porcentaje, '% <Abriendo URL>')
porcentaje = porcentaje + porcentaje_2
webbrowser.open(url_link, new=1, autoraise=True)
time.sleep(tiempo)
# ---------------------------------------------------------------------
def main():
url_link = input('\nIntroduzca una URL de youtube: ')
loop = input('\n¿Cuantas veces quieres que se repita? ')
loop = int(loop)
tiempo = input('\nIntervalo de tiempo entre URL y URL (en segundos): ')
tiempo = int(tiempo)
porcentaje = 100/loop
porcentaje_2 = porcentaje
print('\nProgreso:')
looping(loop, tiempo, porcentaje, porcentaje_2, url_link)
print('\nTerminado con éxito!! El script se cerrará en 5 segundos...')
time.sleep(5)
# Programa principal
# ---------
print('\n ¡¡Bienvenido al script para Youtube @ Barea13!!')
main()