Re: How to organize Python files in a (relatively) big project

2005-10-19 Thread toki doki
Hello again, Actually, I found a (pretty ugly) workaround to my problem: In every __init__.py of the subdirectories I created, I add the following lines: import os.path,sys for directory,sub_dir,files in os.walk(os.path.normpath(os.path.join(os.path.dirname(__file__),..))):

How to organize Python files in a (relatively) big project

2005-10-18 Thread toki doki
Hello there, I have been programming python for a little while, now. But as I am beginning to do more complex stuff, I am running into small organization problems. It is possible that what I want to obtain is not possible, but I would appreciate the advice of more experienced python programmers.