2020-11-20 09:03:39 +00:00
.. raw :: html
<p align="center">
<a href="https://www.attrs.org/">
<img src="./docs/_static/attrs_logo.svg" width="35%" alt="attrs" />
</a>
</p>
<p align="center">
<a href="https://www.attrs.org/en/stable/?badge=stable">
<img src="https://readthedocs.org/projects/attrs/badge/?version=stable" alt="Documentation Status" />
</a>
<a href="https://github.com/python-attrs/attrs/actions?workflow=CI">
<img src="https://github.com/python-attrs/attrs/workflows/CI/badge.svg?branch=master" alt="CI Status" />
</a>
<a href="https://codecov.io/github/python-attrs/attrs">
<img src="https://codecov.io/github/python-attrs/attrs/branch/master/graph/badge.svg" alt="Test Coverage" />
</a>
<a href="https://github.com/psf/black">
<img src="https://img.shields.io/badge/code%20style-black-000000.svg" alt="Code style: black" />
</a>
</p>
2018-06-10 17:40:07 +00:00
2015-01-27 21:41:24 +00:00
.. teaser-begin
2015-01-27 16:53:17 +00:00
2017-03-24 09:28:28 +00:00
`` 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 <https://nedbatchelder.com/blog/200605/dunder.html> `_ methods).
2016-08-15 15:24:09 +00:00
2016-08-17 11:28:00 +00:00
Its main goal is to help you to write **concise** and **correct** software without slowing down your code.
2016-08-15 15:24:09 +00:00
2020-03-08 06:30:03 +00:00
.. teaser-end
2016-08-15 15:24:09 +00:00
For that, it gives you a class decorator and a way to declaratively define the attributes on that class:
.. -code-begin-
2015-01-27 16:53:17 +00:00
.. code-block :: pycon
>>> import attr
2018-03-17 11:39:05 +00:00
2015-01-27 16:53:17 +00:00
>>> @attr.s
2017-05-22 22:32:17 +00:00
... class SomeClass(object):
... a_number = attr.ib(default=42)
2018-07-28 11:05:12 +00:00
... list_of_numbers = attr.ib(factory=list)
2016-08-30 10:12:02 +00:00
...
2017-05-22 22:32:17 +00:00
... def hard_math(self, another_number):
... return self.a_number + sum(self.list_of_numbers) * another_number
2018-03-17 11:39:05 +00:00
2017-05-22 22:32:17 +00:00
>>> sc = SomeClass(1, [1, 2, 3])
>>> sc
SomeClass(a_number=1, list_of_numbers=[1, 2, 3])
2018-03-17 11:39:05 +00:00
2017-05-22 22:32:17 +00:00
>>> sc.hard_math(3)
19
>>> sc == SomeClass(1, [1, 2, 3])
2015-01-27 16:53:17 +00:00
True
2017-05-22 22:32:17 +00:00
>>> sc != SomeClass(2, [3, 2, 1])
2015-01-27 16:53:17 +00:00
True
2018-03-17 11:39:05 +00:00
2017-05-22 22:32:17 +00:00
>>> attr.asdict(sc)
{'a_number': 1, 'list_of_numbers': [1, 2, 3]}
2018-03-17 11:39:05 +00:00
2017-05-22 22:32:17 +00:00
>>> SomeClass()
SomeClass(a_number=42, list_of_numbers=[])
2018-03-17 11:39:05 +00:00
2017-02-04 10:46:10 +00:00
>>> C = attr.make_class("C", ["a", "b"])
>>> C("foo", "bar")
C(a='foo', b='bar')
2015-01-27 16:53:17 +00:00
2015-01-29 09:17:08 +00:00
2016-08-15 11:59:04 +00:00
After *declaring* your attributes `` attrs `` gives you:
2015-01-27 16:53:17 +00:00
2016-08-15 11:59:04 +00:00
- a concise and explicit overview of the class's attributes,
2015-01-27 16:53:17 +00:00
- a nice human-readable `` __repr__ `` ,
2019-09-22 13:07:19 +00:00
- a complete set of comparison methods (equality and ordering),
2015-01-28 15:28:47 +00:00
- an initializer,
2016-08-17 11:28:00 +00:00
- and much more,
2015-01-27 16:53:17 +00:00
2016-08-15 11:59:04 +00:00
*without* writing dull boilerplate code again and again and *without* runtime performance penalties.
2015-01-27 16:53:17 +00:00
2018-08-20 04:47:37 +00:00
On Python 3.6 and later, you can often even drop the calls to `` attr.ib() `` by using `type annotations <https://www.attrs.org/en/latest/types.html> `_ .
2018-07-28 11:05:12 +00:00
2018-08-20 04:47:37 +00:00
This gives you the power to use actual classes with actual types in your code instead of confusing `` tuple ` ` \ s or ` confusingly behaving <https://www.attrs.org/en/stable/why.html#namedtuples> ` _ ` ` namedtuple ` ` \ s.
2016-08-15 11:59:04 +00:00
Which in turn encourages you to write *small classes* that do `one thing well <https://www.destroyallsoftware.com/talks/boundaries> `_ .
Never again violate the `single responsibility principle <https://en.wikipedia.org/wiki/Single_responsibility_principle> `_ just because implementing `` __init__ `` et al is a painful drag.
2015-01-27 16:53:17 +00:00
2016-08-15 11:59:04 +00:00
2020-03-08 06:30:03 +00:00
.. -getting-help-
2017-05-23 00:56:24 +00:00
2017-10-19 10:05:45 +00:00
Getting Help
============
Please use the `` python-attrs `` tag on `StackOverflow <https://stackoverflow.com/questions/tagged/python-attrs> `_ to get help.
2020-10-02 09:00:34 +00:00
Answering questions of your fellow developers is also a great way to help the project!
2017-10-19 10:05:45 +00:00
2016-08-15 11:59:04 +00:00
2020-03-08 06:30:03 +00:00
.. -project-information-
2016-08-15 11:59:04 +00:00
Project Information
===================
2015-01-27 16:53:17 +00:00
2017-02-20 06:43:48 +00:00
`` attrs `` is released under the `MIT <https://choosealicense.com/licenses/mit/> `_ license,
2018-08-20 04:47:37 +00:00
its documentation lives at `Read the Docs <https://www.attrs.org/> `_ ,
2017-02-20 06:43:48 +00:00
the code on `GitHub <https://github.com/python-attrs/attrs> `_ ,
2016-08-18 10:21:44 +00:00
and the latest release on `PyPI <https://pypi.org/project/attrs/> `_ .
2020-01-06 11:32:28 +00:00
It’ s rigorously tested on Python 2.7, 3.5+, and PyPy.
2017-03-04 07:39:18 +00:00
2018-03-17 11:39:05 +00:00
We collect information on **third-party extensions** in our `wiki <https://github.com/python-attrs/attrs/wiki/Extensions-to-attrs> `_ .
Feel free to browse and add your own!
2018-08-20 04:47:37 +00:00
If you'd like to contribute to `` attrs `` you're most welcome and we've written `a little guide <https://www.attrs.org/en/latest/contributing.html> `_ to get you started!
2020-07-21 14:06:22 +00:00
`` attrs `` for Enterprise
------------------------
Available as part of the Tidelift Subscription.
2020-07-22 10:58:11 +00:00
The maintainers of `` attrs `` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source packages you use to build your applications.
2020-07-21 14:06:22 +00:00
Save time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use.
`Learn more. <https://tidelift.com/subscription/pkg/pypi-attrs?utm_source=pypi-attrs&utm_medium=referral&utm_campaign=enterprise&utm_term=repo> `_