├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── config.ini ├── config.py ├── requirements.txt └── scrapegoals.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-menezes/footballNotifier/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-menezes/footballNotifier/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-menezes/footballNotifier/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-menezes/footballNotifier/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-menezes/footballNotifier/HEAD/app.py -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-menezes/footballNotifier/HEAD/config.ini -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-menezes/footballNotifier/HEAD/config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-menezes/footballNotifier/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrapegoals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlos-menezes/footballNotifier/HEAD/scrapegoals.py --------------------------------------------------------------------------------