mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-10-27 10:54:24 +08:00
Announcement ------------- FastAPI Users is now in maintenance mode.** While we'll continue to provide security updates and dependency maintenance, no new features will be added. We encourage you to explore the project and use it as-is, knowing it will remain stable and secure. Breaking changes ---------------- * Drop Python 3.9 support. * Drop Pydantic v1 support. If you still need them, you can install [v14.0.2](https://github.com/fastapi-users/fastapi-users/releases/tag/v14.0.2), which was updated at the same time as this release.
24 lines
574 B
Python
24 lines
574 B
Python
"""Ready-to-use and customizable users management for FastAPI."""
|
|
|
|
__version__ = "15.0.0"
|
|
|
|
from fastapi_users import models, schemas # noqa: F401
|
|
from fastapi_users.exceptions import InvalidID, InvalidPasswordException
|
|
from fastapi_users.fastapi_users import FastAPIUsers # noqa: F401
|
|
from fastapi_users.manager import ( # noqa: F401
|
|
BaseUserManager,
|
|
IntegerIDMixin,
|
|
UUIDIDMixin,
|
|
)
|
|
|
|
__all__ = [
|
|
"models",
|
|
"schemas",
|
|
"FastAPIUsers",
|
|
"BaseUserManager",
|
|
"InvalidPasswordException",
|
|
"InvalidID",
|
|
"UUIDIDMixin",
|
|
"IntegerIDMixin",
|
|
]
|