Metadata-Version: 2.4
Name: zoneramaapi
Version: 0.5.0
Summary: A Python client for the Zonerama API.
Requires-Python: >=3.14
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.28.1
Requires-Dist: zeep[async]>=4.3.2
Dynamic: license-file

# Zonerama API

Unofficial Python library for the Zonerama web library's SOAP API.

## Installation

```bash
pip install zoneramaapi
```

## Usage

```python
from zoneramaapi import ZoneramaClient

with ZoneramaClient() as client:
    client.login("username", "password")
    albums = client.get_albums_in_account(client.logged_in_as)
    for album in albums:
        print(album.name)
```

### ZIP album downloader

```python
import asyncio

from httpx import AsyncClient

from zoneramaapi import download_album

client = AsyncClient()
asyncio.run(download_album(client, 42))
```
