Change high level folder structure from:
├── scripts
│ ├── ODHF
│ ├── ODEF
│ ├── ...
├── sources
│ ├── ODHF
│ ├── ODEF
│ ├── ...
To by project, including a pkg folder containing functionally grouped modules which can be used across projects:
├── pkg
│ ├── data_collectors
│ │ ├── DataCollector.py
│ ├── ...
├── ODHF
│ ├── 0-sources
│ ├── 1-PreProcessing
│ ├── ...
├── ODEF
│ ├── 0-sources
│ ├── 1-PreProcessing
│ ├── ...
A final folder structure should be discussed and agreed upon by the team before implementing.