-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can't open local files #7
Comments
I don't understand what's your meaning. save file ? |
Hi! I think this issue is related to this Pyodide FAQ entry. Please try this Python example: import micropip
await micropip.install('pandas')
import pandas as pd
from pyodide.http import open_url
csv_url = 'https://raw.githubusercontent.com/plotly/datasets/master/school_earnings.csv'
response = open_url(csv_url)
df = pd.read_csv(response)
print(df.head()) |
In my case, I would like to use the |
you can take a look at my implementation - https://github.com/Krisloveless/obsidian-code-emitter?tab=readme-ov-file#using-python-local-file, currently supports reading from local(doable to sync back, but I have not implement yet) |
hi, I think this plugin is awesome. now I met one problem is I don't know how to open / save the files in local directory? my computer is Mac system. Thanks.
The text was updated successfully, but these errors were encountered: