A framework for building backends in the cloud


License
MIT
Install
pip install clear-skies==1.12.0

Documentation

clearskies

clearskies is a very opinionated Python framework intended for developing microservices in the cloud via declarative programming principles. It is mainly intended for backend services and so is designed for RESTful API endpoints, queue listeners, scheduled tasks, and the like.

Installation

uv add clear-skies

or

pip install clear-skies

or

pipenv install clear-skies

or

poetry add clear-skies

Development

To set up your development environment with pre-commit hooks:

# Install uv if not already installed
pip install uv

# Create a virtual environment and install all dependencies (including dev)
uv sync

# Install pre-commit hooks
uv run pre-commit install

# Optionally, run pre-commit on all files
uv run pre-commit run --all-files