I have a quick question with regards to making a module out of a python script.
Let's say I want to call my module: testingA
Currently my directory structure is like so:
- app
- config.py
- run.py
Question
- Can I still make a module called testingA with that directory structure, or would I have to rename the "app" directory to "testingA"
- Is it pythonic to have the main application folder match the module name?
Any input would be appreciated.