Skip to main content

A utility for producing enums with automatic names

This package provides an extension of python Enum objects that automatically assigns values to members. This uses the auto() feature to assign text values to the enums instead of having to manually set them.

Specifying your enum

For example, you might create an enum with this like so:

class Aliens(AutoNameEnum):
    JAWA = auto()
    EWOK = auto()
    HUTT = auto()
    PYKE = auto()

Getting values

Using the class, verify the value of JAWA would be 'JAWA':

>>> print(Aliens.JAWA.value)
'JAWA'

You may also get the same value by just using the name of the item:

>>> print(Aliens.JAWA)
'JAWA'

Iterating

Python enums may be iterated over:

for alien in Aliens:
    print(f"name: {alien.name}, value: {alien.value}")

For more information on enums (and the auto method), see [the official docs] (https://docs.python.org/3/library/enum.html)

Mixins

There are two mixins provided that change the case of member values for both auto() and autodoc():

  • LowerCaseMixin: values are in all lower-case
  • TitleCaseMixin: values are in title-case (lower-case except for first letter)
  • KebabCaseMixin: values are in kebab-case (dashes instead of underscores)

When these mixins are used, they must be included after AutoNameEnum in the class inheritance declaration:

class Aliens(AutoNameEnum, TitleCaseMixin)
    JAWA = auto()
    EWOK = auto()
    HUTT = auto()
    PYKE = auto()

Documented members with autodoc()

The autodoc() function works like auto(), but also attaches a description and/or display_name to each enum member. This is useful for self-documenting enums where members need human-readable explanations or labels:

class Aliens(AutoNameEnum):
    JAWA = autodoc("A small, rodent-like alien from Tatooine")
    EWOK = autodoc("A furry, diminutive alien from the forest moon of Endor")
    HUTT = autodoc("A large, slug-like alien from Nal Hutta")
    PYKE = autodoc("A secretive, spice-dealing alien from Oba Diah")

The value works just like auto():

>>> print(Aliens.JAWA.value)
'JAWA'

Access the description via the .description property:

>>> print(Aliens.JAWA.description)
'A small, rodent-like alien from Tatooine'

A display_name can also be attached as a keyword argument:

class Aliens(AutoNameEnum):
    JAWA = autodoc(description="A small, rodent-like alien from Tatooine", display_name="Jawa (Tatooine)")
    EWOK = autodoc(description="A furry, diminutive alien from the forest moon of Endor", display_name="Ewok (Endor)")
>>> print(Aliens.JAWA.display_name)
'Jawa (Tatooine)'

You can mix auto() and autodoc() in the same enum. Members created with auto() will return None for .description and their value for .display_name:

class Aliens(AutoNameEnum):
    JAWA = autodoc("A small, rodent-like alien from Tatooine")
    EWOK = auto()
    HUTT = autodoc("A large, slug-like alien from Nal Hutta")
>>> print(Aliens.JAWA.description)
'A small, rodent-like alien from Tatooine'
>>> print(Aliens.EWOK.description)
None
>>> print(Aliens.EWOK.display_name)
'EWOK'

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

auto_name_enum-4.2.0.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

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

auto_name_enum-4.2.0-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file auto_name_enum-4.2.0.tar.gz.

File metadata

  • Download URL: auto_name_enum-4.2.0.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for auto_name_enum-4.2.0.tar.gz
Algorithm Hash digest
SHA256 6b8bc1a9b813c5bcf7cf3fce7ad6a2ab16eafa3265e06dc2178f5a76b8925d21
MD5 42f17c692bd3eb3d1602ae111b4c6e20
BLAKE2b-256 6aeacf2a8472b0010d56ad76bd4be8b3d8054bf396f1928b9cfc4efc23f2edc8

See more details on using hashes here.

File details

Details for the file auto_name_enum-4.2.0-py3-none-any.whl.

File metadata

  • Download URL: auto_name_enum-4.2.0-py3-none-any.whl
  • Upload date:
  • Size: 7.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for auto_name_enum-4.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 262dec8891ff4fbb648ee845c1b39b2e41f48dc97ff4b74b0cac22c42d3a0c1e
MD5 6c5f8f83a9803c309065575f777d42cf
BLAKE2b-256 8968858413671641a6da5fc7a98d611c3dc54f355ab6de688baeab500dd29fef

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

4.2.0 This release

2 files

4.1.0

2 files

4.0.0

2 files

3.0.0

2 files

2.0.0

2 files

1.2.0

2 files

1.1.0

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page