I have a cocalc sage worksheet that reads data from a csv file. Is there any way to do this in the single cell server, that is, read data from an external file? I'm guessing not, but it would be handy.
csv.reader(open('http://myserver/xxx.csv'))
and I have verified that the url is correct, but I get "No such file or directory: 'http://...'".
It works fine on a cocalc server with the csv file in the project the worksheet is in, and using just the local file name.
I did find a slightly more cumbersome way to do this using the Pandas data analyis library--there is a read_csv function that will read from a URL.
-- David
Thanks for the suggestion, but it doesn't appear to work for me. My code iscsv.reader(open('http://myserver/xxx.csv'))