Metadata-Version: 2.1
Name: dosei
Version: 0.0.13
Summary: Dosei Python SDK
License: Apache-2.0
Author: Alvaro Molina
Author-email: am@dosei.ai
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: click (>=8.1.7,<9.0.0)
Requires-Dist: croniter (>=2.0.1,<3.0.0)
Requires-Dist: fastapi (>=0.104.1,<0.105.0)
Requires-Dist: pytest-trio (>=0.8.0,<0.9.0)
Description-Content-Type: text/markdown

# Dosei Python SDK

`dosei` is the official Dosei SDK for Python

[![pypi version](https://img.shields.io/pypi/v/dosei.svg)](https://pypi.org/pypi/dosei/)
[![Downloads](https://static.pepy.tech/badge/dosei/week)](https://pypi.org/pypi/dosei/)
[![License: MIT](https://img.shields.io/badge/license-Apache--2.0-yellow)](https://www.apache.org/licenses/LICENSE-2.0)
[![Twitter](https://img.shields.io/twitter/url/https/x.com/dosei.svg?style=social&label=Follow%20%40dosei)](https://x.com/dosei)
[![](https://dcbadge.vercel.app/api/server/BP5aUkhcAh?compact=true&style=flat)](https://discord.com/invite/BP5aUkhcAh)


## Getting Started

### Requirements
- [Python 3.11.2](https://www.python.org/downloads/)

### Install
You can install and configure `dosei` using this command:
```bash
pip install -U dosei
```

### Configure

```python
from fastapi import FastAPI
import dosei.integrations.fastapi as dosei_fastapi_integration

app = FastAPI()
dosei_fastapi_integration.init(app)
```

