Metadata-Version: 2.4
Name: plato-tile-import
Version: 0.1.0
Summary: Tile import/export — Markdown, JSON, CSV, plaintext to canonical tiles
Author-email: SuperInstance Fleet <fleet@cocapn.ai>
License: MIT
Project-URL: Homepage, https://github.com/SuperInstance/plato-tile-import
Project-URL: Repository, https://github.com/SuperInstance/plato-tile-import
Keywords: plato,tiles,import,export,markdown,json
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# plato-tile-import

Tile import/export — Markdown, JSON, CSV, plaintext to canonical tiles.

Part of the [PLATO framework](https://github.com/SuperInstance) — deterministic AI knowledge management.

## Installation

```bash
pip install plato-tile-import
```

## Usage

```python
from plato_tile_import import TileImporter

imp = TileImporter()
tiles = imp.from_markdown("# Heading\n- Bullet point\nA paragraph of text.")
print(len(tiles))  # 3
```

Zero external dependencies. Python 3.8+.

[GitHub](https://github.com/SuperInstance/plato-tile-import)
