Skip to main content

Functionality for types

Project description

Build Status

Typish

  • Functions for thorough checks on types
  • Instance checks considering generics
  • Typesafe Duck-typing

Installation

pip install typish

Content

Functions

Function Description
subclass_of(cls: type, *args: type) -> bool Returns whether cls is a sub type of all types in args
instance_of(obj: object, *args: type) -> bool Returns whether cls is an instance of all types in args
get_origin Return the "origin" of a generic type. E.g. get_origin(List[str]) gives list.
get_args Return the arguments of a generic type. E.g. get_args(List[str]) gives (str, ).
get_alias Return the typing alias for a type. E.g get_alias(list) gives List.
get_type Return the (generic) type of an instance. E.g. a list of ints will give List[int].
common_ancestor Return the closest common ancestor of the given instances.
common_ancestor_of_types Return the closest common ancestor of the given classes.

Types

Type Description
T A generic Type var.
KT A Type var for keys in a dict.
VT A type var for values in a dict.
Empty The type of emptiness (= Parameter.empty).
Unknown The type of something unknown.
Module The type of a module.
NoneType The type of None.

Interface

Define an interface with typish.Interface.

Example:

Duck = Interface[{
    'walk': Callable[[], None], 
    'quack': Callable[[], None]}]

Anything that has the attributes defined in the interface with the right type is considered an instance of that interface (classes, objects, even modules...).

You can check interfaces with the builtin isinstance or typish.instance_of.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

typish-1.0.0-py3-none-any.whl (7.4 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