I have a folder:
tastyfood
I have four classes:
chocolate.py
sweets.py
crisps.py
tuna.py
Say I wanted to put the four classes in the folder tastyfood
So I can make importations like:
import tastyfood
and all the classes are imported rather than each class being imported.
I understand you can use __init__.py
and have been reading posts like this But I am unable to find a way to do what I would like.
Any one have suggestions?