Skip to content
Python Classes Without Boilerplate
Python
Branch: master
Clone or download
pganssle and hynek Fixed frozen and cache_hash incompatibility (#612)
* Add xfailing test for frozen/cache_hash issue

This is a failing test for GH issue #611, with the xfail decorator to be
removed when the issue is fixed.

* Fix incompatibility between frozen and cache_hash

Fixes GH issue #611: serialization of a class with frozen=True and
cache_hash=True will now succeed rather than raising a
FrozenInstanceError.

Co-authored-by: Hynek Schlawack <hs@ox.cx>
Latest commit 9b5e988 Jan 13, 2020
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Fix links Oct 15, 2019
changelog.d Fixed frozen and cache_hash incompatibility (#612) Jan 13, 2020
docs Add missing exception to API docs Jan 6, 2020
src/attr Fixed frozen and cache_hash incompatibility (#612) Jan 13, 2020
tests Fixed frozen and cache_hash incompatibility (#612) Jan 13, 2020
.gitignore Ignore pip-wheel-metadata Feb 27, 2019
.pre-commit-config.yaml pre-commit autoupdate Dec 30, 2019
.readthedocs.yml fix and simplify docs CI Feb 25, 2019
AUTHORS.rst Consistently use "base class" and "subclass" (#436) Aug 29, 2018
CHANGELOG.rst Start 19.4.0 cycle Oct 15, 2019
LICENSE Gut docs for now Jan 27, 2015
MANIFEST.in Remove .coveragerc from MANIFEST.in Jan 6, 2020
README.rst
azure-pipelines.yml Add missing optional dep Jan 6, 2020
codecov.yml Use codecov.yml to stop comments (#397) Jun 19, 2018
conftest.py Split cmp into eq and order (#574) Sep 22, 2019
pyproject.toml Put coverage config into pyproject.toml Jan 6, 2020
setup.py Add version constraints for coverage Jan 9, 2020
tox.ini

README.rst

attrs Logo

attrs: Classes Without Boilerplate

Documentation Status CI Status Test Coverage Code style: black

attrs is the Python package that will bring back the joy of writing classes by relieving you from the drudgery of implementing object protocols (aka dunder methods).

Its main goal is to help you to write concise and correct software without slowing down your code.

For that, it gives you a class decorator and a way to declaratively define the attributes on that class:

>>> import attr

>>> @attr.s
... class SomeClass(object):
...     a_number = attr.ib(default=42)
...     list_of_numbers = attr.ib(factory=list)
...
...     def hard_math(self, another_number):
...         return self.a_number + sum(self.list_of_numbers) * another_number


>>> sc = SomeClass(1, [1, 2, 3])
>>> sc
SomeClass(a_number=1, list_of_numbers=[1, 2, 3])

>>> sc.hard_math(3)
19
>>> sc == SomeClass(1, [1, 2, 3])
True
>>> sc != SomeClass(2, [3, 2, 1])
True

>>> attr.asdict(sc)
{'a_number': 1, 'list_of_numbers': [1, 2, 3]}

>>> SomeClass()
SomeClass(a_number=42, list_of_numbers=[])

>>> C = attr.make_class("C", ["a", "b"])
>>> C("foo", "bar")
C(a='foo', b='bar')

After declaring your attributes attrs gives you:

  • a concise and explicit overview of the class's attributes,
  • a nice human-readable __repr__,
  • a complete set of comparison methods (equality and ordering),
  • an initializer,
  • and much more,

without writing dull boilerplate code again and again and without runtime performance penalties.

On Python 3.6 and later, you can often even drop the calls to attr.ib() by using type annotations.

This gives you the power to use actual classes with actual types in your code instead of confusing tuples or confusingly behaving namedtuples. Which in turn encourages you to write small classes that do one thing well. Never again violate the single responsibility principle just because implementing __init__ et al is a painful drag.

Testimonials

Amber Hawkie Brown, Twisted Release Manager and Computer Owl:

Writing a fully-functional class using attrs takes me less time than writing this testimonial.

Glyph Lefkowitz, creator of Twisted, Automat, and other open source software, in The One Python Library Everyone Needs:

I’m looking forward to is being able to program in Python-with-attrs everywhere. It exerts a subtle, but positive, design influence in all the codebases I’ve see it used in.

Kenneth Reitz, creator of Requests (on paper no less!):

attrs—classes for humans. I like it.

Łukasz Langa, creator of Black, prolific Python core developer, and release manager for Python 3.8 and 3.9:

I'm increasingly digging your attr.ocity. Good job!

Getting Help

Please use the python-attrs tag on StackOverflow to get help.

Answering questions of your fellow developers is also great way to help the project!

Project Information

attrs is released under the MIT license, its documentation lives at Read the Docs, the code on GitHub, and the latest release on PyPI. It’s rigorously tested on Python 2.7, 3.5+, and PyPy.

We collect information on third-party extensions in our wiki. Feel free to browse and add your own!

If you'd like to contribute to attrs you're most welcome and we've written a little guide to get you started!

You can’t perform that action at this time.