-
-
Save ibeex/6621016 to your computer and use it in GitHub Desktop.
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
# Originally from http://sharebear.co.uk/blog/2009/09/17/very-simple-python-caching-proxy/ | |
# | |
# Usage: | |
# Stup localhost 80000 as proxy in web browser cache will cache the files | |
# on disc and not redownload it again. | |
# To clear the cache simply do a `rm *.cached`. To stop the server simply | |
# send SIGINT (Ctrl-C). It does not handle any headers or post data. | |
import BaseHTTPServer | |
import hashlib | |
import os | |
import urllib2 | |
class CacheHandler(BaseHTTPServer.BaseHTTPRequestHandler): | |
def do_GET(self): | |
m = hashlib.md5() | |
m.update(self.path) | |
cache_filename = m.hexdigest() + ".cached" | |
if os.path.exists(cache_filename): | |
print "Cache hit" | |
data = open(cache_filename).readlines() | |
else: | |
print "Cache miss" | |
data = urllib2.urlopen(self.path).readlines() | |
open(cache_filename, 'wb').writelines(data) | |
self.send_response(200) | |
self.end_headers() | |
self.wfile.writelines(data) | |
def run(): | |
server_address = ('', 8000) | |
httpd = BaseHTTPServer.HTTPServer(server_address, CacheHandler) | |
httpd.serve_forever() | |
if __name__ == '__main__': | |
run() |
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
*.cached |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment