tor-browser

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

win-1252-html.py (151B)


      1 def main(request, response):
      2    headers = [(b"Content-type", b"text/html;charset=windows-1252")]
      3    content = chr(0xff)
      4 
      5    return headers, content