Revision eaf80a57fa0feab78713bf35904b402b86266c84 authored by Navid Zolghadr on 20 March 2018, 17:08:44 UTC, committed by Navid Zolghadr on 20 March 2018, 17:08:44 UTC
1 parent 6e1b5f4
Raw File
text-plain-charset.py
def main(request, response):
  response.headers.set("Content-Type", "text/plain;charset=" + request.GET.first("label"))
  response.content = "hello encoding"
back to top