tor-browser

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

img-utf8-html.py (146B)


      1 def main(request, response):
      2    headers = [(b"Content-type", b"text/html;charset=utf-8")]
      3    content = b"<img>foo"
      4 
      5    return headers, content