Statistics
| Branch: | Tag: | Revision:

root / run_poller.py @ d0777394

History | View | Annotate | Download (218 Bytes)

1
#!/usr/bin/python
2
from gevent.wsgi import WSGIServer
3
from poller.application import application
4
server="localhost"
5
port=8081
6
print 'Serving on port %s...' % port
7
WSGIServer((server,port ), application).serve_forever()