Installation¶
Therismos requires Python 3.11 or higher.
Basic Installation¶
Or using uv:
Optional Extras¶
Install backend-specific extras as needed:
# MongoDB (synchronous PyMongo)
pip install therismos[mongodb]
# MongoDB (asynchronous Motor)
pip install therismos[mongodb-async]
# Polars DataFrames
pip install therismos[polars]
# pandas DataFrames
pip install therismos[pandas]
# SQLAlchemy / SQLModel
pip install therismos[sqlalchemy]
# Multiple extras at once
pip install therismos[polars,pandas,sqlalchemy]