Metadata-Version: 2.3
Name: oxidict
Version: 0.1.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# OxiDict

Rust's HashMap brought over to Python with PyO3.

```bash
python3.12 -m venv .venv
source .venv/bin/activate
pip install -U pip maturin uv
maturin develop
```

In the Python shell:

```
>>> from oxidict import OxiDict
>>> o = OxiDict()
>>> o.insert("key1", "value1")
>>> print(o.get("key1"))
value1
>>> print(o)
{"key1": "value1"}
```
