Skip to main content

A small extendable python type checker library

Project description

simple_type_checker

A small extendable python type checker library

Basic Usage

Checking a type:

from simple_type_checker import type_check
assert type_check("A string", str)

As a decorator:

from simple_type_checker import type_check, TypeCheckFailed

@type_checker.returns(int)
def id_(x):
    return x

_ = id_(1)  # Passes
try:
    id_("string")
except TypeCheckFailed as e:
    print("Bad input: ", e)

With custom types

Basic types where isinstance is sufficient:

from simple_type_checker import TypeChecker

class Foo:
    pass

type_check = TypeChecker(Foo)

assert type_checker(Foo(), Foo)

Special type checking logic desired

from simple_type_checker import TypeChecker, Checker

class Bar:
    def __init__(self, b):
        self.can_check = b

class CheckerBar(Checker):
    def __call__(self, obj: Any, type_: Any) -> bool:
        return type_ == Bar and isinstance(obj, Bar) and obj.can_check

type_check = TypeChecker(advanced=(Bar,))

assert type_checker(Bad(True), Bar)
assert not type_checker(Bad(False), Bar)

This use case is useful for container types that take arguments, for example.

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

simple_type_checker-2.0.0.tar.gz (18.8 kB view hashes)

Uploaded Source

Built Distribution

simple_type_checker-2.0.0-py3-none-any.whl (20.0 kB view hashes)

Uploaded Python 3

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