view 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
line source
1 import wsgiref.simple_server
2 import socketserver
4 import myrss_app
7 if __name__ == "__main__":
8 with wsgiref.simple_server.make_server('', 8000, myrss_app.MyRssApp()) as httpd:
9 httpd.serve_forever()