Ask Your Question

Revision history [back]

You can not upload on the sagecell server, but you can ask the sagecell server to download you file on the fly. For this you have to let your filename.sobj file accessible somewhere on the web.

For example, i have put a file at this url: https://sagedebianlive.metelu.net/tmp/filename.sobj it is a pickle of the list [1,2,4].

Now, on the cell, i can do:

L = load('https://sagedebianlive.metelu.net/tmp/filename.sobj')

and the object L on the Sage instance run by the sagecell server is the list [1,2,4] as you can check on this example

You can not upload on the sagecell server, but you can ask the sagecell server to download you your file on the fly. For this you have to let your filename.sobj file accessible somewhere on the web.

For example, i have put a file at this url: https://sagedebianlive.metelu.net/tmp/filename.sobj it is a pickle of the list [1,2,4].

Now, on the cell, i can do:

L = load('https://sagedebianlive.metelu.net/tmp/filename.sobj')

and the object L on the Sage instance run by the sagecell server is the list [1,2,4] as you can check on this live example