Mercurial > hg > index.fcgi > www > www-1
annotate myrss2/myrss_test_server.py @ 132:99e4022eae52
pics3: add Dockerfile and requirements.pip
author | paulo |
---|---|
date | Thu, 20 Jan 2022 01:28:46 -0800 |
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() |