Is there such a thing as a static constructor in Python?
How do I implement a static constructor in Python?
Here is my code... The
You need to instantiate your App, then use that instead:
myApp = App() myApp.EmailQueue.DoSomething()