comparison myrss2/myrss_test_server.py @ 142:2ed8cf5f36bf

myrss2: fix handling of null feed title or links; miscellaneous URL updates
author paulo
date Mon, 18 Dec 2023 20:10:27 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:ab4517f69aef
1 import wsgiref.simple_server
2 import socketserver
3
4 import myrss_app
5
6
7 if __name__ == "__main__":
8 with wsgiref.simple_server.make_server('', 8000, myrss_app.MyRssApp()) as httpd:
9 httpd.serve_forever()