教程
英文 https://falcon.readthedocs.io/en/stable/user/tutorial.html
中文 https://www.osgeo.cn/falcon/user/tutorial.html
手册: https://www.w3ccoo.com/python_falcon/index.html
uvicorn: https://www.w3ccoo.com/python_falcon/python_falcon_uvicorn.html
$ pip install gunicorn
$ gunicorn app
#uvicorn
uvicorn.run("hello:app", host="0.0.0.0", port=8000, reload=True)
https://pypi.org/project/falcon-auth2/