├── .github └── workflows │ └── fetch&push.yml ├── .gitignore ├── README.en.md ├── README.md ├── requirements.txt ├── risklevel.py └── run.py /.github/workflows/fetch&push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panghaibin/RiskLevelAPI/HEAD/.github/workflows/fetch&push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panghaibin/RiskLevelAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panghaibin/RiskLevelAPI/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panghaibin/RiskLevelAPI/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.27.1 2 | GitPython==3.1.27 -------------------------------------------------------------------------------- /risklevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panghaibin/RiskLevelAPI/HEAD/risklevel.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panghaibin/RiskLevelAPI/HEAD/run.py --------------------------------------------------------------------------------