Member-only story
NFL Week 2 Highest Expected Value Anytime Touchdown Scorers between FanDuel and DraftKings
Week 2 promises to be very exciting in the National Football league, why not make some great bets aswell?
Introduction
Todays tutorial will be building off last weeks, which can be found here-
I have refined the process to make it slightly easier to scrape. Again do not take any bets before doing your research, this is meant to be purely for learning!
Code Walkthrough
The main difference here is that we no longer have to click into every individual game to get these odds and can instead scrape them from a single page on both websites.
This will allow you to run the scraper much easier, even set up timed execution to run every 30 minutes and output the latest best EV bets.
Import the libraries and setup the driver function for Fanduel and Draftkings
from supabase import create_client
import json
import pandas as pd
from datetime import…