Python type converter
Project description
TypePigeon
TypePigeon is a Python type converter focused on converting values between various Python data types.
pip install typepigeon
Features
- convert values directly from one Python type to another with
convert_value()
- convert values to JSON format with
convert_to_json()
- convert generic aliases (
List[str]
) to simple collection types ([str]
) withguard_generic_alias()
Usage
With TypePigeon, you can convert simple values from one type to another:
import typepigeon
typepigeon.convert_value(0.55, str)
# '0.55'
typepigeon.convert_value(1, float)
# 1.0
typepigeon.convert_value([1], str)
# '[1]'
Additionally, you can also cast values into a collection:
import typepigeon
typepigeon.convert_value([1, 2.0, '3'], [int])
# [1, 2, 3]
typepigeon.convert_value('[1, 2, 3]', (int, str, float))
# [1, '2', 3.0]
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
typepigeon-1.0.3.tar.gz
(5.9 kB
view hashes)
Built Distribution
Close
Hashes for typepigeon-1.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fcae22bf6112ff2d86098ca9612c496e73978bfc6e5d362fcbc056dcd10c5ed5 |
|
MD5 | 442f13e00b26a698f7511fce4e7a149a |
|
BLAKE2b-256 | bde991ca670e600f31fc1c3c604e8d47990a0ca917d13cba10bac34294cb1df5 |