tor-browser

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

empty-div-utf8-html.py (164B)


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