Skip to main content

Powerful Enumeration System

Project description

MakeObj - Powerful Enumeration System

MakeObj is a module to help create powerful enumeration classes with support to attributes specific for each element.

This module is compatible with Python versions 2.6+ and 3.0+

Using it

MakeObj lets you create enumerations with a simple language like that:

@obj RGBColors =:
    @keys = 'red', 'green', 'blue'

    @attr hex = 'ff0000', '00ff00', '0000ff'

    @attr is_nice =:
        @default = False
        @set => 'blue': True

Then you can use like this:

RGBColors = makeobj.parse(text)

if RGBColors.blue.is_nice:
    print('I like blue')

print('The hex value of {0.name} is #{0.hex}'.format(RGBColors.red))

If you have simple enums, you can use like this:

RGBColors = makeobj.make('RGBColors', ['red', 'green', 'blue'])

or, with some more data, one may want to write a class:

class RGBColors(makeobj.Obj):
    red, green, blue = makeobj.keys(3)
    hex = makeobj.attr('ff0000', '00ff00', '0000ff')

Status

This project is in test stage and some issues are expected mainly in the parsing language. It will parse conformant code, but still may not show all the errors and may load an invalid file skipping some data when it should raise an error.

The make function works fine but it may be easier to write a class instead. The SubObj machinery (see the Wiki entry) only works in the Enum Language. Yet!

Features

  • Enumerations with simple attributes, methods or even small objects with their own attributes.
  • An Enumeration Language for easy creation of objects.
  • The enumeration by default use the values 0 to N-1 but you may specify your own values.
  • The elements of the class are really instances of it and can take advantage of the isinstance function. Because of a metaclass factory, the classes do not share unwanted attributes with the instances.
  • The elements come with two attributes by default: name and value (also _name and _value in case you want to override them).
  • Elements can (and should!) be checked with the is comparison and can be retrieved by name in string form or value from their class: RGBColors('red') or RGBColors[0] or RGBColors.red result in the same object.
  • Enum values must be integer for simplicity and to help usability.
  • Subclassing is great!

TODO

  • Finalize the specs of MakeObj Enum Language v1.0.
  • Change the @method property to allow better function/method support
  • Create a helper function to load a directory of .makeobj files as they were a python module.
  • Better suport on subclassing: multiple inheritance, parent default attributes

Download files

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

Source Distribution

makeobj-0.9.tar.gz (16.6 kB view details)

Uploaded Source

Built Distribution

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

makeobj-0.9-py2.py3-none-any.whl (14.4 kB view details)

Uploaded Python 2Python 3

File details

Details for the file makeobj-0.9.tar.gz.

File metadata

  • Download URL: makeobj-0.9.tar.gz
  • Upload date:
  • Size: 16.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.9

File hashes

Hashes for makeobj-0.9.tar.gz
Algorithm Hash digest
SHA256 e3fbd41ad671151953e9479ef107bf3949cb37d1c7089c3c9b2986d07b5be719
MD5 23efbf3cbb70f9202391d7fcaaad0ec4
BLAKE2b-256 8d9d85fb20b55e5f9e076c16d7f3de2e54745f0c3c4df79e6e684413bd51a4cd

See more details on using hashes here.

File details

Details for the file makeobj-0.9-py2.py3-none-any.whl.

File metadata

  • Download URL: makeobj-0.9-py2.py3-none-any.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.9

File hashes

Hashes for makeobj-0.9-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 85e0235c731120dd5a7d967ec687f3704161e2825ddaf2b36e134790ae7a506f
MD5 a7ab3c5479fdae372834977db668947a
BLAKE2b-256 796324b029f3ebae4f3936ecf6eef211f18900bc26c2314b089853d7b985b48e

See more details on using hashes here.

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