GUI Url Shortener Using Python.
here is the Suorce code for Url shortener. It will short Url and display that.
from tkinter import *
from tkinter import ttk
import pyshorteners # pip install pyshortneres
import webbrowser
# main window
root=Tk()
root.title("URL Shortner")
root.ge...
pandeysudip.hashnode.dev1 min read