Skip to main content

data validation and conversion library

Project description

PyDto is a data conversion library. It can validate data, that comes from various data serialization formats like JSON, YAML, etc. and convert it to native Python datatypes. It can also convert native Python objects to described DTO.

A taste of this library:

>>> schema = Schema({
...     Required('someString1', 'some_string_1'): String(),
...     Optional('someString2', 'some_string_2'): String(),
...     Required('someDict', 'some_dict'): {
...         Required('someInt', 'some_int'): Integer(),
...         Required('someList', 'some_list'): List(Decimal()),
...         Required('someOtherList', 'some_other_list'): List({
...             Required('innerString', 'inner_string'): String(),
...             Required('innerInt', 'inner_int'): Integer()
...         })
...     }
... })
>>> native_object = schema.to_native({
...     'someString1': 'asdf',
...     'someDict': {
...         'someInt': 2,
...         'someList': ['11.5', '12.2'],
...         'someOtherList': [
...             {'innerString': 'is1', 'innerInt': 1},
...             {'innerString': 'is2', 'innerInt': '2'}
...         ]
...     }
... })
>>> assert native_object == {
...     'some_string_1': 'asdf',
...     'some_dict': {
...         'some_int': 2,
...         'some_other_list': [
...             {'inner_int': 1, 'inner_string': 'is1'},
...             {'inner_int': 2, 'inner_string': 'is2'}
...         ],
...         'some_list': [decimal.Decimal('11.5'), decimal.Decimal('12.2')],
...     }
... }

Check out documentation for more detailed review at Github repo.

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

pydto-0.3.3.tar.gz (8.0 kB view details)

Uploaded Source

File details

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

File metadata

  • Download URL: pydto-0.3.3.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pydto-0.3.3.tar.gz
Algorithm Hash digest
SHA256 f17676fd2495f9ae06f3a80bf58b5a873fd53b6e64016e16c4395bc4771fc2e7
MD5 a6dafe3482e013128d51f3c26814ce96
BLAKE2b-256 93ad5136629cdc405b5fbc7a3723cb4e7c6eb1d155cb26b3af2f11607f8a9f51

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