tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

slow-no-store.py (165B)


      1 import time
      2 
      3 def main(request, response):
      4    # Sleep for 1sec
      5    time.sleep(1)
      6    response.headers.set(b"Cache-Control", b"no-cache, no-store, must-revalidate");