Metadata-Version: 2.4
Name: xwdata
Version: 0.9.0.6
Summary: Convenience wrapper for exonware-xwdata - provides 'import xwdata' alias
Project-URL: Homepage, https://exonware.com
Project-URL: Repository, https://github.com/exonware/xwdata
Project-URL: Documentation, https://github.com/exonware/xwdata#readme
Project-URL: Subtree, https://github.com/exonware/xwdata.git
Author-email: eXonware Backend Team <connect@exonware.com>
License: MIT
License-File: LICENSE
Keywords: analysis,data,exonware,manipulation,processing,transformation
Requires-Python: >=3.12
Requires-Dist: exonware-xwdata
Provides-Extra: dev
Requires-Dist: exonware-xwdata[dev]; extra == 'dev'
Provides-Extra: full
Requires-Dist: exonware-xwdata[full]; extra == 'full'
Provides-Extra: lazy
Requires-Dist: exonware-xwdata[lazy]; extra == 'lazy'
Description-Content-Type: text/markdown

# xwdata

**Format-agnostic data engine with XWNode.** Load from any format, manipulate with copy-on-write semantics, save to any format; xwsystem serialization (30+ formats); path navigation and graph operations via XWNode. Async-first. Per project docs.

**Company:** eXonware.com · **Author:** eXonware Backend Team · **Email:** connect@exonware.com  
**Version:** See [version.py](src/exonware/xwdata/version.py) or PyPI. · **Updated:** See [version.py](src/exonware/xwdata/version.py) (`__date__`)

[![Status](https://img.shields.io/badge/status-beta-blue.svg)](https://exonware.com)
[![Python](https://img.shields.io/badge/python-3.12%2B-blue.svg)](https://www.python.org)
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)

---

## Install

| Install | What you get | When to use |
|---------|--------------|-------------|
| `pip install exonware-xwdata` | **Lite** — core only | Minimal footprint. |
| `pip install exonware-xwdata[lazy]` | **Lazy** — formats on first use | Development. |
| `pip install exonware-xwdata[full]` | **Full** — common formats pre-installed | Production or CI. |

---

## Quick start

```python
from exonware.xwdata import load_data, save_data

# Load from any format, save to any format; one API
data = load_data("input.json")   # or .yaml, .xml, etc.
data["key"] = "value"
save_data(data, "output.yaml")
```

XWNode integration for path navigation and graph operations; async operations; reference resolution. See [docs/](docs/) and [docs/GUIDE_01_USAGE.md](docs/GUIDE_01_USAGE.md) when present.

---

## What you get

| Area | What's in it |
|------|----------------|
| **Formats** | One API for 30+ formats via xwsystem; partial access, typed loading. |
| **XWNode** | Path navigation and graph operations on loaded data. |
| **Semantics** | Copy-on-write; universal metadata; reference resolution. |
| **Async** | Async-first operations. |

---

## Docs and tests

- **Start:** [docs/INDEX.md](docs/INDEX.md) or [docs/](docs/).
- **Tests:** Run from project root per project layout.

---

## License and links

MIT — see [LICENSE](LICENSE). **Homepage:** https://exonware.com · **Repository:** https://github.com/exonware/xwdata  

Contributing → CONTRIBUTING.md · Security → SECURITY.md (when present).

*Built with ❤️ by eXonware.com - Revolutionizing Python Development Since 2025*
