I\'m trying to extract US states from wiki URL, and for which I\'m using Python Pandas.
import pandas as pd import html5lib f_states = pd.read_html(\'https://si
Running Python 3.4 on a mac
New pyvenv
pip install pandas pip install lxml pip install html5lib pip install BeautifulSoup4
Then run your example and it should work:
import pandas as pd import html5lib f_states= pd.read_html('https://simple.wikipedia.org/wiki/List_of_U.S._states')