Skip to main content

The dataclass_plus is a fastest type validation library for the dataclass

Project description

dataclass_plus

Python 3.6 pypi travis-badge Coverage Status

The dataclass_plus is a fastest type validation library for the dataclass

Install

pip install dataclass-plus

Example

Basic Example

from dataclass_plus import dataclass_plus
from typing import List, Dict, Tuple


@dataclass_plus
class Model:
    id: int
    name: str
    dict_example: Dict[str, str]
    list_example: List[int] # this field is required
    tuple_example: Tuple[str, float] = None # this field is not required because set default None


Model(
    id=1, 
    name='Test Test', 
    dict_example={"test": "test"}, 
    list_example=[1,2],
    tuple_example=("test", 1.2)
)
# => Model(id=1, name='Test Test', dict_example={"test": "test"}, list_example=[1,2], tuple_example=("test", 1.2))

# Invalid Model
Model(
    id=1, 
    name='Test Test', 
    dict_example={"test": 1}, 
    list_example=[1,2],
    tuple_example=("test", 1.2)
)
# => TypeError: {'test': 1} is not typing.Dict[str, str]

Nested Example

from dataclass_plus import dataclass_plus
from typing import List, Dict, Tuple


@dataclass_plus
class Model:
    nested_example: List[List[str]]
    multi_nested_example: Dict[str, List[Tuple[str, List[int]]]]


Model(
    nested_example=[["test"], ["test_2"]],
    multi_nested_example={"test": [("test",[1, 2])]}
)
# => Model(nested_example=[['test'], ['test_2']], multi_nested_example={'test': [('test', [1, 2])]})

# Invalid Model
Model(
    nested_example=[["test"], ["test_2"]],
    multi_nested_example={"test": [("test",[1, "test"])]}
)
# => TypeError: [1, 'test'] is not typing.List[int]

Note: Can use every feature of dataclass (Example: frozen=True, init=True ...)

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

dataclass_plus-2.0.0.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

dataclass_plus-2.0.0-py3-none-any.whl (17.5 kB view details)

Uploaded Python 3

File details

Details for the file dataclass_plus-2.0.0.tar.gz.

File metadata

  • Download URL: dataclass_plus-2.0.0.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for dataclass_plus-2.0.0.tar.gz
Algorithm Hash digest
SHA256 d9a8d3bfbbf1cf8b221aff15a6d1d91894f60260dcea9a6d164615c016d7689b
MD5 8c90aa5b292e5a4b99ad5cd325831772
BLAKE2b-256 01a31c43bf47d1cd816ce94ef06c10a78946592fff69c011cb35c7916295273e

See more details on using hashes here.

File details

Details for the file dataclass_plus-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: dataclass_plus-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 17.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for dataclass_plus-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b2a7955aefa9a8b5ab1de8f528034561476c379f78d53c9d870e95ff9d369275
MD5 6260f25ab8e07968fefd2d02744218e7
BLAKE2b-256 4336866a588f28fb2a4f5df6fe06852646f5f44f29e8289c7a79945ca5f500bd

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