How can i import self-written classes from another .py file ?
when i do:
import selfclass
ImportError: No module named selfclass
ls -l
script.py
selfclass.py
ok, i copy module into jar file, but one of my module write on C and when i import from file.so, i got error "No module named"
have any ideas?
nxshell use Jython, which do not support c extensions, you have to use pure-python modules.