How does one correctly import a module from a folder that your .py isn't in?
I'm using Python 3.8 and I'm trying to load the module csvread.py in testing.py.
The path to this module is Modules/csv/csvread.py
The command doesn't appear to be: from botmanager.Modules.csv import csvread
The stack trace I get is:
Traceback (most recent call last):
File "C:/Users/QT/PycharmProjects/botmanager/testing.py", line 1, in <module>
from botmanager.Modules.csv import csvread
ModuleNotFoundError: No module named 'botmanager'
Project tree: https://i.stack.imgur.com/L3tJq.png