Reputation: 35
i am using flask and uwsgi.. At some point i need to know when uwsgi is stopped or when my app (Flask) object is destroyed and when it happens, execute a function. Any ideas ?? Please
Upvotes: 0
Views: 1187
Reputation: 12933
you can use the python atexit module or the uwsgi.atexit hook
Upvotes: 2