A decorator for Python dataclasses to enable runtime type checking.
Project description
Typed Dataclass
Typed Dataclass is a Python library providing a decorator for dataclasses that enables runtime type checking.
Installation
Use the package manager pip to install typed-dataclass.
pip install typed-dataclass
Usage
This library should be used in conjunction with the @dataclas
decorator and should be placed
below @dataclass
. On object initialization it checks types by using
typeguard package. Internally this works by modifying
the __post__init__
method of the dataclass.
from dataclasses import dataclass
from typed_dataclass import typed_dataclass
@dataclass
@typed_dataclass
class MyClass:
my_field: int
MyClass(12) # will succeed
MyClass ("a") # will fail
Pre Validation
You can also implement logic that is happening before Type checks defining __before_type_check__
function:
from dataclasses import dataclass
from typed_dataclass import typed_dataclass
@dataclass
@typed_dataclass
class MyClass:
my_int: int
def __before_type_check__(self):
self.my_int = int(self.my_int)
Testing
python -m unittest discover tests
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file typed-dataclass-0.1.0.tar.gz
.
File metadata
- Download URL: typed-dataclass-0.1.0.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 626d5bd43f6d56f461a1e91b4a9f567af89c8fcc899fb14e6d579f8512249c6a |
|
MD5 | 46fe4bfa1b74fb1a69b7bb1de8a0c0c3 |
|
BLAKE2b-256 | 983833acff8663f464d0575be8c96ee253a2ee6d9042ecb1cbd1d8c3cf123184 |
File details
Details for the file typed_dataclass-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: typed_dataclass-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19941da4caa633f2b904385d76d4503c88c21f0c0b4f1d708e53b7187ef68acb |
|
MD5 | 60543424986b8fbfd59172fa1beac422 |
|
BLAKE2b-256 | 5357b80196490592706ebef9abb05fca812d7cbe22ca2c69023f07bd7de33118 |