I have a directory called project set up like this:
Project
--directory:src--
--directory:testscripts--
--directory:config_files--
RunPCS.py
and within src, it is set up as:
src
parse_files.py
parse_json.py
process_xml.py
__init__.py
in RunPCS.py I have from src.parse_files import parse_files and
from src.parse_json import parse_json
in parse_json.py I have from process_xml import process_xml (since they are in the same directory)
but i get the error no module named process_xml. does anyone know why this error shows up?