예제 #1
0
파일: common.py 프로젝트: uguer30/Project
def getLocation(url): #get 302 response location    
    if 'tinyurl' in url:
        cookiePath = xbmc.translatePath(os.path.join(Paths.cacheDir, 'cookies.lwp'))
        request = CachedWebRequest(cookiePath, Paths.cacheDir)
        return request.getLocation(url)

    return url