According to the pandas documentation we can use an url as a parameter of the function read_csv() in pandas 0.25.1
It works on my terminal but I can't understand why the result is different on jupyter
Terminal it works:
Python 3.6.8
>>> import pandas as pd
>>> pd.__version__
'0.25.1'
>>> pd.read_csv("https://raw.githubusercontent.com/file.csv")
Jupyter:
In [9]: import pandas as pd
In [11]: pd.__version__
Out[11]: '0.25.1'
In[12]: from platform import python_version
print(python_version())
3.7.3
In [12]: pd.read_csv("https://raw.githubusercontent.com/file.csv")
...
URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1056)>