importing a package

Damjan gdamjan at gmail.com
Wed Jun 22 09:34:00 EDT 2005


> I developed a package with a structure like this
> src/
>     tesfile.py
>     dir1/
>         __init__.py
>         file1.py
>     dir2/
>         __init__.py
>         file2.py

Importing dir2/file2 from dir1/file1.py works here, because when yuo started
the testfile script the src/ directory was added to the sys.path list.

If you relocate dir1/ and dir2/ in a "package" directory here it will not
work.


-- 
damjan



More information about the Python-list mailing list