make short of url link in python

 import pyshorteners


link = "https://www.youtube.com/channel/UCxHBj6mfMn7AChmbpvDroKg"

print(pyshorteners.Shortener().clckru.short(link))



-------------------------------------------------------

import pyshorteners

s = pyshorteners.Shortener()
print(s.tinyurl.short('http://www.g1.com.br'))

Comments

Popular Posts