Mercurial > hg > index.fcgi > www > www-1
annotate myrss/myrss_test_server.py @ 42:a1456ecd25b9
fix bug with threadpool; create WSGI app and test server; use logging
author | paulo |
---|---|
date | Mon, 04 Feb 2013 23:58:02 -0800 |
parents | |
children | df6a1a347584 |
rev | line source |
---|---|
paulo@42 | 1 import wsgiref.simple_server |
paulo@42 | 2 import SocketServer |
paulo@42 | 3 |
paulo@42 | 4 import myrss_parser |
paulo@42 | 5 |
paulo@42 | 6 |
paulo@42 | 7 class ThreadingWSGIServer(SocketServer.ThreadingMixIn, wsgiref.simple_server.WSGIServer): |
paulo@42 | 8 pass |
paulo@42 | 9 |
paulo@42 | 10 |
paulo@42 | 11 if __name__ == "__main__": |
paulo@42 | 12 httpd = ThreadingWSGIServer(('', 8000), wsgiref.simple_server.WSGIRequestHandler) |
paulo@42 | 13 httpd.set_app(myrss_parser.MyRssApp()) |
paulo@42 | 14 httpd.serve_forever() |