comparison myrss2/myrss_test_server.py @ 133:41a6e2d99f68

pics3: add blob cache
author paulo
date Thu, 03 Feb 2022 06:39:44 -0800
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()