This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
ZODB support in flask | |
Usage: `DB = FlaskZODB(APP)` | |
In your views use `DB.root` to get the database root dictionary. | |
""" | |
from flask import _app_ctx_stack as stack | |
import transaction | |
import zodburi |