Project status: UserHarbor SQLAlchemy is currently in an early stage of development. The API may change frequently. The library is not ready for production use yet.
userharbor-sqlalchemy provides a SQLAlchemy-based UserStore implementation for
userharbor.
It stores:
- users
- email verification tokens
- sessions
- password reset tokens
- password hashes
- roles
- permissions
- user-to-role assignments
- role-to-permission assignments
Each user has at most one active email verification token and one active password reset token. Storing a new token of either kind removes that user's previous token. Users can have multiple active sessions.
The package only handles persistence. It does not send emails, expose HTTP endpoints, or implement application-specific authentication flows.
Usernames preserve their original casing while lookup and uniqueness use a
Unicode case-folded key. The default model stores that key in the unique,
indexed username_key column.
Installation
pip install userharbor-sqlalchemy
This package depends on userharbor and SQLAlchemy 2.x.
Example usage
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
from userharbor import UserHarbor
from userharbor_sqlalchemy import SQLAlchemyUserStore
class EmailSender:
def send_verification(
self,
username: str,
email: str,
verification_token: str,
) -> None:
print(f"Send verification token to {email}: {verification_token}")
def send_password_reset(
self,
username: str,
email: str,
reset_token: str,
) -> None:
print(f"Send password reset token to {email}: {reset_token}")
def send_email_verified(self, username: str, email: str) -> None:
print(f"Email verified for {email}")
def send_password_changed(self, username: str, email: str) -> None:
print(f"Password changed for {email}")
def send_account_deleted(self, username: str, email: str) -> None:
print(f"Account deleted for {email}")
engine = create_engine("sqlite:///users.db")
SessionLocal = sessionmaker(bind=engine)
store = SQLAlchemyUserStore(SessionLocal)
store.metadata.create_all(engine)
email_sender = EmailSender()
harbor = UserHarbor(
secret_key="your-secret-key",
store=store,
email_sender=email_sender,
)
harbor.register(
username="jane",
email="jane@example.com",
password="StrongPassword123!",
)
harbor.verify_email("verification-token-from-email")
session_token = harbor.login(
username="jane",
password="StrongPassword123!",
)
current_user = harbor.get_current_user(session_token)
print(current_user.username)
harbor.roles.create("admin")
harbor.permissions.create("users.delete")
harbor.roles.grant_permission("admin", "users.delete")
harbor.grant_role("jane", "admin")
if harbor.has_permission(session_token, "users.delete"):
print("User can delete users")
harbor.logout(session_token)
For real applications, replace EmailSender with an implementation that sends
verification and password reset messages through your email provider.
Transactions
SQLAlchemyUserStore.transaction() provides a transaction context used by
UserHarbor for multi-step operations such as email verification, password reset,
password change, account deletion, and role or permission assignment. Successful
blocks are committed; exceptions roll back all changes from the block.
Custom user models
A custom user model must provide username_key in addition to username,
email, password_hash, and verified:
username: Mapped[str] = mapped_column(String(255), primary_key=True)
username_key: Mapped[str] = mapped_column(String(255), unique=True, index=True)
SQLAlchemyUserStore.create_user() fills username_key with
username.casefold(). The unique constraint prevents accounts whose usernames
differ only by casing, while username keeps the spelling selected during
registration.
License
UserHarbor SQLAlchemy is released under the MIT License.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file userharbor_sqlalchemy-0.6.1.tar.gz.
File metadata
- Download URL: userharbor_sqlalchemy-0.6.1.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bba3c8a50262d9f5847e6b60f3b75548fc84e5bb4910e82b38dfb57e00a25d6
|
|
| MD5 |
0f7f90950d9aa5648da140f269e66a77
|
|
| BLAKE2b-256 |
3fc90ff93aa571a979ca46a5f976f1189c0ba315348afb677256017366aab277
|
File details
Details for the file userharbor_sqlalchemy-0.6.1-py3-none-any.whl.
File metadata
- Download URL: userharbor_sqlalchemy-0.6.1-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64dc70479f1836123866a0a29df5852f68ddac0c797337cbfbdbf9b13d8839f7
|
|
| MD5 |
274552406f411f673bf8bc9a4a2f890d
|
|
| BLAKE2b-256 |
e42cf8b554ebb59490f32e1195ef19f050baf6c0b8a1405bfabb906f6b05a378
|