Metadata-Version: 2.3
Name: narraml
Version: 0.0.1
Summary: Narrative Markup Language - Python SDK
License: Apache-2.0
Keywords: narraml,narrative,visual,timeline,json,schema,scenium
Author: Scenium
Author-email: hello@scenium.ai
Requires-Python: >=3.13
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: pydantic (>=2.7.0,<3.0.0)
Project-URL: Homepage, https://narraml.org
Project-URL: Repository, https://github.com/narraml/narraml
Description-Content-Type: text/markdown

# NarraML Python SDK

Narrative Markup Language - Python SDK

## Installation

```bash
pip install narraml
```

## Usage

```python
from narraml import NarraML

doc = NarraML.load("example.narraml.json")
print(doc.narrative.title)
```

