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
async-in-sync
The flask async documentation is missing the "portal" call for the async from sync call.
async def create_a_user(session: AsyncSession) -> None: user = User(name="I'm Experimental") session.add(user) await session.commit() @app.route("/test", methods=["POST"]) def test_route() -> tuple[dict[str, str], int]: session = extension.get_async_session() _ = extension.portal_provider.portal.call(create_user, session) return {"status": "success"}, 200
The text was updated successfully, but these errors were encountered:
docs(flask): async-in-sync example should use the portal
3ae2361
Fixes #361
docs(flask): async-in-sync example should use the portal (#418)
dee0452
Update the Flask example that uses the portal class. Fixes #361
cofin
Successfully merging a pull request may close this issue.
The flask async documentation is missing the "portal" call for the async from sync call.
The text was updated successfully, but these errors were encountered: