Metadata-Version: 2.4
Name: aturio
Version: 0.1.2
Summary: Aturio.ai is the Southeast Asia-wide unified regulation API. Pasal.id is the Indonesia-specific API, and laws.sg is its Singapore surface.
Project-URL: Homepage, https://aturio.ai
Project-URL: Repository, https://github.com/Aturio
Project-URL: Documentation, https://pasal.id/api
Author: Ilham Firdausi Putra
License-Expression: Apache-2.0
Keywords: api,indonesia,law,legal,regulations,rest,sdk,singapore,southeast-asia
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# Aturio

**Aturio.ai - The Southeast Asia-Wide Unified Regulation API**

Aturio.ai is the Southeast Asia-wide unified regulation API. It connects country-specific regulation surfaces across the region, including [pasal.id](https://pasal.id) for Indonesia and [laws.sg](https://laws.sg) for Singapore.

## Current Release

This Python SDK currently includes the Indonesia-specific [Pasal.id API](https://pasal.id/api). Aturio.ai is the broader Southeast Asia-wide API layer, with [laws.sg](https://laws.sg) as the Singapore surface in the same network.

## Installation

```bash
pip install aturio
```

## Usage

```python
from aturio import create_indonesia_client, get_law, list_laws, search

client = create_indonesia_client()

results = search("upah minimum", limit=3)
laws = list_laws(type="UU", limit=5)
law = get_law("/akn/id/act/uu/2003/13")

print(results["total"])
print(law["work"]["title"])
print(laws["laws"][0]["frbr_uri"])
```

## Included Methods

- `search(query, ...)` -> search Indonesian legal materials
- `list_laws(...)` -> list laws with filters and pagination
- `get_law(frbr_uri)` -> fetch a law and its article content
- `create_indonesia_client(...)` -> create a reusable client instance

## Platform Coverage

- [pasal.id](https://pasal.id) - Indonesia-specific API (live, included in this package)
- [laws.sg](https://laws.sg) - Singapore surface in the Aturio.ai network (coming soon)

## Links

- Website: [aturio.ai](https://aturio.ai)
- Indonesia: [pasal.id](https://pasal.id)
- Singapore: [laws.sg](https://laws.sg)
- GitHub: [github.com/Aturio](https://github.com/Aturio)
- API docs: [pasal.id/api](https://pasal.id/api)
