Skip to main content

Simple format for serialization, similar to CSV. Not useful for most general use.

Project description

Simple python module for loading and dumping structures in req format, a very simple {string: (string|list(string))} format.

Parses a structure like this:

Foo|Bar
Baz_1|alpha
Baz_2|beta
Baz_3|gamma

into:

{
    'Foo': 'Bar',
    'Baz': [
        'alpha',
        'beta',
        'gamma',
    ],
}

The load and dump methods will maintain the encoding given and will not correct on errors. If you pass a utf-8 filehandle to load, you’ll get unicode output. If you pass a bytestring filehandle to load, you’ll get bytestring output. loads is the same, but with either a unicode or bytestring input. dump will try to do the same, and dumps will attempt to determine the type. All dicts and arrays are expected to be entirely homogeneous (either entirely composed of unicode strings or entirely composed of byte strings). To not enforce this in the client side is undefined, and may be an explicit error in the future. Another undefined action is to embed newlines in any strings.

The only truly ambiguous case is dumps when given an empty dict. In this case, dumps will return an empty str object.

For structures parsed into lists, the logic is as such:

  • Any underscore and non-negative integer ending a key will automatically coerce into an list.

  • The actual values of the integers aren’t important. They will be ordered based on their decimal order. Holes and starting index aren’t bothered with.

  • If a field has an integer index given, but also has a non-indexed field of the same name, the non-indexed field will be given top precedence (essentially an index of -1)

  • Output of lists is 1-indexed by default, but this may be changed via a kwarg. If you need holes for whatever reason, you should pre-process the arrays into regular dict mappings.

This format is order-independent by default, but you may use an OrderedDict or something to maintain order on reading and writing. This does mean that dumping and loading an object (or vice versa) aren’t guaranteed to yield the exact same representation, but doing any 3 alternating operations in a row usually should.

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

ucbreq-2.0.5.tar.gz (9.1 kB view details)

Uploaded Source

Built Distribution

ucbreq-2.0.5-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

Details for the file ucbreq-2.0.5.tar.gz.

File metadata

  • Download URL: ucbreq-2.0.5.tar.gz
  • Upload date:
  • Size: 9.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.31.0

File hashes

Hashes for ucbreq-2.0.5.tar.gz
Algorithm Hash digest
SHA256 6f838d02ebb68eadd7665c32d06c96898dced8d2cd7d4955a2e33db8dc1e921c
MD5 2f646b85780437a7e10a8808912e7409
BLAKE2b-256 849dc2c2a801251e8830c5289841dfb91556e88a2062eec472879024e451214e

See more details on using hashes here.

File details

Details for the file ucbreq-2.0.5-py3-none-any.whl.

File metadata

  • Download URL: ucbreq-2.0.5-py3-none-any.whl
  • Upload date:
  • Size: 5.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.31.0

File hashes

Hashes for ucbreq-2.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 8582a5fa1c324b36bee8c17e0a90c6490c65fe09c840c2533206bc966f61d562
MD5 10b245398bb19e40e60250d2863cfe42
BLAKE2b-256 92d1255601156e1f763369f0a50b60787d281d0be82ce4ed94016b3cf285926f

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