You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
resolv/__init__.py

27 lines
615 B
Python

import re
from resolvers import *
def resolve(url):
if re.match("https?:\/\/(www\.)?putlocker\.com", url) is not None:
return putlocker.resolve(url)
elif re.match("https?:\/\/(www\.)?sockshare\.com", url) is not None:
return sockshare.resolve(url)
elif re.match("https?:\/\/(www\.)?1channel\.ch\/external\.php", url) is not None:
return onechannel.resolve(url)
else:
return {}
def recurse(url):
previous_result = {}
while True:
result = resolve(url)
if result == {}:
return previous_result
elif 'url' not in result:
return result
url = result['url']
previous_result = result