Skip to main content

Powerful and simple algebraic sum types in Python.

Project description

Python Choice Types

choicetypes brings powerful and simple algebraic sum types to Python.

Usage

New Choice types are constructed using sytax similar to standard library enums and dataclasses:

from choicetypes import Choice


class IpAddr(Choice):
    V4: tuple[int, int, int, int]
    V6: str


home = IpAddr(V4=(127, 0, 0, 1))
loopback = IpAddr(V6="::1")

A choice consists of mutually exclusive variants. In this example, any instance of IpAddr must be either a V4 or V6 address. Variants are just normal attributes and can be accessed as such. But they're also designed to work seamlessly with structural pattern matching, introduced in Python 3.10:

for ip in (home, loopback):
    match ip:
        case IpAddr(V4=fields):
            print("{}:{}:{}:{}".format(*fields))
        case IpAddr(V6=text):
            print(text)

For a complete overview of what Choice type can do, see the official documentation.

Installation

The choicetypes package is available on PyPi:

pip install choicetypes

It is written in pure Python with zero dependencies and tested against Python 3.7 and newer.

Background

Algebraic choice types have various other names (sum types, tagged unions, etc.) and exist in a number of programming languages. The primary inspiration for choicetypes was Rust's Enum type.

Python's Enum allows you to express mutually exclusive variants, but not associated data. Its dataclass (and similar) types store data but cannot represent mutually exclusive variants. The core idea behind algebraic sum types is to store these two pieces of information simultaneously.

I wanted to build a type that could accomplish this in a similar style to Rust. Importantly, it had to work cleanly with structural pattern matching and type hinting.

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

choicetypes-0.1.0rc1.tar.gz (4.9 kB view hashes)

Uploaded Source

Built Distribution

choicetypes-0.1.0rc1-py3-none-any.whl (5.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