I am trying to scrape information from this webpage- https://www.dmr.nd.gov/oilgas/bakkenwells.asp
I want to collect all data tables from dropdown menu and use Beautiful Soup and requests module to pull the information.
import requests
from bs4 import BeautifulSoup
page = requests.get('https://www.dmr.nd.gov/oilgas/bakkenwells.asp')
soup = BeautifulSoup(page.text, 'html.parser')