Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
uWSGI / tests / pump.py
Size: Mime:
def app(req):
  print(req)
  ret = {"status": 200,
          "headers": {"content_type": "text/html", "foo":['bar0','bar1','bar2']},
          "body": "<h1>Hello!</h1>"}
  print(ret)
  return ret