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">
2021-06-01 09:46:40 +00:00
<img src="https://img.shields.io/badge/Docs-Read%20The%20Docs-black" alt="Documentation" />
2020-11-20 09:03:39 +00:00
</a>
2021-06-01 10:15:23 +00:00
<a href="https://github.com/python-attrs/attrs/blob/main/LICENSE">
<img src="https://img.shields.io/badge/license-MIT-C06524" alt="License: MIT" />
</a>
2021-06-01 09:46:40 +00:00
<a href="https://pypi.org/project/attrs/">
<img src="https://img.shields.io/pypi/v/attrs" />
2020-11-20 09:03:39 +00:00
</a>
2022-04-07 13:36:44 +00:00
<a href="https://pepy.tech/project/attrs">
<img src="https://static.pepy.tech/personalized-badge/attrs?period=month&units=international_system&left_color=grey&right_color=blue&left_text=Downloads%20/%20Month" alt="Downloads per month" />
</a>
2020-11-20 09:03:39 +00:00
</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
2021-11-24 08:39:41 +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 methods <https://www.attrs.org/en/latest/glossary.html#term-dunder-methods> `_ ).
2022-07-27 14:35:21 +00:00
`Trusted by NASA <https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/personalizing-your-profile#list-of-qualifying-repositories-for-mars-2020-helicopter-contributor-achievement> `_ for Mars missions since 2020!
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
2021-12-25 14:15:10 +00:00
>>> from attrs import asdict, define, make_class, Factory
2018-03-17 11:39:05 +00:00
2021-11-22 06:35:36 +00:00
>>> @define
2021-11-10 06:15:48 +00:00
... class SomeClass:
... a_number: int = 42
2021-12-25 14:15:10 +00:00
... list_of_numbers: list[int] = 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
2021-11-22 06:35:36 +00:00
>>> asdict(sc)
2017-05-22 22:32:17 +00:00
{'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
2021-11-22 06:35:36 +00:00
>>> C = make_class("C", ["a", "b"])
2017-02-04 10:46:10 +00:00
>>> 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__ `` ,
2021-12-29 19:04:27 +00:00
- equality-checking methods,
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
2021-12-24 13:33:02 +00:00
**Hate type annotations** !?
No problem!
2021-12-25 13:46:17 +00:00
Types are entirely **optional** with `` attrs `` .
2021-12-25 14:15:10 +00:00
Simply assign `` attrs.field() `` to the attributes instead of annotating them with types.
2021-12-24 13:33:02 +00:00
2021-12-27 07:35:08 +00:00
----
2021-12-29 13:08:18 +00:00
This example uses `` attrs `` 's modern APIs that have been introduced in version 20.1.0, and the `` attrs `` package import name that has been added in version 21.3.0.
2021-12-27 07:33:39 +00:00
The classic APIs (`` @attr.s `` , `` attr.ib `` , plus their serious business aliases) and the `` attr `` package import name will remain **indefinitely** .
2016-08-15 11:59:04 +00:00
2021-11-24 08:39:41 +00:00
Please check out `On The Core API Names <https://www.attrs.org/en/latest/names.html> `_ for a more in-depth explanation.
2021-11-24 08:42:17 +00:00
Data Classes
============
2022-01-01 14:26:50 +00:00
On the tin, `` attrs `` might remind you of `` dataclasses `` (and indeed, `` dataclasses `` `are a descendant <https://hynek.me/articles/import-attrs/> `_ of `` attrs `` ).
2021-12-28 11:24:51 +00:00
In practice it does a lot more and is more flexible.
2021-11-24 08:42:17 +00:00
For instance it allows you to define `special handling of NumPy arrays for equality checks <https://www.attrs.org/en/stable/comparison.html#customization> `_ , or allows more ways to `plug into the initialization process <https://www.attrs.org/en/stable/init.html#hooking-yourself-into-initialization> `_ .
For more details, please refer to our `comparison page <https://www.attrs.org/en/stable/why.html#data-classes> `_ .
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
2022-07-27 14:11:24 +00:00
- **License** : `MIT <https://choosealicense.com/licenses/mit/> `_
- **PyPI** : https://pypi.org/project/attrs/
- **Source Code** : https://github.com/python-attrs/attrs
- **Documentation** : https://www.attrs.org/
- **Changelog** : https://www.attrs.org/en/stable/changelog.html
- **Get Help** : please use the `` python-attrs `` tag on `StackOverflow <https://stackoverflow.com/questions/tagged/python-attrs> `_
- **Third-party Extensions** : https://github.com/python-attrs/attrs/wiki/Extensions-to-attrs
2022-07-27 14:32:04 +00:00
- **Supported Python Versions** : 3.5 and later (last 2.7-compatible release is `21.4.0 <https://pypi.org/project/attrs/21.4.0/> `_ )
2018-03-17 11:39:05 +00:00
2021-11-25 08:31:17 +00:00
If you'd like to contribute to `` attrs `` you're most welcome and we've written `a little guide <https://github.com/python-attrs/attrs/blob/main/.github/CONTRIBUTING.md> `_ 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> `_