No project description provided
Project description
typeapi
Typeapi provides a sane and stable API to introspect Python type hints.
Installation
$ pip install typeapi
Quickstart
import typing
from typeapi import parse_type_hint
print(parse_type_hint(typing.Any)) # Type(object)
print(parse_type_hint(typing.List)) # Type(list)
print(parse_type_hint(typing.Mapping[str, int])) # Type(collections.abc.Mapping, (Type(str), Type(int)))
print(parse_type_hint(typing.Union[str, int])) # Union(int, str)
print(parse_type_hint(str | int)) # Union(int, str)
print(parse_type_hint(str | int | None)) # Optional(Union[int, str])
print(parse_type_hint(typing.Annotated[int, 42])) # Annotated(int, 42)
print(parse_type_hint(typing.Annotated[int, 42])) # Annotated(int, 42)
print(parse_type_hint('str', __name__)) # Type(str)
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
typeapi-0.1.0a1.tar.gz
(7.5 kB
view hashes)
Built Distribution
Close
Hashes for typeapi-0.1.0a1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e75b3e56ff3fc3e8f435cc2d09c12647b815407b14f859311b2f5c4d8ffc54e |
|
MD5 | 51f1aaf8cad74a4437f40b775cf49285 |
|
BLAKE2b-256 | 5633d805a578f311741610cc45cd728ee73de8853b8a5735297ba6919905d1d7 |