How to read a webpage table using requests-html?
I am new to python and am trying to parse a table from the given website into a PANDAS DATAFRAME. I am using modules requests-html, requests, and beautifulSoup. Here is the website, I would like to gather the table from: https://www.aamc.org/data-reports/workforce/interactive-data/active-physicians-largest-specialties-2019 MWE import pandas as pd from urllib.request import Request, urlopen from bs4 import BeautifulSoup… Read More How to read a webpage table using requests-html?