I have a python project with a package, where the tree looks like this:
my_package
├── __init__.py
├── A.py
└── B.py
I would like to call several objects from A
and B
at once (from different files in the same command), is something "like" this posible?:
from my_package import ( # or some other syntax of course
A_object_1,
A_object_2,
B_object_1
)
Thanks