docs: update Beanie examples to use PyMongo async client#1572
Open
sridhar-3009 wants to merge 1 commit into
Open
docs: update Beanie examples to use PyMongo async client#1572sridhar-3009 wants to merge 1 commit into
sridhar-3009 wants to merge 1 commit into
Conversation
biswajitbala-appycodes
approved these changes
Jun 12, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The Beanie database documentation still showed
motor.motor_asyncio.AsyncIOMotorClient, but recent FastAPI Users / Beanie installations use PyMongo's native async client. This made the Beanie setup guide and examples look outdated.Fixes #1559.
Solution
pymongo.AsyncMongoClientin the Beanie documentation snippets.Verification
ruff format --check docs/src/db_beanie.py docs/src/db_beanie_oauth.py docs/src/db_beanie_access_tokens.py examples/beanie/app/db.py examples/beanie-oauth/app/db.pyruff check docs/src/db_beanie.py docs/src/db_beanie_oauth.py docs/src/db_beanie_access_tokens.py examples/beanie/app/db.py examples/beanie-oauth/app/db.pypython -m compileall docs/src examples/beanie/app examples/beanie-oauth/appI also ran
uv run --with mkdocs --with mkdocs-material --with mkdocs-mermaid2-plugin --with markdown-include --with pymdown-extensions --with pygments --with mike mkdocs build --strict. The docs rendered, but strict mode failed on existing warnings unrelated to this change: deprecated Material emoji config, missing old migration links, and missing anchors.