Skip to main content

A Python typing construct that provides namespaced literal constants with advanced typing features.

Project description

LiteralEnum

LiteralEnum is an experiment/prototype for a proposed Python typing construct: a finite, named set of runtime literals (usually strings) that type checkers can treat as an exhaustive Literal[...] union.

Status: Prototype / exploration for typing-sig discussion. Not an accepted PEP.

Why this exists

In typed Python today you often have to pick one:

  • Enum / StrEnum: great runtime namespace, but APIs want callers to pass enum members instead of raw strings
  • Literal[...]: great static checking, but no runtime namespace/iteration/validation

So people duplicate values or accept str and validate at runtime.

LiteralEnum aims to make the common case a single source of truth.

It’s designed for “protocol token” style values—HTTP methods, event names, command identifiers, config keys—where you want:

  • plain literals at runtime (e.g. "GET"),
  • namespaced constants (e.g. HttpMethod.GET), and
  • static exhaustiveness checking (i.e. the type is equivalent to Literal["GET", "POST", ...]).

Table of Contents


Quickstart

Install

This repo is currently set up as a package under src/.

#python -m venv .venv
#source .venv/bin/activate
pip install literalenum

Realistic Current Usage

from typing import Literal
from literalenum import LiteralEnum

HttpMethodT = Literal["GET", "POST", "DELETE"]
class HttpMethod(LiteralEnum):
    GET = "GET"
    POST = "POST"
    DELETE = "DELETE"

def handle(method: HttpMethodT) -> None:
    print(f"{method=}")

handle("GET")          # this should type-check ✅ 
handle(HttpMethod.GET) # this should type-check ✅ 
handle("git")          # ❌ should be rejected by a type checker

assert HttpMethod.GET == "GET"
assert list(HttpMethod) == ["GET", "POST", "DELETE"]
assert "GET" in HttpMethod
print(HttpMethod.keys())
print(HttpMethod.values())
print(HttpMethod.mapping)

Optimistic Future Usage

from typing import LiteralEnum # NOT valid right now

class HttpMethod(LiteralEnum):
    GET = "GET"
    POST = "POST"
    DELETE = "DELETE"

def handle(method: HttpMethod) -> None:
    print(f"{method=}")

handle("GET")          # the GOAL is that this should type-check ✅ , in reality: it will not unless typecheckers change
handle(HttpMethod.GET) # the GOAL is that this should type-check ✅ , in reality: it will not unless typecheckers change
handle("git")          # ❌ should be rejected by a type checker

assert HttpMethod.GET == "GET"
assert list(HttpMethod) == ["GET", "POST", "DELETE"]
assert "GET" in HttpMethod
print(HttpMethod.keys())
print(HttpMethod.values())
print(HttpMethod.mapping)

Contributing / discussion

Actively looking for feedback! Please comment at https://discuss.python.org/t/proposal-literalenum-runtime-literals-with-static-exhaustiveness/106000

It would be especially helpful if you are familiar with mypy/pright/pylance and have suggestions on how a future Python version could support the type hinting goals.


License

This project is released into the public domain under The Unlicense.

You are free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

See the LICENSE file for full details.

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

literalenum-0.4.0.tar.gz (44.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

literalenum-0.4.0-py3-none-any.whl (29.9 kB view details)

Uploaded Python 3

File details

Details for the file literalenum-0.4.0.tar.gz.

File metadata

  • Download URL: literalenum-0.4.0.tar.gz
  • Upload date:
  • Size: 44.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for literalenum-0.4.0.tar.gz
Algorithm Hash digest
SHA256 774ba0c3165b7dc71d30f677548c7fc7075050b9a9171fbb352854928f6d5a56
MD5 81218e2369ed70a5f8fff5438cf9c111
BLAKE2b-256 33483825c46b2a3ce3cdbd8d6ac33da01a29dc70b57fa1dbcec9158e6600b26f

See more details on using hashes here.

Provenance

The following attestation bundles were made for literalenum-0.4.0.tar.gz:

Publisher: publish.yml on modularizer/LiteralEnum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file literalenum-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: literalenum-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 29.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for literalenum-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f5253aa807358ece4dc79131bd7b638122a83764704c27054f4b6c0cc24ea133
MD5 3f6e6e9bff1f06c2d90c8f91a961307b
BLAKE2b-256 0b132999be3eb2b6058817c6a86ec01da571ef280814836bca5f7774e18a07c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for literalenum-0.4.0-py3-none-any.whl:

Publisher: publish.yml on modularizer/LiteralEnum

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page