Files
addon/plugin.video.alfa/servers/decrypters/expurl.py
2019-03-08 23:49:25 +01:00

15 lines
253 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