mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-17 05:38:33 +08:00

* Implement MongoDB adapter using motor * Add mongo container to build pipeline * Tidy up dependencies * Update documentation for MongoDB * Export MongoDB adapter from db package * Pass black format * Update README
364 B
364 B
Installation
You can add FastAPI Users to your FastAPI project in a few easy steps. First of all, install the dependency:
With SQLAlchemy support
pip install fastapi-users[sqlalchemy]
With MongoDB support
pip install fastapi-users[mongodb]
That's it! Now, let's have a look at our User model.