├── .env ├── .gitattributes ├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── README_CLI.md ├── cli.py ├── config.py ├── convenienza_calculator.py ├── data ├── .gitkeep └── output │ └── .gitkeep ├── data_processor.py ├── data_retriever.py ├── fantacalcio.cmd ├── fantacalcio.sh ├── fuzzy_matcher.py ├── main.py └── pyproject.toml /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piopy/fantacalcio-py/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piopy/fantacalcio-py/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piopy/fantacalcio-py/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piopy/fantacalcio-py/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piopy/fantacalcio-py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piopy/fantacalcio-py/HEAD/README.md -------------------------------------------------------------------------------- /README_CLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piopy/fantacalcio-py/HEAD/README_CLI.md -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piopy/fantacalcio-py/HEAD/cli.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piopy/fantacalcio-py/HEAD/config.py -------------------------------------------------------------------------------- /convenienza_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piopy/fantacalcio-py/HEAD/convenienza_calculator.py -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | # Keep this directory in git 2 | -------------------------------------------------------------------------------- /data/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piopy/fantacalcio-py/HEAD/data_processor.py -------------------------------------------------------------------------------- /data_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piopy/fantacalcio-py/HEAD/data_retriever.py -------------------------------------------------------------------------------- /fantacalcio.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | cd /d "%~dp0" 3 | poetry run python cli.py %* -------------------------------------------------------------------------------- /fantacalcio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piopy/fantacalcio-py/HEAD/fantacalcio.sh -------------------------------------------------------------------------------- /fuzzy_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piopy/fantacalcio-py/HEAD/fuzzy_matcher.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piopy/fantacalcio-py/HEAD/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piopy/fantacalcio-py/HEAD/pyproject.toml --------------------------------------------------------------------------------