Skip to main content

Easy declaration of data structures with runtime type checking

Project description

easytypes

Easy typed structures for Python with optional field checking and runtime type checking. Based on class decorators and typeguard package for type checking.

What does the package implement

from easytypes import easy_type_decorator, safe_type, fast_type, unlimited_type
from easytypes import EasyTypesException
from easytypes import AttributeRequired, AttributeNotAllowed, AttributeTypeError
from easytypes import Required
from easytypes import disable_all_checks, enable_all_checks

How to define a simple data class

from easytypes import easy_type_decorator, safe_type, fast_type, unlimited_type
from easytypes import EasyTypesException
from easytypes import AttributeRequired, AttributeNotAllowed, AttributeTypeError
from easytypes import Required
from easytypes import disable_all_checks, enable_all_checks

@safe_type  # You cannot: add new attrs; not set (or delete) the required attrs; assign wrong types
class A:
    a: int  # Type checking, not required, no default value
    b: str = '5'  # Type checking, not required, the default value is '5'
    c: float = Required()  # Type checking, required, no default value
    d: Tuple[int, int] = Required(2, 3)  # Type checking, required, the default value is (2, 3)

...and how does the class work

va = A(a=2, b='b', c=1.0, d=(2,4))  # Ok
assert va.a == 2
va.a = 5
assert va.a == 5
va = A(c=1.0)  # Ok, using default values
va = A(c=1.0, q=2)  # raises AttributeNotAllowed 
va.q = 0  # raises AttributeNotAllowed
va.a = '5'  # raises AttributeTypeError (a should be int)
va = A(c='c')  # raises AttributeTypeError (c should be float)
va = (b='c')  # raises AttributeRequired (a is missing)

How to extend a class

@safe_type
class B(A):
    e: str = 5  # Is added to the fields defined in A

...and how to redefine a field

@safe_type
class C(A):
    a: int = 5  # Not recomended and not prohibited

How to disable all the checks at runtime

disable_all_checks()  # Does not affect all the previously created classes, so put it before the class declaration

...and how to re-enable them

enable_all_checks()  # Does not affect all the previously created classes, so put it before the class declaration

The other class decorators

unlimited_type  # Allows to add the attributes that are not declared at the class level
fast_type  # No checks at all, just a constructor implemetation accepting the attributes

...and how to get a customized decorator

easy_type_decorator(chk_required=True, chk_allowed=True, chk_types=True)  # Allows to activate only the desired checks

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

easytypes-0.5.1.tar.gz (7.8 kB view details)

Uploaded Source

Built Distribution

easytypes-0.5.1-py3-none-any.whl (9.0 kB view details)

Uploaded Python 3

File details

Details for the file easytypes-0.5.1.tar.gz.

File metadata

  • Download URL: easytypes-0.5.1.tar.gz
  • Upload date:
  • Size: 7.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for easytypes-0.5.1.tar.gz
Algorithm Hash digest
SHA256 e2ef379b61a88b41a7304440be6121c3ac2b803b1ed21c1c806a9de92493128e
MD5 5b35b3b8fee21a1816ae9f93e656ece8
BLAKE2b-256 988a83cbe2c4591764a880e9bc24ecae394b38905f19ee7c92febd41d5545415

See more details on using hashes here.

File details

Details for the file easytypes-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: easytypes-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 9.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for easytypes-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1970f62049e953347430eab80964461a05b5deefa04c917fbae8301052a3628b
MD5 0ab3904249ee7cb29330d50a5a76de3f
BLAKE2b-256 91a35b6376a3ef64734373cdb0643052c0d04c16429bfcd41dde81ba05544555

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