I have python code with the directory structure -
main.py
basics.py
component1
file1.py
file2.py
component2
file1.py
file2.py
I want the code in the directories component1 and component2 to use code from basics.py. What is the most pythonic way of doing this?
Thanks!