Skip to content

Instantly share code, notes, and snippets.

View fcoterroba's full-sized avatar
🎯
focusing

fcoterroba

🎯
focusing
View GitHub Profile
@fcoterroba
fcoterroba / dailymotiondownloader.py
Created May 2, 2025 17:56
Download DailyMotion's video/s
# 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"
@fcoterroba
fcoterroba / Shortener_Python.py
Created November 9, 2020 06:04
That's a programm in Python which allows you shortener every words and links into +15 services like Adf.ly, Bit.ly, Cutt.ly and much more!
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)
@fcoterroba
fcoterroba / Exchange_Python.py
Last active September 9, 2020 23:51
Interfaz gráfica ligera que convierte monedas usando la API de ExchanGerate-API.com
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)
@fcoterroba
fcoterroba / QR_Python.py
Created August 9, 2020 02:22
Realiza y guarda en tu ordenador códigos QR ilimitados.
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)