jupyterlite / pyodide-kernel

Python kernel for JupyterLite powered by Pyodide
https://jupyterlite-pyodide-kernel.readthedocs.io/en/latest/_static/
BSD 3-Clause "New" or "Revised" License
46 stars 23 forks source link

Inconvenient to use code #117

Open 911432 opened 3 months ago

911432 commented 3 months ago

It's frustrating that to enable 'https' for 'read_csv' in Pandas you have to type 'pyodide_http'.

import pyodide_http
pyodide_http.patch_all()
df=pd.read_csv('https://raw.githubusercontent.com/YoungjinBD/dataset/main/facebook.csv', encoding='UTF-8')
df.info()

Is it difficult to improve?