Scrape odds for upcoming sports matches and detect profitable bets
install scrapy:
pip install Scrapyinstall scrapy-splash
pip install scrapy-splashinstall docker and get the docker container for splash
docker pull scrapinghub/splashFor use in production aquarium is advised.
First start splash
docker run -p 8050:8050 scrapinghub/splashAdd address of splash to the settings of scrapy in settings.py of the spider:
SPLASH_URL = 'http://x.x.x.x:8050'Add api key for the telegram bot in ScrapeBettingBot.py
updater = Updater("x:xxxx")Start the telegram bot with
python ScrapeBettingBot.py