Metadata-Version: 2.1
Name: cozo_embedded
Version: 0.2.1
Classifier: Topic :: Database
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Summary: Cozo database for python
Home-Page: https://github.com/cozodb/cozo
Author: Ziyang Hu
License: MPL-2.0
Requires-Python: >=3.7
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Source Code, https://github.com/cozodb/cozo

# cozo-lib-python

[![pypi](https://img.shields.io/pypi/v/cozo_embedded)](https://pypi.org/project/cozo_embedded/)

Native bindings for embedding [CozoDB](https://github.com/cozodb/cozo) in Python, providing the
`cozo_embedded` package.

You are not supposed to be using this package directly in your code. Use [PyCozo](https://github.com/cozodb/pycozo),
which depends on this package.

To build this package, you need to install the Rust toolchain
as well as the [maturin](https://github.com/PyO3/maturin) python package.
Then run

```bash
maturin build -F compact -F storage-rocksdb --release
```

Refer maturin's docs for more information about how to [develop](https://www.maturin.rs/develop.html)
and [build](https://www.maturin.rs/distribution.html) this package.
