This might sound like a stupid question, but how can I use subdirectories in my modules.
Currently, I have to put all the files in one directory and personally I think it looks unorganized. If there isn't a good way to do what I want then fuck it I guess.
I realize that I can add a __init__.py file in all of the subdirectories, but then they aren't all really part of the same module. Inheritance and other things act different.
Code:
tools/
__init__.py
base/
base.py
filehandlers/
somehandler.py
something.py
Currently, I have to put all the files in one directory and personally I think it looks unorganized. If there isn't a good way to do what I want then fuck it I guess.
I realize that I can add a __init__.py file in all of the subdirectories, but then they aren't all really part of the same module. Inheritance and other things act different.