Files
addon/servers/decrypters/expurl.py
2025-01-16 00:40:16 +01:00

15 lines
239 B
Python
Executable File

# -*- coding: utf-8 -*-
from lib import unshortenit
def expand_url(url):
e = unshortenit.UnshortenIt()
estado = 200
while estado != 0:
long_url, estado = e.unshorten(url)
url = long_url
return long_url