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 requestsfrom bs4 import BeautifulSouppage = requests.get('https://www.dmr.nd.gov/oilgas/bakkenwells.asp')soup = BeautifulSoup(page.text, 'html.parser')