File: run_standalone.py

package info (click to toggle)
python-gevent 1.0.1-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 9,948 kB
  • ctags: 12,954
  • sloc: python: 39,061; ansic: 26,289; sh: 13,582; makefile: 833; awk: 18
file content (5 lines) | stat: -rwxr-xr-x 168 bytes parent folder | download
1
2
3
4
5
#!/usr/bin/python
from gevent.wsgi import WSGIServer
from application import application
print 'Serving on 8000...'
WSGIServer(('', 8000), application).serve_forever()