typepy is a Python library for variable type checker/validator/converter at a run time.
Project description
Summary
typepy is a Python library for variable type checker/validator/converter at a run time.
Features
checking a value type
validate a value for a type
convert a value from one type to the other type
The correspondence between Python types and typepy classes are as follows:
Python Type |
typepy: Type Class |
---|---|
bool |
|
datetime |
|
dict |
|
float/decimal.Decimal (not infinity/NaN) |
|
float/decimal.Decimal (infinity) |
|
float/decimal.Decimal (NaN) |
|
int |
|
list |
|
None |
|
str (not null) |
|
str (null) |
|
str (IP address) |
Installation
Installation: pip
pip install typepy
Install additional dependency packages with the following command if using typepy.DateTime class
pip install typepy[datetime]
Installation: conda
conda install -c conda-forge typepy
Installation: apt
sudo add-apt-repository ppa:thombashi/ppa sudo apt update sudo apt install python3-typepy
Dependencies
Optional dependencies
These packages can be installed via pip install typepy[datetime]:
Usage
Type Check Method
- Examples:
>>> from typepy import Integer >>> Integer(1).is_type() True >>> Integer(1.1).is_type() False
Type Validation Method
- Examples:
>>> from typepy import Integer >>> Integer(1).validate() >>> try: ... Integer(1.1).validate() ... except TypeError as e: ... # validate() raised TypeError when the value unmatched the type class ... print(e) ... invalid value type: expected=INTEGER, actual=<type 'float'>
Type Conversion Methods
convert method
- Examples:
>>> from typepy import Integer, TypeConversionError >>> Integer("1").convert() 1 >>> try: ... Integer(1.1).convert() ... except TypeConversionError as e: ... # convert() raised TypeConversionError when conversion failed ... print(e) ... failed to convert from float to INTEGER
try_convert method
- Examples:
>>> from typepy import Integer >>> Integer("1").try_convert() 1 >>> print(Integer(1.1).try_convert()) # try_convert() returned None when conversion failed None
force_convert
- Examples:
>>> from typepy import Integer, TypeConversionError >>> Integer("1").force_convert() # force_convert() forcibly convert the value 1 >>> Integer(1.1).force_convert() 1 >>> try: ... Integer("abc").force_convert() ... except TypeConversionError as e: ... # force_convert() raised TypeConversionError when the value was not convertible ... print(e) ... failed to force_convert to int: type=<class 'str'>
For more information
Type check/validate/convert results differed according to strict_level value which can pass to typepy class constructors as an argument. More information can be found in the API reference.
Documentation
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 typepy-1.3.2.tar.gz
.
File metadata
- Download URL: typepy-1.3.2.tar.gz
- Upload date:
- Size: 24.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b69fd48b9f50cdb3809906eef36b855b3134ff66c8893a4f8580abddb0b39517 |
|
MD5 | 2637fdf609b8a7b9b8ec722852efc706 |
|
BLAKE2b-256 | cc869672794fb1c87a17b839666976ed4c8cb779ce05d471bed3166a39a53c4d |
File details
Details for the file typepy-1.3.2-py3-none-any.whl
.
File metadata
- Download URL: typepy-1.3.2-py3-none-any.whl
- Upload date:
- Size: 31.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5d1022a424132622993800f1d2cd16cfdb691ac4e3b9c325f0fcb37799db1ae |
|
MD5 | d5f88926403aa4437610226e96041ee7 |
|
BLAKE2b-256 | f1100d6dc654bb4e0eca017bbaf43a315b464c888576a68a2883cd4a74bd1b6b |