This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Prototype of liveweb proxy. | |
""" | |
def get_recent_crawl_location(url): | |
"""Looks at memcache to find the location of the recent crawl of the given URL. | |
""" | |
return memcache_client.get(md5sum(url)) | |
def fetch(url): | |
"""Fetches a url from liveweb. |