Metadata-Version: 2.1
Name: tippo
Version: 4.0.2
Summary: Use the latest type annotation features in older versions of Python.
Home-page: https://github.com/brunonicko/tippo
Author: Bruno Nicko
Author-email: brunonicko@gmail.com
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*, != 3.4.*, != 3.5.*, != 3.6.*
Description-Content-Type: text/x-rst
License-File: LICENSE

Tippo
=====

.. image:: https://github.com/brunonicko/tippo/workflows/MyPy/badge.svg
   :target: https://github.com/brunonicko/tippo/actions?query=workflow%3AMyPy

.. image:: https://github.com/brunonicko/tippo/workflows/Lint/badge.svg
   :target: https://github.com/brunonicko/tippo/actions?query=workflow%3ALint

.. image:: https://github.com/brunonicko/tippo/workflows/Tests/badge.svg
   :target: https://github.com/brunonicko/tippo/actions?query=workflow%3ATests

.. image:: https://readthedocs.org/projects/tippo/badge/?version=stable
   :target: https://tippo.readthedocs.io/en/stable/

.. image:: https://img.shields.io/github/license/brunonicko/tippo?color=light-green
   :target: https://github.com/brunonicko/tippo/blob/main/LICENSE

.. image:: https://static.pepy.tech/personalized-badge/tippo?period=total&units=international_system&left_color=grey&right_color=brightgreen&left_text=Downloads
   :target: https://pepy.tech/project/tippo

.. image:: https://img.shields.io/pypi/pyversions/tippo?color=light-green&style=flat
   :target: https://pypi.org/project/tippo/

Overview
--------
Use the latest type annotation features in older versions of Python.

Motivation
----------
When working with Python development for VFX pipelines we are often stuck with older
Python versions for the runtime.

`Tippo` aims to bridge that gap since it allows us to use features such as static type
checking (which could be performed by newer Python versions with support for MyPy during
the testing phase) even though the code might be designed to run in Python 2.7, for
example.

Installation
------------
`Tippo` is available through `pip`:

``pip install tippo``

Usage
-----
Instead of importing from `typing` and/or `typing_extensions`...

.. code:: python

    >>> try:
    ...     from typing import TypeAlias
    ... except ImportError:
    ...     from typing_extensions import TypeAlias
    ...
    >>> try:
    ...     from typing import final
    ... except ImportError:
    ...     from typing_extensions import final
    ...

...just import directly from `tippo`:

.. code:: python

    >>> from tippo import TypeAlias, final

Generic Fixes
-------------
`Tippo` patches `GenericMeta` to fix known bugs for the Python 2.7 version of `typing`
that were not addressed since it's not officially supported anymore.

Generic class comparison:

.. code:: python

    >>> from tippo import Mapping
    >>> assert Mapping[str, int] == Mapping[str, int]  # passes
    >>> assert not (Mapping[str, int] != Mapping[str, int])  # passes

Subclassing a generic class with a `__weakref__` slot:

.. code:: python

    >>> from weakref import ref
    >>> from tippo import Generic, TypeVar
    >>> T = TypeVar("T")
    >>> class MyGeneric(Generic[T]):
    ...     __slots__ = ("__weakref__",)
    ...
    >>> class SubClass(MyGeneric[T]):  # does not error out
    ...     __slots__ = ()
    ...
    >>> instance = SubClass()
    >>> instance_ref = ref(instance)

In order to maintain the same interface, `GenericMeta` points to `type` when imported
from `tippo` in newer versions of Python.

Backports
---------
Features from the latest versions of Python, such as `TypeAlias`, `ClassVar`, `NewType`,
`get_origin`, and `get_args`.

.. code:: python

    >>> from tippo import Mapping, get_args, get_name
    >>> mapping_type = Mapping[str, int]
    >>> [get_name(a) for a in get_args(mapping_type)]
    ['str', 'int']

Commonly Used Protocols
-----------------------
Such as:

- `tippo.SupportsGetItem`
- `tippo.SupportsGetSetItem`
- `tippo.SupportsGetSetDeleteItem`
- `tippo.SupportsKeysAndGetItem`

.. code:: python

    >>> from tippo import SupportsGetItem
    >>> class Foo(object):
    ...     def __getitem__(self, item):
    ...         # type: (str) -> int
    ...         return 3
    ...
    >>> def get_stuff(bar):
    ...     # type: (SupportsGetItem[str, int]) -> int
    ...     return bar["stuff"]
    ...
    >>> assert get_stuff(Foo()) == 3  # passes static type checking
    >>> assert get_stuff({"stuff": 3}) == 3  # passes static type checking
