I've searched around for an answer specific to my use case, but can't find one, so apologies if this specific case has been answered before.
I run a number of isolated scripts which perform different functions, like assessing specific data from APIs and sending email alerts. Whilst the scripts themselves use appropriately named modules for shared functionality - e.g. sending emails - they don't themselves have functionality which will need to be shared.
As a result I have a directory/script structure that feels too generic:
{script1 purpose}
- go.py
{script2 purpose}
- go.py
{script3 purpose}
- go.py
e.g.
Spend Monitor
- go.py
Where `Spend Monitor' is a relevant directory name, with the script starting the execution called go.py in each directory.
This has not caused any problems so far, but it feels like bad practice. However, I can't find reference to this specific case - should the go.py files be renamed? To what?