mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2026-02-04 11:22:15 +08:00
Breaking changes
----------------
* Drop Python 3.8 support
Improvements
------------
* Bump dependencies:
* `python-multipart ==0.0.17`
* `pwdlib[argon2,bcrypt] ==0.2.1`
* `pyjwt[crypto] ==2.9.0`
24 lines
574 B
Python
24 lines
574 B
Python
"""Ready-to-use and customizable users management for FastAPI."""
|
|
|
|
__version__ = "14.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",
|
|
]
|