Metadata-Version: 2.4
Name: miniappi
Version: 0.1.8
Summary: Miniappi app launcher library
Author: Mikael Koli
Author-email: Mikael Koli <mikael.koli@miniappi.com>
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: httpx-ws>=0.8.0
Requires-Dist: pydantic>=2.11.7
Requires-Dist: pydantic-settings>=2.10.1
Requires-Dist: rich>=14.2.0
Requires-Python: >=3.13
Project-URL: Documentation, https://python-docs.miniappi.com/
Project-URL: Homepage, https://miniappi.com/
Project-URL: Repository, https://github.com/Miksus/miniappi-python.git
Description-Content-Type: text/markdown

# Miniappi

[![Python test](https://github.com/Miksus/miniappi-python/actions/workflows/build.yml/badge.svg)](https://github.com/Miksus/miniappi-python/actions/workflows/build.yml)

## What is it?

This library is a Python client library for
[Miniappi app server](https://miniappi.com/).
Read more from the [Python documentation](https://python-docs.miniappi.com).

## Installation

Install with Pip:

```bash
pip install miniappi
```

Install with uv:

```bash
uv add miniappi
```

## Getting Started

```python
from miniappi import App, content

app = App()

@app.on_open()
async def run_user_open():
    cont = content.v0.Title(
        text="Hello world!"
    )
    await cont.show()

app.run()
```

Then follow the link to Miniappi server.

Read more from the [Miniappi documentation](https://python-docs.miniappi.com).
