annotate myrss2/myrss_test_server.py @ 136:93ad5ecd149d

myw2: Update radar url
author paulo
date Sat, 22 Oct 2022 18:50:25 +0000
parents
children
rev   line source
paulo@110 1 import wsgiref.simple_server
paulo@110 2 import socketserver
paulo@110 3
paulo@110 4 import myrss_app
paulo@110 5
paulo@110 6
paulo@110 7 if __name__ == "__main__":
paulo@110 8 with wsgiref.simple_server.make_server('', 8000, myrss_app.MyRssApp()) as httpd:
paulo@110 9 httpd.serve_forever()