├── .gitignore ├── LICENSE ├── README.md ├── id.csv ├── images ├── 1.png ├── 2.png ├── 3.png └── 4.png └── report.py /.gitignore: -------------------------------------------------------------------------------- 1 | id.csv 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W0n9/BUCT_COVID-19_Report/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W0n9/BUCT_COVID-19_Report/HEAD/README.md -------------------------------------------------------------------------------- /id.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W0n9/BUCT_COVID-19_Report/HEAD/id.csv -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W0n9/BUCT_COVID-19_Report/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W0n9/BUCT_COVID-19_Report/HEAD/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W0n9/BUCT_COVID-19_Report/HEAD/images/3.png -------------------------------------------------------------------------------- /images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W0n9/BUCT_COVID-19_Report/HEAD/images/4.png -------------------------------------------------------------------------------- /report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W0n9/BUCT_COVID-19_Report/HEAD/report.py --------------------------------------------------------------------------------