First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

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

click to hide/show revision 2
No.2 Revision

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