Can I copy sage library to my program folder and..
I build program.py that must use some math function ie. IntegerModRing,.. and i don't want to use "from sage.all import *" cause it will run sage first to import library
Can I copy sage library to my program folder and just use "from path/to/myprogram.py import *" or it have another way
ps. Reason i don't want to run sage is i want to create program.py to pure program that use/import sage-lib not program that must install/run sage first before use.
thank you very much