├── .gitignore ├── LICENSE ├── README.md ├── campionati └── readme.md ├── img ├── Screenshot_1.jpg └── Screenshot_2.jpg ├── main.py ├── partite └── readme.md ├── quantoPunto.py └── scrapper ├── Inactive ├── bet365.py └── bwin.py ├── betfair.py ├── eurobet.py ├── marathonbet.py ├── sisal.py ├── snai.py └── williamhill.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonemastella/SureBetFinder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonemastella/SureBetFinder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonemastella/SureBetFinder/HEAD/README.md -------------------------------------------------------------------------------- /campionati/readme.md: -------------------------------------------------------------------------------- 1 | qui troverai csv con le informazioni -------------------------------------------------------------------------------- /img/Screenshot_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonemastella/SureBetFinder/HEAD/img/Screenshot_1.jpg -------------------------------------------------------------------------------- /img/Screenshot_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonemastella/SureBetFinder/HEAD/img/Screenshot_2.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonemastella/SureBetFinder/HEAD/main.py -------------------------------------------------------------------------------- /partite/readme.md: -------------------------------------------------------------------------------- 1 | qui troverai csv con le informazioni -------------------------------------------------------------------------------- /quantoPunto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonemastella/SureBetFinder/HEAD/quantoPunto.py -------------------------------------------------------------------------------- /scrapper/Inactive/bet365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonemastella/SureBetFinder/HEAD/scrapper/Inactive/bet365.py -------------------------------------------------------------------------------- /scrapper/Inactive/bwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonemastella/SureBetFinder/HEAD/scrapper/Inactive/bwin.py -------------------------------------------------------------------------------- /scrapper/betfair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonemastella/SureBetFinder/HEAD/scrapper/betfair.py -------------------------------------------------------------------------------- /scrapper/eurobet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonemastella/SureBetFinder/HEAD/scrapper/eurobet.py -------------------------------------------------------------------------------- /scrapper/marathonbet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonemastella/SureBetFinder/HEAD/scrapper/marathonbet.py -------------------------------------------------------------------------------- /scrapper/sisal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonemastella/SureBetFinder/HEAD/scrapper/sisal.py -------------------------------------------------------------------------------- /scrapper/snai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonemastella/SureBetFinder/HEAD/scrapper/snai.py -------------------------------------------------------------------------------- /scrapper/williamhill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonemastella/SureBetFinder/HEAD/scrapper/williamhill.py --------------------------------------------------------------------------------