First time here? Check out the FAQ!

Ask Your Question
1

Programming with Sage: defining module

asked 13 years ago

Nicolas Essis-Breton gravatar image

updated 13 years ago

Shashank gravatar image

Let's say I want to write two modules 'addition.sage' and 'result.sage'.
I would like to import 'addition.sage' in 'result.sage'. How can I do this?
I've try the following, but it doesn't seem to work.

'addition.sage' file:
from sage.all import *
add(x,y)=x+y

'result.sage' file:
from addition import add
print add(1,2)

my sage session:
sage: load('myPath/result.sage')

This gives me the error 'ImportError: No module named addition'.
Although, my PYTHONPATH contains the directory where my two modules are located.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
3

answered 13 years ago

Shashank gravatar image

If result.sage is calling add function from addition.sage, you need to load that file in result.sage.

You can also load the file without giving the path, if you type the following two lines in the beginning of the notebook

import sys
sys.path.append('path-to-module')
Preview: (hide)
link

Comments

@Shashank Thanks Shashank.

Nicolas Essis-Breton gravatar imageNicolas Essis-Breton ( 13 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 13 years ago

Seen: 578 times

Last updated: Dec 21 '11