This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Download video(s) from Dailymotion using yt-dlp | |
| # yt-dlp GitHub repo: https://github.com/yt-dlp/yt-dlp | |
| # | |
| # If the provided URL is part of a playlist, using `'yesplaylist': True` | |
| # will download all videos from that playlist automatically. | |
| import yt_dlp | |
| url = "https://www.dailymotion.com/video/videoId" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pyshorteners | |
| from tkinter import * | |
| from tkinter import ttk | |
| import webbrowser | |
| import pyperclip | |
| ventana = Tk() | |
| ventana.minsize(400, 310) | |
| ventana.title("Acortador de enlaces | fcoterroba.com") | |
| ventana.resizable(0,0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from tkinter import * | |
| from tkinter import ttk | |
| import requests | |
| #Definir ventana | |
| ventana = Tk() | |
| ventana.minsize(500, 500) | |
| ventana.title("Exchange realizado en Python | fcoterroba.com") | |
| ventana.resizable(0,0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| import qrcode | |
| import sys | |
| def generado_Codigo(): | |
| print("***********************************************************************************************") | |
| print("Hola mundo! Soy fcoterroba, puedes visitar mi web en www.fcoterroba.com") | |
| time.sleep(2) | |
| print("Este es un programa que te pide un enlace o texto y te genera un código QR en formato PNG.") | |
| time.sleep(3) |