tor-browser

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

2-mib-file.py (157B)


      1 import random
      2 import string
      3 
      4 
      5 def main(request, response):
      6    r = "".join(random.choice(string.ascii_letters) for _ in range(2 * 1024 * 1024))
      7    return r