This is an example of a URL, I want to use to scrape. The URL changes based on the date:
https://betfair-data-supplier-prod.herokuapp.com/api/daily_racing_results?date=2020-01-01
I want to scrape data from the 1st of January to the 30th of June. How would I create a for loop to do this.
For example:
for day and month in URL:
request = requests.get(f'https://betfair-data-supplier-prod.herokuapp.com/api/daily_racing_results?date=2020-{month}-{day})