I'm using BeautifulSoup to scrape the table Antwerp Weather History for 1 April 2017 in this webpage. But I don't only need this date, I need all days in April 2017, which are in a drop-down list:

In the inspector, it's a select tag with options like these:
I could get the values of them with the next code:
prefix = 'https://www.timeanddate.com'
weather_request = requests.get(prefix + '/weather/belgium/antwerp/historic?month=4&year=2017',
'html.parser')
weather = BeautifulSoup(weather_request.content)
for option in weather.select('select > option'):
append_to_mylist(option.get('value'), option.text)
Would you help me, how to scrape the tables beyond these values, as the URL doesn't change while changing the option from the drop-down list?
I've found some other similar questions but weren't about BeautifulSoup
