Is it possible to run a function before the first request to a specific blueprint
?
@my_blueprint.before_first_request
def init_my_blueprint():
print 'yes'
Currently this will yield the following error:
AttributeError: 'Blueprint' object has no attribute 'before_first_request'
The Blueprint equivalent is called
@Blueprint.before_app_first_request
:The name reflects that it is called before any request, not just a request specific to this blueprint.
There is no hook for running code for just the first request to be handled by your blueprint. You can simulate that with a
@Blueprint.before_request
handler that tests if it has been run yet:This mimics what Flask does here; locking is needed as separate threads could race to the post to be first.