An App I've written in Python instantiates several classes. Other portions of the App live in other Python files and as a result, they must instantiate their own versions of the class before running.
Is there a way that I can instantiate the classes I want to use within the App and keep those classes "Alive" for use by other parts of the Application that live in separate files? Some of these Classes are objects that handle API GET/POST requests and don't have web sockets available for their endpoints.