We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following should probably not be allowed:
api_v1 = Api(app, '/api/v1') api_v2 = Api(app, '/api/v2')
even though it can be done now. The issue is that each Api registers itself with the app and error handlers.
The text was updated successfully, but these errors were encountered:
What happens if you try to register e.g. two Flask-SQLAlchemy extensions to the same app?
Sorry, something went wrong.
No branches or pull requests
The following should probably not be allowed:
even though it can be done now. The issue is that each Api registers itself with the app and error handlers.
The text was updated successfully, but these errors were encountered: