2015-01-27 16:53:17 +00:00
.. _api:
API
===
2015-01-28 13:36:11 +00:00
.. currentmodule :: attr
`` attrs `` works by decorating a class using :func: `attr.s` and then optionally defining attributes on the class using :func: `attr.ib` .
2015-01-28 15:02:18 +00:00
.. note ::
When this documentation speaks about "`` attrs `` attributes" it means those attributes that are defined using :func: `attr.ib` in the class body.
2015-01-28 15:28:47 +00:00
What follows is the API explanation, if you'd like a more hands-on introduction, have a look at :doc: `examples` .
2015-01-28 13:36:11 +00:00
Core
----
2015-02-20 12:29:47 +00:00
.. autofunction :: attr.s(these=None, repr_ns=None, repr=True, cmp=True, hash=True, init=True)
2015-01-28 13:36:11 +00:00
2015-01-29 09:17:08 +00:00
.. note ::
`` attrs `` also comes with a less playful alias `` attr.attributes `` .
2015-02-08 11:32:32 +00:00
For example:
.. doctest ::
>>> import attr
>>> @attr.s
... class C(object):
... _private = attr.ib()
>>> C(private=42)
C(_private=42)
>>> class D(object):
... def __init__(self, x):
... self.x = x
>>> D(1)
<D object at ...>
2015-02-20 12:29:47 +00:00
>>> D = attr.s(these={"x": attr.ib()}, init=False)(D)
2015-02-08 11:32:32 +00:00
>>> D(1)
D(x=1)
2015-01-28 13:36:11 +00:00
.. autofunction :: attr.ib
2015-01-29 09:17:08 +00:00
.. note ::
`` attrs `` also comes with a less playful alias `` attr.attr `` .
2015-01-28 13:36:11 +00:00
2015-01-29 11:20:17 +00:00
.. autoclass :: attr.Attribute
Instances of this class are frequently used for introspection purposes like:
2015-01-30 07:57:33 +00:00
- Class attributes on `` attrs `` -decorated classes *after* `` @attr.s `` has been applied.
2015-03-23 08:16:43 +00:00
- :func: `fields` returns a tuple of them.
2015-01-29 11:20:17 +00:00
- Validators get them passed as the first argument.
2015-01-30 07:57:33 +00:00
.. warning ::
You should never instantiate this class yourself!
2015-01-29 11:20:17 +00:00
.. doctest ::
>>> import attr
>>> @attr.s
... class C(object):
... x = attr.ib()
>>> C.x
2015-09-16 15:55:17 +00:00
Attribute(name='x', default=NOTHING, validator=None, repr=True, cmp=True, hash=True, init=True, convert=None)
2015-01-29 22:10:56 +00:00
2015-01-30 07:57:33 +00:00
.. autofunction :: attr.make_class
This is handy if you want to programmatically create classes.
For example:
.. doctest ::
>>> C1 = attr.make_class("C1", ["x", "y"])
>>> C1(1, 2)
C1(x=1, y=2)
>>> C2 = attr.make_class("C2", {"x": attr.ib(default=42),
... "y": attr.ib(default=attr.Factory(list))})
>>> C2()
C2(x=42, y=[])
2015-02-20 12:29:47 +00:00
2015-01-29 22:10:56 +00:00
.. autoclass :: attr.Factory
For example:
.. doctest ::
>>> @attr.s
... class C(object):
... x = attr.ib(default=attr.Factory(list))
>>> C()
C(x=[])
2015-01-29 11:20:17 +00:00
2015-01-28 13:36:11 +00:00
Helpers
-------
`` attrs `` comes with a bunch of helper methods that make the work with it easier:
2015-01-29 20:55:25 +00:00
.. autofunction :: attr.fields
2015-01-28 13:36:11 +00:00
For example:
.. doctest ::
>>> @attr.s
... class C(object):
... x = attr.ib()
... y = attr.ib()
2015-01-29 20:55:25 +00:00
>>> attr.fields(C)
2015-09-16 15:55:17 +00:00
(Attribute(name='x', default=NOTHING, validator=None, repr=True, cmp=True, hash=True, init=True, convert=None), Attribute(name='y', default=NOTHING, validator=None, repr=True, cmp=True, hash=True, init=True, convert=None))
2015-01-28 13:36:11 +00:00
.. autofunction :: attr.has
For example:
.. doctest ::
>>> @attr.s
... class C(object):
... pass
>>> attr.has(C)
True
>>> attr.has(object)
False
2015-01-29 09:17:08 +00:00
2015-01-29 20:50:07 +00:00
.. autofunction :: attr.asdict
2015-01-28 13:36:11 +00:00
For example:
.. doctest ::
>>> @attr.s
... class C(object):
... x = attr.ib()
... y = attr.ib()
2015-01-29 20:50:07 +00:00
>>> attr.asdict(C(1, C(2, 3)))
2015-01-28 13:36:11 +00:00
{'y': {'y': 3, 'x': 2}, 'x': 1}
2015-01-29 09:17:08 +00:00
2015-02-20 15:34:21 +00:00
`` attrs `` comes with some handy helpers for filtering:
.. autofunction :: attr.filters.include
.. autofunction :: attr.filters.exclude
2015-01-29 19:50:42 +00:00
.. autofunction :: assoc
For example:
.. doctest ::
>>> @attr.s
... class C(object):
... x = attr.ib()
... y = attr.ib()
>>> i1 = C(1, 2)
>>> i1
C(x=1, y=2)
>>> i2 = attr.assoc(i1, y=3)
>>> i2
C(x=1, y=3)
>>> i1 == i2
False
2015-02-02 13:04:47 +00:00
.. autofunction :: validate
2015-02-02 11:13:11 +00:00
For example:
.. doctest ::
>>> @attr.s
... class C(object):
... x = attr.ib(validator=attr.validators.instance_of(int))
>>> i = C(1)
>>> i.x = "1"
2015-02-02 13:04:47 +00:00
>>> attr.validate(i)
2015-02-02 11:13:11 +00:00
Traceback (most recent call last):
...
2015-02-20 12:29:47 +00:00
TypeError: ("'x' must be <type 'int'> (got '1' that is a <type 'str'>).", Attribute(name='x', default=NOTHING, validator=<instance_of validator for type <type 'int'>>, repr=True, cmp=True, hash=True, init=True), <type 'int'>, '1')
2015-02-02 11:13:11 +00:00
2015-02-20 10:30:46 +00:00
Validators can be globally disabled if you want to run them only in development and tests but not in production because you fear their performance impact:
.. autofunction :: set_run_validators
.. autofunction :: get_run_validators
2015-01-29 11:20:17 +00:00
.. _api_validators:
Validators
----------
`` attrs `` comes with some common validators within the `` attrs.validators `` module:
.. autofunction :: attr.validators.instance_of
2015-01-28 13:36:11 +00:00
2015-01-29 11:20:17 +00:00
For example:
.. doctest ::
>>> @attr.s
... class C(object):
... x = attr.ib(validator=attr.validators.instance_of(int))
>>> C(42)
C(x=42)
>>> C("42")
Traceback (most recent call last):
...
2015-01-29 22:10:56 +00:00
TypeError: ("'x' must be <type 'int'> (got '42' that is a <type 'str'>).", Attribute(name='x', default=NOTHING, validator=<instance_of validator for type <type 'int'>>), <type 'int'>, '42')
2015-07-09 23:14:32 +00:00
>>> C(None)
Traceback (most recent call last):
...
TypeError: ("'x' must be <type 'int'> (got None that is a <type 'NoneType'>).", Attribute(name='x', default=NOTHING, validator=<instance_of validator for type <type 'int'>>, repr=True, cmp=True, hash=True, init=True), <type 'int'>, None)
2015-01-29 18:04:23 +00:00
.. autofunction :: attr.validators.provides
2015-07-09 23:14:32 +00:00
.. autofunction :: attr.validators.optional
For example:
.. doctest ::
>>> @attr.s
... class C(object):
... x = attr.ib(validator=attr.validators.optional(attr.validators.instance_of(int)))
>>> C(42)
C(x=42)
>>> C("42")
Traceback (most recent call last):
...
TypeError: ("'x' must be <type 'int'> (got '42' that is a <type 'str'>).", Attribute(name='x', default=NOTHING, validator=<instance_of validator for type <type 'int'>>), <type 'int'>, '42')
>>> C(None)
C(x=None)