pombredanne / characteristic

Python attributes without boilerplate

Home Page:https://characteristic.readthedocs.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

characteristic: Python attributes without boilerplate.

Latest Version CI status Current coverage

characteristic is an MIT-licensed Python package with class decorators that ease the chores of implementing the most common attribute-related object protocols.

You just specify the attributes to work with and characteristic gives you:

  • a nice human-readable __repr__,
  • a complete set of comparison methods,
  • and a kwargs-based initializer (that cooperates with your existing one)

without writing dull boilerplate code again and again.

This gives you the power to use actual classes with actual types in your code instead of confusing tuples or confusingly behaving namedtuples.

So put down that type-less data structures and welcome some class into your life!

characteristic’s documentation lives at Read the Docs, the code on GitHub. It’s rigorously tested on Python 2.6, 2.7, 3.3+, and PyPy.

About

Python attributes without boilerplate

https://characteristic.readthedocs.org/

License:MIT License