Installation

This document explains how to install the fastapi-async-storages package. Note that you can use any package manager you prefer, such as uv, pip, or others.

Prerequisites

Installation with uv

You can install the package using uv:

uv add fastapi-async-storages
# for s3 support:
uv add fastapi-async-storages[s3]

Warning

If you need image support (using ImageType or StorageImage), make sure Pillow library is installed.

uv add Pillow
# or uv pip install Pillow

Or, to install from source:

git clone https://github.com/stabldev/fastapi-async-storages.git
cd fastapi-async-storages
uv sync --all-extras

Verify installation

You can verify the package installation by importing it:

import async_storages
print(async_storages.__version__)