Hello! I'm trying to import files from other directories, and the notes in the Debugging with sys.path/ImportError didn't really help me too much.
Locally, I'm able to access classes that are saved in files, that are saved inside different directories.
eg.
\ -- Directory1
\ -- \ -- File1.py
\ -- Directory2
\ -- \ -- File2.py
(in File2) from Directory1.File1 import Class.
Once I move the code to python anywhere, the compiler is unable to import 'Class'. from File1. Help?