/
rnekrasov
/
Python
Обзор
Документация
Войти
/
rnekrasov
/
Python
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
url_shortner.py
14 строк
360 B
usmansafdarktk
Added script for a URL shortner
21 окт 2023, 09:14
21 окт 2023, 09:14
1312fb7
Код
Авторство
О чём код?
# Importing the required libraries. import pyshorteners # Taking input from the user. url = input("Enter URL: ") # Creating an instance of the pyshorteners library. shortener = pyshorteners.Shortener() # Shortening the URL using TinyURL. shortened_URL = shortener.tinyurl.short(url) # Displaying the shortened URL. print(f"Shortened URL: {shortened_URL}")