# Import the required module import pandas as pd # Create a variable with the url to the website contain the html table url = "http://floodobservatory.colorado.edu/Archives/MasterListrev.htm" # Read the html table into pandas data = pd.read_html(url, header=0) # View the data data # Select the first (and in this case only) dataframe object data[0]