comparison myrss2/myrss_test_server.py @ 135:66f184a5234b

myrss2: FEEDS: update The Drive and Open Culture
author paulo
date Thu, 21 Apr 2022 06:57:38 +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()