Metadata-Version: 2.4
Name: refix-engine
Version: 0.0.1
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Rust
Classifier: Topic :: Office/Business :: Financial
Classifier: Typing :: Typed
License-File: LICENSE-MIT
License-File: LICENSE-APACHE
Summary: FIX message processing for Python, powered by Rust
Author-email: David Steiner <david@davidsteiner.dev>
License-Expression: MIT OR Apache-2.0
Requires-Python: >=3.12
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Repository, https://github.com/refixhq/refix

# refix-engine

FIX message processing for Python, powered by Rust.

This package provides the Python bindings for
[ReFIX](https://github.com/refixhq/refix), a FIX engine written in pure Rust
with first-party Python support. The import name is `refix`:

```python
import refix

message = refix.Tokenizer().tokenize(frame)
print(message.get(35))
```

> Development on ReFIX has just started. In its current state, the project
> isn't useful, but make sure to check back later to monitor progress.

See the [project repository](https://github.com/refixhq/refix) for
documentation, roadmap and licensing (MIT OR Apache-2.0).

