attrs/README.rst

136 lines
5.3 KiB
ReStructuredText
Raw Normal View History

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://img.shields.io/badge/Docs-Read%20The%20Docs-black" alt="Documentation" />
2020-11-20 09:03:39 +00:00
</a>
<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>
<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>
</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
``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>`_).
`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-badge>`_ for Mars missions since 2020!
2016-08-15 15:24:09 +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
.. 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
>>> @define
... class SomeClass:
... a_number: int = 42
2021-12-25 14:15:10 +00:00
... list_of_numbers: list[int] = Factory(list)
...
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
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])
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
>>> asdict(sc)
2017-05-22 22:32:17 +00:00
{'a_number': 1, 'list_of_numbers': [1, 2, 3]}
2017-05-22 22:32:17 +00:00
>>> SomeClass()
SomeClass(a_number=42, list_of_numbers=[])
>>> 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
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__``,
- a equality-checking methods,
2015-01-28 15:28:47 +00:00
- an initializer,
- 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-27 07:33:39 +00:00
This example uses ``attrs``'s `modern APIs <https://www.attrs.org/en/stable/api.html#next-generation-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.
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
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
============
On the tin, ``attrs`` might remind you of ``dataclasses`` (and indeed, ``dataclasses`` are a descendant 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>`_.
.. -getting-help-
2017-05-23 00:56:24 +00:00
2017-10-19 10:05:45 +00:00
Getting Help
============
2021-10-28 05:11:16 +00:00
Please use the ``python-attrs`` tag on `Stack Overflow <https://stackoverflow.com/questions/tagged/python-attrs>`_ to get help.
2017-10-19 10:05:45 +00:00
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
.. -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,
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
Its rigorously tested on Python 2.7, 3.5+, and PyPy.
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!
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>`_