Skip to main content

Tools to read and write .son files

Project description

son | sequential object notation

python pypi license code style

son is a data format that builds on JSON and adds one feature inspired by YAML: concatenation of objects with ---. Optionally, the delimiter === can be used once per son file to delimit metadata.


Motivation

Why son?

While JSON is perfect for storing structured data, it is inherently impossible to add new portions of data to a file without reading it first. YAML files on the other hand are self extensible by the --- delimiter, but the flexibility YAML offers makes the files inefficient to parse. They are thus unsuited to store significant amounts of data.

son fills the gap by allowing JSON objects to be concatenated with ---. It thus combines the speed and efficiency of JSON with the sequential extensibility of YAML, see example. It further adds to discern metadata from actual data by using ===.

son does not allow to overwrite data. In order to avoid accidental data loss, metada can only be written to fresh files, whereas data can only be appended to files.

Who needs this?

son originated from the need to store computational data that is produced portion by portion on a computer. The requirements were:

  • Possible to be read by a human,
  • possible to store arbitrary data structures including metadata,
  • easy to write and parse by a computer,
  • efficient to parse to allow files of up to GB size (takes forever to parse with YAML),
  • sequential and incorruptible,
  • resilient to data loss.

son is targeted at users who would like to store their data in a format meeting these requirements.


Installation

son can be installed from pypi via

pip install son

Example

This is a valid son string:

{
  "purpose": "store biography data",
  "version": 0.1
}
===
{
  "first name": "Hildegard",
  "second name": "Kneef",
  "age": 93
}
---
{
  "first name": "Wiglaf",
  "second name": "Droste",
  "age": 57
}

It will be parsed into the metadata object, and a list containing the data objects with

>>> import son
>>> metadata, data = son.load('test.son')
>>> print(metadata)
{'purpose': 'store biography data', 'version': 0.1}
>>> print(data)
[{'first name': 'Hildegard', 'second name': 'Kneef', 'age': 93}, {'first name': 'Wiglaf', 'second name': 'Droste', 'age': 57}]

Changelog

v0.3.3: Add documentation via mkdocs and mkdocs-material

v0.3.2: fix for interactively working in ipython console

v0.3.1: inform before file is read, makes more sense when that takes some time

v0.3.0: support for reading compressed .bz2 and .gz files

v0.2.5: progressbar is only shown when a terminal is attached (.isatty())

v0.2.4: progressbar without external dependency

v0.2.3: progress.bar prints to stdout instead of stderr

v0.2.2: optionally be verbose and show progressbar with progress package (optional dependency, install with pip install son[progress])

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

son-0.3.3.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

son-0.3.3-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

Details for the file son-0.3.3.tar.gz.

File metadata

  • Download URL: son-0.3.3.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/0.12.17 CPython/3.8.1 Linux/4.15.0-88-generic

File hashes

Hashes for son-0.3.3.tar.gz
Algorithm Hash digest
SHA256 b8f16a85414e8a78e889dd79ea36eb7b0740d52014c6225f752dcb7d450b2ce1
MD5 9a5551716d42dd2e9426071a111d796c
BLAKE2b-256 aa7b04478df1d39f6a9eb9c212399358b3f2df272a3cb0480b0c37210d0a5443

See more details on using hashes here.

File details

Details for the file son-0.3.3-py3-none-any.whl.

File metadata

  • Download URL: son-0.3.3-py3-none-any.whl
  • Upload date:
  • Size: 5.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/0.12.17 CPython/3.8.1 Linux/4.15.0-88-generic

File hashes

Hashes for son-0.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 eb17954bb88445eb2c5a6de3677b0a19e33680e8f9fa47e70de909d80c36ef5e
MD5 fe527e2aa6b72329b45a3ce0b05462f0
BLAKE2b-256 f05561917e1f4a22e856a2e81764bfbe4ae5b6fadc917ee76e0fd415f836a425

See more details on using hashes here.

Supported by

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