Skip to main content

A convenience wrapper around serialization libraries to handle common tasks.

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

https://img.shields.io/pypi/v/basicserial.svg https://img.shields.io/pypi/l/basicserial.svg https://github.com/jayclassless/basicserial/workflows/Test/badge.svg

Overview

Does this look familiar?

>>> import json
>>> from datetime import date
>>> MY_DATA = {'foo': 123, 'bar': date(2018, 5, 22)}
>>> json.dumps(MY_DATA)
Traceback (most recent call last):
    ...
TypeError: datetime.date(2018, 5, 22) is not JSON serializable

It’s one thing when your serialization tools don’t know how to handle your custom classes, but it’s annoying when they don’t handle the built-in and/or common data types. Thus, basicserial was born.

This package is a thin wrapper around the common serialization tools that can do the following for you when working with JSON, YAML, and TOML:

  • Automatically serializes the following types to common-sense representations:

    Type

    JSON

    YAML

    TOML

    set

    array

    sequence

    array

    frozenset

    array

    sequence

    array

    Decimal

    number

    float

    float

    Fraction

    string

    string

    string

    date

    string (ISO 8601)

    timestamp

    string (ISO 8601)

    time

    string (ISO 8601)

    string (ISO 8601)

    string (ISO 8601)

    datetime

    string (ISO 8601)

    timestamp

    string (ISO 8601)

    complex

    string

    string

    string

    OrderedDict

    object

    map

    key/value

    defaultdict

    object

    map

    key/value

    namedtuple

    object

    map

    key/value

    UserDict

    object

    map

    key/value

    UserList

    array

    sequence

    array

    UserString

    string

    string

    string

    UUID

    string

    string

    string

  • Can serialize Enum members appropriately based on their type.

  • Can automatically deserialize dates, times, and datetimes into the native Python objects.

  • Provides a simple flag for generating “pretty” strings.

Usage

To use this package, install it from PyPI (pip install basicserial). Then, make sure you install the serialization package you’d like basicserial to use:

basicserial will automatically find a package to use, but if you want to use a specific one, you can specify its name via the pkg argument to the functions.

JSON:

>>> print(basicserial.to_json(MY_DATA))
{"foo": 123, "bar": "2018-05-22"}

>>> print(basicserial.to_json(MY_DATA, pretty=True))
{
  "foo": 123,
  "bar": "2018-05-22"
}

>>> basicserial.from_json(basicserial.to_json(MY_DATA))
{u'foo': 123, u'bar': datetime.date(2018, 5, 22)}

>>> basicserial.from_json(basicserial.to_json(MY_DATA), native_datetimes=False)
{u'foo': 123, u'bar': u'2018-05-22'}

YAML:

>>> print(basicserial.to_yaml(MY_DATA))
{bar: 2018-05-22, foo: 123}

>>> print(basicserial.to_yaml(MY_DATA, pretty=True))
bar: 2018-05-22
foo: 123

>>> basicserial.from_yaml(basicserial.to_yaml(MY_DATA))
{u'foo': 123, u'bar': datetime.date(2018, 5, 22)}

>>> basicserial.from_yaml(basicserial.to_yaml(MY_DATA), native_datetimes=False)
{'foo': 123, 'bar': u'2018-05-22'}

TOML:

>>> print(basicserial.to_toml(MY_DATA))
foo = 123
bar = "2018-05-22"

>>> print(basicserial.to_toml(MY_DATA, pretty=True))
foo = 123
bar = "2018-05-22"

>>> basicserial.from_toml(basicserial.to_toml(MY_DATA))
{u'foo': 123, u'bar': datetime.date(2018, 5, 22)}

>>> basicserial.from_toml(basicserial.to_toml(MY_DATA), native_datetimes=False)
{u'foo': 123, u'bar': u'2018-05-22'}

License

This project is released under the terms of the MIT License.

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

basicserial-1.2.1.tar.gz (10.5 kB view details)

Uploaded Source

Built Distribution

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

basicserial-1.2.1-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

Details for the file basicserial-1.2.1.tar.gz.

File metadata

  • Download URL: basicserial-1.2.1.tar.gz
  • Upload date:
  • Size: 10.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.9.1 Linux/5.8.0-63-generic

File hashes

Hashes for basicserial-1.2.1.tar.gz
Algorithm Hash digest
SHA256 a9876bc1ce3d8c534235c907693c4ca41072e9a37b1adddcb9dd51c8c5c9a772
MD5 75a0915ea3b1cf494df7c59992633532
BLAKE2b-256 90080d07363bfda469f7bd38cf4dae1649393a6b9f27b8f136b1df56061bdd60

See more details on using hashes here.

File details

Details for the file basicserial-1.2.1-py3-none-any.whl.

File metadata

  • Download URL: basicserial-1.2.1-py3-none-any.whl
  • Upload date:
  • Size: 10.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.9.1 Linux/5.8.0-63-generic

File hashes

Hashes for basicserial-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 873b591491d0e4755bc6cf78f4384db8547386fd56b7b8aac14a0ac1bb66e68c
MD5 b0073d8d8a25c17b87d3af3708497ad1
BLAKE2b-256 994b39c10ec9211324524a8b93926079b930b1a97ea41c00227fdb245aefe70d

See more details on using hashes here.

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