├── .gitignore ├── README.md ├── README_ch.md ├── bin ├── config.py ├── report.py ├── start.py ├── templates │ ├── base.html │ ├── index.html │ ├── report.html │ ├── report_en.html │ └── url.html └── util.py ├── conf └── config.ini ├── data └── .gitkeep ├── example.png ├── example_en.png ├── requirements.txt └── result ├── report └── .gitkeep └── urls └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffXue/web-log-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffXue/web-log-parser/HEAD/README.md -------------------------------------------------------------------------------- /README_ch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffXue/web-log-parser/HEAD/README_ch.md -------------------------------------------------------------------------------- /bin/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffXue/web-log-parser/HEAD/bin/config.py -------------------------------------------------------------------------------- /bin/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffXue/web-log-parser/HEAD/bin/report.py -------------------------------------------------------------------------------- /bin/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffXue/web-log-parser/HEAD/bin/start.py -------------------------------------------------------------------------------- /bin/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffXue/web-log-parser/HEAD/bin/templates/base.html -------------------------------------------------------------------------------- /bin/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffXue/web-log-parser/HEAD/bin/templates/index.html -------------------------------------------------------------------------------- /bin/templates/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffXue/web-log-parser/HEAD/bin/templates/report.html -------------------------------------------------------------------------------- /bin/templates/report_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffXue/web-log-parser/HEAD/bin/templates/report_en.html -------------------------------------------------------------------------------- /bin/templates/url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffXue/web-log-parser/HEAD/bin/templates/url.html -------------------------------------------------------------------------------- /bin/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffXue/web-log-parser/HEAD/bin/util.py -------------------------------------------------------------------------------- /conf/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffXue/web-log-parser/HEAD/conf/config.ini -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffXue/web-log-parser/HEAD/example.png -------------------------------------------------------------------------------- /example_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffXue/web-log-parser/HEAD/example_en.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Jinja2==2.10.3 2 | numpy==1.18.1 3 | requests==2.22.0 4 | configparser==4.0.2 -------------------------------------------------------------------------------- /result/report/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /result/urls/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------