Skip to main content

Dealing with json and bson files

Project description

📦 cvxbson

PyPI version Apache 2.0 License Downloads Coverage Status Renovate enabled

Open in GitHub Codespaces

🔄 IPC

IPC stands for InterProcess Communication. It is a mechanism that allows to share data between processes. A traditional way to do so is to use json files. Json files are rather flexible and can be used to share data between different programming languages. However, they are not very efficient.

Here we use their binary counterpart, bson files. Bson files are much more efficient but somewhat lack the flexibility of json files. Here we rely on the bson package to read and write bson files. We are interested in parsing dictionaries of numpy arrays, pandas and polars dataframes as fast as possible.

There might be faster ways to achieve this goal and we are open to suggestions and pull requests.

We recommend using json files to transfer configurations and small amounts of data. Bson files can then be used to transfer large matrices. A coexistence is possible and encouraged.

🚀 Demo

>>> import numpy as np

>>> from cvx.bson import read_bson, write_bson

>>> data = {"A": np.random.rand(50, 50), "B": np.random.rand(50)}

>>> write_bson("test.bson", data)
>>> recovered = read_bson("test.bson")

>>> assert np.allclose(data["A"], recovered["A"])
>>> assert np.allclose(data["B"], recovered["B"])

We have also implemented the same functionality in for json files but would advise against using it. It is much slower and less efficient.

You may want to avoid the explicit construction of files. It is possible to work directly with bson strings. We provide methods for that, too.

🛠️ uv

You need to install task. Starting with

task build:install

will install uv and create the virtual environment defined in pyproject.toml and locked in uv.lock.

📊 marimo

We install marimo on the fly within the aforementioned virtual environment. Executing

task docs:marimo

will install and start marimo.

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

cvxbson-0.2.0.tar.gz (96.7 kB view details)

Uploaded Source

Built Distribution

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

cvxbson-0.2.0-py3-none-any.whl (12.8 kB view details)

Uploaded Python 3

File details

Details for the file cvxbson-0.2.0.tar.gz.

File metadata

  • Download URL: cvxbson-0.2.0.tar.gz
  • Upload date:
  • Size: 96.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cvxbson-0.2.0.tar.gz
Algorithm Hash digest
SHA256 ece56c607bf81ad87250b9430fb43aaec34c429ab388e3e6b844a86bc931793c
MD5 ae41bdc0e32cc0c910701cebe339d126
BLAKE2b-256 547a2cdb0211384cec040423e8e24f7ffcc9e372274c86a3e9bc05c79c34c973

See more details on using hashes here.

Provenance

The following attestation bundles were made for cvxbson-0.2.0.tar.gz:

Publisher: release.yml on cvxgrp/cvxbson

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

File details

Details for the file cvxbson-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: cvxbson-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 12.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cvxbson-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5749c9bb8a797f589d0f2ebd3d1666507c11d622c2666e5549b809dab737db43
MD5 e21f5a53b11b3266d3b13c5180ef19ca
BLAKE2b-256 d7334cfc96af654944a9324df89e3832175e4b87413a0c3c033483f66849e173

See more details on using hashes here.

Provenance

The following attestation bundles were made for cvxbson-0.2.0-py3-none-any.whl:

Publisher: release.yml on cvxgrp/cvxbson

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