Metadata-Version: 2.3
Name: pyanthias
Version: 0.2.1
Summary: interact with Anthias (Screenly) API
License: MIT
Author: Jack Grahl
Author-email: jack.grahl@gmail.com
Requires-Python: >=3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: requests (>=2.33.1,<3.0.0)
Description-Content-Type: text/markdown

# Interaction with Anthias (Screenly) API

Anthias is the community-supported version of Screenly, a tool for display terminals to run on Raspberry Pi.

If you have an Anthias instance running, there should be a public API which you can use to make 
changes in the assets displayed from your own code.

Currently the code does not do authentication. The API service can have authorization enabled but this is not supported.

## How to use it

```
import os
from anthias import enable

os.environ["ANTHIAS_ROOT_URL"] = "http://infotron-3000/api/v1.2"

enable("IMG_20260328_151930110.jpg")
```

