├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── LICENSE ├── README.md ├── helper ├── __init__.py ├── datetime_test.py ├── deadline.py └── match.py ├── kicktippbb.py ├── predictors ├── __init__.py ├── base.py ├── calculationpredictor.py ├── predictors_test.py └── simplepredictor.py ├── requirements.txt └── test └── url_test.py /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwalle/kicktipp-betbot/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwalle/kicktipp-betbot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwalle/kicktipp-betbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwalle/kicktipp-betbot/HEAD/README.md -------------------------------------------------------------------------------- /helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helper/datetime_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwalle/kicktipp-betbot/HEAD/helper/datetime_test.py -------------------------------------------------------------------------------- /helper/deadline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwalle/kicktipp-betbot/HEAD/helper/deadline.py -------------------------------------------------------------------------------- /helper/match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwalle/kicktipp-betbot/HEAD/helper/match.py -------------------------------------------------------------------------------- /kicktippbb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwalle/kicktipp-betbot/HEAD/kicktippbb.py -------------------------------------------------------------------------------- /predictors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /predictors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwalle/kicktipp-betbot/HEAD/predictors/base.py -------------------------------------------------------------------------------- /predictors/calculationpredictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwalle/kicktipp-betbot/HEAD/predictors/calculationpredictor.py -------------------------------------------------------------------------------- /predictors/predictors_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwalle/kicktipp-betbot/HEAD/predictors/predictors_test.py -------------------------------------------------------------------------------- /predictors/simplepredictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwalle/kicktipp-betbot/HEAD/predictors/simplepredictor.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwalle/kicktipp-betbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/url_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schwalle/kicktipp-betbot/HEAD/test/url_test.py --------------------------------------------------------------------------------