Mercurial > hg > index.fcgi > www > www-1
annotate myrss2/myrss_test_server.py @ 110:1a5c0fc5627a
myrss2: fix gzip and leading whitespace handling; add test feed, test server; update FEEDS
author | paulo |
---|---|
date | Wed, 03 Jun 2020 01:20:20 -0700 |
parents | |
children |
rev | line source |
---|---|
paulo@110 | 1 import wsgiref.simple_server |
paulo@110 | 2 import socketserver |
paulo@110 | 3 |
paulo@110 | 4 import myrss_app |
paulo@110 | 5 |
paulo@110 | 6 |
paulo@110 | 7 if __name__ == "__main__": |
paulo@110 | 8 with wsgiref.simple_server.make_server('', 8000, myrss_app.MyRssApp()) as httpd: |
paulo@110 | 9 httpd.serve_forever() |