├── .gitattributes ├── README.md ├── flask ├── app.py └── templates │ ├── image.html │ ├── index.html │ ├── jupyter_lab.html │ ├── jupyter_notebook.html │ ├── macro │ ├── nteract.html │ ├── simple_chart.html │ ├── simple_page.html │ └── table.html └── spider └── dxy.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangziliang04/PythonSARI/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PythonSARI 2 | Python疫情监控系统源码 3 | 4 | 配套视频课程地址:https://edu.csdn.net/course/play/23753 5 | 6 | -------------------------------------------------------------------------------- /flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangziliang04/PythonSARI/HEAD/flask/app.py -------------------------------------------------------------------------------- /flask/templates/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangziliang04/PythonSARI/HEAD/flask/templates/image.html -------------------------------------------------------------------------------- /flask/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangziliang04/PythonSARI/HEAD/flask/templates/index.html -------------------------------------------------------------------------------- /flask/templates/jupyter_lab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangziliang04/PythonSARI/HEAD/flask/templates/jupyter_lab.html -------------------------------------------------------------------------------- /flask/templates/jupyter_notebook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangziliang04/PythonSARI/HEAD/flask/templates/jupyter_notebook.html -------------------------------------------------------------------------------- /flask/templates/macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangziliang04/PythonSARI/HEAD/flask/templates/macro -------------------------------------------------------------------------------- /flask/templates/nteract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangziliang04/PythonSARI/HEAD/flask/templates/nteract.html -------------------------------------------------------------------------------- /flask/templates/simple_chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangziliang04/PythonSARI/HEAD/flask/templates/simple_chart.html -------------------------------------------------------------------------------- /flask/templates/simple_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangziliang04/PythonSARI/HEAD/flask/templates/simple_page.html -------------------------------------------------------------------------------- /flask/templates/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangziliang04/PythonSARI/HEAD/flask/templates/table.html -------------------------------------------------------------------------------- /spider/dxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangziliang04/PythonSARI/HEAD/spider/dxy.py --------------------------------------------------------------------------------