Skip to main content

Zero-copy reader for the Nyxis (NXS) binary format

Project description

NXS — Python

Zero-copy .nxb reader for Python 3.8+. Pure-Python implementation with an optional C extension for hot-path columnar scans.

Requirements

Python 3.8+. No pip install, no dependencies. The C extension requires a C compiler and Python headers.

Read a file

from nxs import NxsReader

buf = open("data.nxb", "rb").read()   # or mmap.mmap() for true zero-copy
reader = NxsReader(buf)

print(reader.record_count)             # instant — read from tail-index, no parse pass
obj = reader.record(42)                # O(1) seek
print(obj.get_str("username"))
print(obj.get_f64("score"))
print(obj.get_bool("active"))

Columnar scan

scores = reader.scan_f64("score")      # list of all values for one field

total = reader.sum_f64("score")
low   = reader.min_f64("score")
high  = reader.max_f64("score")
ages  = reader.sum_i64("age")

C extension (hot path + OLAP layouts)

Build once (compiles _nxs.c with ../c/nxs.c for row, columnar, and PAX):

bash build_ext.sh

Conformance for columnar/PAX vectors (nyxis/conformance/run_py.py) requires this build; pure nxs.py covers row layout only.

Use the same API, significantly faster for columnar work:

import _nxs

reader = _nxs.Reader(buf)

# Columnar / PAX: zero-copy field buffers (numpy optional)
if reader.layout == "columnar":
    buf = reader.col_buffer("score")  # dict: values, bitmap, count (memoryviews)
    arr = reader.col_numpy_f64("score")  # numpy.ndarray, requires numpy
    total = reader.col_sum_f64("score")
print(reader.record(42).get_str("username"))   # ~374 ns vs ~1.2 µs pure Python
total = reader.sum_f64("score")                # 3.15 ms at 1M records

Write a file

from nxs_writer import NxsSchema, NxsWriter

schema = NxsSchema(["id", "username", "score", "active"])
w = NxsWriter(schema)

w.begin_object()
w.write_i64(0, 42)
w.write_str(1, "alice")
w.write_f64(2, 9.5)
w.write_bool(3, True)
w.end_object()

data: bytes = w.finish()

# Convenience: write from a list of dicts
data2 = NxsWriter.from_records(
    ["id", "username", "score"],
    [{"id": 1, "username": "bob", "score": 8.2}]
)

Tests

python test_nxs.py       # pure-Python
python test_c_ext.py     # C extension (requires build_ext.sh first)

Benchmarks

python bench.py          # pure-Python vs json.loads
python bench_c.py        # C extension vs json.loads

Files

File Purpose
nxs.py Pure-Python reader
nxs_writer.py Pure-Python writer
_nxs.c C extension source
build_ext.sh Compiles _nxs.c_nxs.cpython-*.so

Query engine

from nxs import NxsReader, Eq, Gt, Lt, And, Or, Not, Query

data = open("data.nxb", "rb").read()
r = NxsReader(data)

# Count matching records
n = r.where(And(Eq("active", True), Gt("score", 80.0))).count()

# Iterate — yields dicts
for rec in r.where(Eq("active", True)):
    print(rec["username"])

# First match or None
first = r.where(Gt("score", 99.0)).first()

# No predicate = all records
total = r.where().count()

Predicates

Class Matches
Eq(key, value) equality — bool, str, int, float
Gt(key, v) / Lt(key, v) numeric > / <
Gte(key, v) / Lte(key, v) numeric >= / <=
And(p1, p2) / Or(p1, p2) / Not(p) combinators

Operator overloads: p1 & p2, p1 | p2, ~p.


For the format specification see SPEC.md. For cross-language examples see GETTING_STARTED.md.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nyxis-1.2.0.tar.gz (11.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nyxis-1.2.0-py3-none-any.whl (11.0 kB view details)

Uploaded Python 3

File details

Details for the file nyxis-1.2.0.tar.gz.

File metadata

  • Download URL: nyxis-1.2.0.tar.gz
  • Upload date:
  • Size: 11.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nyxis-1.2.0.tar.gz
Algorithm Hash digest
SHA256 52b0c43746ae968014f994f3ebc3b09469263f03e6f5d69f254333120865db29
MD5 d0fca09030b90a9777605a1a34002e52
BLAKE2b-256 5a7a2dc419032242544861ca8848df5a1bc457fee59b4a44b92cf1c592cceb61

See more details on using hashes here.

Provenance

The following attestation bundles were made for nyxis-1.2.0.tar.gz:

Publisher: publish-pypi.yml on nyxis-io/nyxis-drivers

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nyxis-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: nyxis-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nyxis-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b4999739f80433b61cd2c1d29da3a7531d50ef13460fc72261245d549603a348
MD5 fb0d7bbc384b93de0e1ab8307579611b
BLAKE2b-256 39c7afa015d4e6fc5478cd2adc1232b253d77edb57b212c4e7cb0299ddc4f6e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for nyxis-1.2.0-py3-none-any.whl:

Publisher: publish-pypi.yml on nyxis-io/nyxis-drivers

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page