Metadata-Version: 2.4
Name: faststruct-simple
Version: 0.0.1
Summary: Simple and experimental fast binary dict serializer (CPython C extension)
Author: Karen Ward
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# faststruct-simple

A **simple / experimental** high-performance binary serializer for Python dicts,
implemented as a **CPython C extension**.

⚠️ This project is **not related** to Python’s built-in `struct` module.  
⚠️ The binary format and API are **not stable yet**.

## Example

```python
import faststruct

data = {"a": b"123", "b": b"456"}
payload = faststruct.serialize(data)
obj = faststruct.deserialize(payload)
