attrs/README.rst

99 lines
3.3 KiB
ReStructuredText
Raw Normal View History

2016-08-15 15:35:49 +00:00
=====================================
attrs: Attributes Without Boilerplate
=====================================
2015-01-27 16:53:17 +00:00
2015-12-19 12:04:01 +00:00
.. image:: https://readthedocs.org/projects/attrs/badge/?version=stable
2016-04-28 06:06:10 +00:00
:target: http://attrs.readthedocs.io/en/stable/?badge=stable
2015-12-19 12:04:01 +00:00
:alt: Documentation Status
.. image:: https://travis-ci.org/hynek/attrs.svg?branch=master
2015-01-27 16:53:17 +00:00
:target: https://travis-ci.org/hynek/attrs
:alt: CI status
.. image:: https://codecov.io/github/hynek/attrs/branch/master/graph/badge.svg
:target: https://codecov.io/github/hynek/attrs
:alt: Test Coverage
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 <http://nedbatchelder.com/blog/200605/dunder.html>`_ methods).
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
.. -spiel-end-
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
>>> @attr.s
... class C(object):
2015-01-29 21:32:41 +00:00
... x = attr.ib(default=42)
2015-01-29 22:16:07 +00:00
... y = attr.ib(default=attr.Factory(list))
...
... def hard_math(self, z):
... return self.x * self.y * z
2015-01-27 16:53:17 +00:00
>>> i = C(x=1, y=2)
>>> i
2015-01-27 22:08:55 +00:00
C(x=1, y=2)
>>> i.hard_math(3)
6
2015-01-27 16:53:17 +00:00
>>> i == C(1, 2)
True
>>> i != C(2, 1)
True
>>> attr.asdict(i)
2015-01-27 16:53:17 +00:00
{'y': 2, 'x': 1}
>>> C()
2015-01-27 22:08:55 +00:00
C(x=42, y=[])
2015-01-30 07:57:33 +00:00
>>> C2 = attr.make_class("C2", ["a", "b"])
>>> C2("foo", "bar")
C2(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 complete set of comparison 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
This gives you the power to use actual classes with actual types in your code instead of confusing ``tuple``\ s or confusingly behaving ``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
2016-08-15 15:24:09 +00:00
.. -testimonials-
2016-08-15 11:59:04 +00:00
Testimonials
============
Im 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 Ive see it used in.
-- Glyph Lefkowitz, inventor of Twisted and Software Developer at Rackspace in `The One Python Library Everyone Needs <https://glyph.twistedmatrix.com/2016/08/attrs.html>`_
I'm increasingly digging your attr.ocity. Good job!
-- Łukasz Langa, prolific CPython core developer and Production Engineer at Facebook
.. -end-
.. -project-information-
2016-08-15 11:59:04 +00:00
Project Information
===================
2015-01-27 16:53:17 +00:00
2016-08-18 10:21:44 +00:00
``attrs`` is released under the `MIT <http://choosealicense.com/licenses/mit/>`_ license,
its documentation lives at `Read the Docs <https://attrs.readthedocs.io/>`_,
the code on `GitHub <https://github.com/hynek/attrs>`_,
and the latest release on `PyPI <https://pypi.org/project/attrs/>`_.
Its rigorously tested on Python 2.7, 3.4+, and PyPy.