Skip to main content

Phantom types for Python

Project description

phantom-types

Phantom types for Python.

Installation

python3 -m pip install phantom-types

Abstract

Usage

Builtin types

phantom.datetime

  • TZAware
  • TZNaive

phantom.numeric

  • Natural
  • NegativeInt
  • Portion

phantom.re

  • Match

phantom.sized

  • NonEmpty
  • Empty

Creating phantom types

To create new phantom types, subclass phantom.base.Phantom and define an __instancecheck__ method:

from typing import Any
from typing import TYPE_CHECKING

from phantom.base import Phantom


class Greeting(str, Phantom):
    @classmethod
    def __instancecheck__(cls, instance: Any) -> bool:
        return (
            isinstance(instance, str)
            and instance.startswith(("Hello", "Hi"))
        )


hello = "Hello there"
# We can narrow types using mypy's type guards
assert isinstance(hello, Greeting)
# or explicitly when we need to
hi = Greeting.from_instance("Hi there")

# The runtime types are unchanged and will still be str for our greetings
assert type(hello) is str
assert type(hi) is str

# But their static types will be Greeting, retaining the information that our
# strings are not just any strs
if TYPE_CHECKING:
    reveal_type(hello)
    reveal_type(hi)

# As this string doesn't fulfill our __instancecheck__, it will not be an
# instance of Greeting.
assert not isinstance("Goodbye", Greeting)

Checkout out the dacite example for how to create dataclasses with rich phantom-typed fields without duplicating type definitions or losing parsed information.

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

phantom-types-0.0.2.tar.gz (6.5 kB view details)

Uploaded Source

Built Distribution

phantom_types-0.0.2-py3-none-any.whl (8.6 kB view details)

Uploaded Python 3

File details

Details for the file phantom-types-0.0.2.tar.gz.

File metadata

  • Download URL: phantom-types-0.0.2.tar.gz
  • Upload date:
  • Size: 6.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.1

File hashes

Hashes for phantom-types-0.0.2.tar.gz
Algorithm Hash digest
SHA256 c198560fb8c890b27df2fab4955d93441871d53b4b8052713accd4543ba6a346
MD5 265a29cb9468f9f0f544d0be08a07c6b
BLAKE2b-256 fd7d5dad8c622cf480a5e9d2cc4a75808530614d0109327f02808b48e3b8a0f5

See more details on using hashes here.

File details

Details for the file phantom_types-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: phantom_types-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 8.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.1

File hashes

Hashes for phantom_types-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a11e31faf59f97532bbaa22af6318bdeb32e2ed58d620b67f84a1c2bd76dc20a
MD5 57380d19dd8e4c4c1135ddbadf89495c
BLAKE2b-256 072cfa4bd8762ded5c29f3ad20738d5c91ad64e404fc2fa767847d40a5e8a0fc

See more details on using hashes here.

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