Skip to main content

Typing extensions extensions

Project description

teext – typing extensions extensions

Package which provides useful types.

Documentation

Examples

Value-constraint types without runtime overhead

These types are most useful in conjunction with static type checkers like mypy.

import teext as tx

def f(x: tx.PositiveInt) -> None:
    print(x)

a = 5
assert tx.is_positive_int(a)
f(a)  # OK
f(7)  # works at runtime but mypy gives error

assert tx.is_positive_int(-3)  # AssertionError

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

teext-0.1.9.tar.gz (7.8 kB view hashes)

Uploaded Source

Built Distributions

teext-0.1.9-py3-none-any.whl (86.3 kB view hashes)

Uploaded Python 3

teext-0.1.9-cp310-cp310-manylinux_2_35_x86_64.whl (86.3 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.35+ x86-64

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