flask restful Working outside of request context code example
Example: working outside of application context
# when app is initialized using app_factory
@classmethod
def setUpClass(self):
self.app = create_app("testing")
self.client = self.app.test_client()