Skip to main content

Tools to read and write .son files

Project description

son | sequential object notation

python pypi license code style

What is this?

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.

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.

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('file.son')

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.1.5.tar.gz (3.8 kB view details)

Uploaded Source

Built Distribution

son-0.1.5-py2.py3-none-any.whl (3.7 kB view details)

Uploaded Python 2 Python 3

File details

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

File metadata

  • Download URL: son-0.1.5.tar.gz
  • Upload date:
  • Size: 3.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/0.12.16 CPython/3.7.2 Linux/4.15.0-51-generic

File hashes

Hashes for son-0.1.5.tar.gz
Algorithm Hash digest
SHA256 9507999160bbfa6b9169221b81d77e5ed2957ec4021a7ec9de9947c7e4a9e8d5
MD5 6530d3608e0d23de25ea8593ec7bc7fb
BLAKE2b-256 acd0d2b008391dbb800022d8fb9d3df62c7ca938c2e6377e5ccdc9dad6a0d892

See more details on using hashes here.

File details

Details for the file son-0.1.5-py2.py3-none-any.whl.

File metadata

  • Download URL: son-0.1.5-py2.py3-none-any.whl
  • Upload date:
  • Size: 3.7 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/0.12.16 CPython/3.7.2 Linux/4.15.0-51-generic

File hashes

Hashes for son-0.1.5-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 258ef19da51f6fcbbede389c745a4ef3a1135d8385c647ca56dab90d6980a469
MD5 bc4d79cb549270bebf9403241cab64a5
BLAKE2b-256 445d60fc53e500157df1bdc64e1dd7be5dc1c873c151d37808389f449c23952e

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