tor-browser

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

slow.py (148B)


      1 import time
      2 
      3 def main(request, response):
      4    delay = float(request.GET.first(b"delay", 2000)) / 1000
      5    time.sleep(delay)
      6    return 200, [], b''