view myrss2/myrss_test_server.py @ 129:bd8a61f9162f

myrss2: add San Mateo Daily Journal to FEEDS
author paulo
date Tue, 11 Jan 2022 02:36:16 -0800
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()