How to organize a Python Project?
A Package is basically a folder with __init__.py file under it and usually some Modules, where Module is a *.py file. It has to do with import mainly. If you add __init__.py to Indicators you can use: from Indicators.Stochastics import * or from Indicators import Stochastics By the way, I would recommend to keep module/package … Read more