Skip to content

Installation

Requirements

  • Python 3.12 or higher
  • pip or uv package manager (uv recommended for faster installs)

Install from PyPI

uv pip install strapi-kit
pip install strapi-kit

Why uv? It's 10-100x faster than pip while being a drop-in replacement.

Install with Development Dependencies

uv pip install strapi-kit[dev]
pip install strapi-kit[dev]

This includes: - pytest and testing tools - mypy for type checking - ruff for linting - code coverage tools

Install from Source

git clone https://github.com/mehdizare/strapi-kit.git
cd strapi-kit
uv pip install -e ".[dev]"
git clone https://github.com/mehdizare/strapi-kit.git
cd strapi-kit
pip install -e ".[dev]"

Verify Installation

import strapi_kit
print(strapi_kit.__version__)

Next Steps