make short of url link in python
import pyshorteners
link = "https://pythonjagg.blogspot.com/2025/10/python-fpdf-library.html"
short_url = pyshorteners.Shortener().tinyurl.short(link)
print(short_url)
import pyshorteners
link = "https://pythonjagg.blogspot.com/2025/10/python-fpdf-library.html"
short_url = pyshorteners.Shortener().tinyurl.short(link)
print(short_url)
import pyshorteners s = pyshorteners.Shortener() print(s.tinyurl.short('http://www.g1.com.br'))
Comments
Post a Comment