500 internal server error when importing a python module in wsgi
问题 I've got a Python script that is executing functions asynchronously by using PEST wsgi library. However, when I try to import another module it simply results in a 500 error. The way I try to reference it is: from foo import * from foo import Foo where foo is a file .py in which I have the object that I want to reference to. Tried to monitor the calls through Chrome's Inspect Element Control but couldn't find a thing. Also tried to debug using Apache's error log, but nothing there. Any hints