Re: [Tutor] python import problem

2006-08-10 Thread Alan Gauld
>> The other way would be to add each folder to >> your PYTHONPATH >It works for me now: >import sys >import os.path >sys.path.append(os.path.join(sys.path[0] ,"translate")) That isn't using PYTHONPATH its updaing sys.path which is slightly different.. This way you need to do that for every pro

Re: [Tutor] python import problem

2006-08-09 Thread kakada
បានសរសេរ Alan Gauld: Hi Alan, >> the folders modules and translate are in the same level, so if I want to >> import factory.py into myfile.py, how can I do? > > You need to make your folders into packages. > Its fairly simple, you basically create an init.py file > But its worth reading about packa

Re: [Tutor] python import problem

2006-08-09 Thread wesley chun
> > if I want to import factory.py into myfile.py, how can I do? > > You need to make your folders into packages. > Its fairly simple, you basically create an init.py file > But its worth reading about packages in the docs > Come back here ifv you have any questions after that. > > The other way wo

Re: [Tutor] python import problem

2006-08-09 Thread Alan Gauld
> the folders modules and translate are in the same level, so if I > want to > import factory.py into myfile.py, how can I do? You need to make your folders into packages. Its fairly simple, you basically create an init.py file But its worth reading about packages in the docs Come back here ifv y