Skip to content

Oauth Accounts

oauth_accounts

SQLAlchemy OAuth account adapter implementation.

Provides database operations for OAuth account management using SQLAlchemy/SQLModel.

Classes

SQLAlchemyOAuthAccountAdapter

SQLAlchemyOAuthAccountAdapter(session: Session)

Bases: OAuthAccountAdapter

SQLAlchemy implementation of OAuthAccountAdapter.

Source code in fastauth/adapters/sqlalchemy/oauth_accounts.py
def __init__(self, session: Session):
    self.session = session