Statistics
| Branch: | Tag: | Revision:

root / run_poller.py @ 3e99e2d1

History | View | Annotate | Download (190 Bytes)

1
#!/usr/bin/python
2
from gevent.wsgi import WSGIServer
3
from poller.application import application
4
print 'Serving on 8000...'
5
WSGIServer(('netdev.grnet.gr', 9090), application).serve_forever()