This simple code works in Microsoft Edge but not in Chrome (both using Jupyter):
import pandas as pd
url_Chelsea = "https://en.wikipedia.org/wiki/List_of_Chelsea_F.C._seasons"
df_Chelsea=pd.read_html(url_Chelsea)[2]
df_Chelsea
getting the error message (end of message):
/opt/conda/lib/python3.6/site-packages/pandas/compat/__init__.py in raise_with_traceback(exc, traceback)
338 if traceback == Ellipsis:
339 _, _, traceback = sys.exc_info()
--> 340 raise exc.with_traceback(traceback)
341 else:
342 # this version of raise is a syntax error in Python 3
URLError: <urlopen error Tunnel connection failed: 403 Forbidden>