How do you guys go about storing your python modules locally? And how do you then go about referencing them in your python scripts?
Should I do this?
/home/python/modules
And then create a sub-directory for each module, like say the amazon s3 module:
/home/python/modules/amazon-s3/s3.py
Now I have to somehow tell python to look at these folders for modules, which I think is sys.path somehow?