python-attrs
Port variant py37
Summary Classes Without Boilerplate (PY37)
Package version 20.3.0
Homepage https://www.attrs.org/
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants py38
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 10 NOV 2020, 12:53:44 UTC
Port created 06 AUG 2019, 14:27:27 UTC
Subpackage Descriptions
single :alt: Documentation Status :alt: CI Status :alt: Test Coverage :alt: Code style: black .. teaser-begin 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). Its main goal is to help you to write **concise** and **correct** software without slowing down your code. .. teaser-end For that, it gives you a class decorator and a way to declaratively define the attributes on that class: .. -code-begin- .. code-block:: pycon >>> import attr >>> @attr.s ... class SomeClass(object): ... a_number = attr.ib(default=42) ... list_of_numbers = attr.ib(factory=list) ... ... def hard_math(self, another_number): ... return self.a_number + sum(self.list_of_numbers) * another_number >>> sc = SomeClass(1, [1, 2, 3]) >>> sc SomeClass(a_number=1, list_of_numbers=[1, 2, 3]) >>> sc.hard_math(3) 19 >>> sc == SomeClass(1, [1, 2, 3]) True >>> sc != SomeClass(2, [3, 2, 1]) True >>> attr.asdict(sc) {'a_number': 1, 'list_of_numbers': [1, 2, 3]} >>> SomeClass() SomeClass(a_number=42, list_of_numbers=[]) >>> C = attr.make_class("C", ["a", "b"]) >>> C("foo", "bar") C(a='foo', b='bar') After *declaring* your attributes attrs gives you: - a concise and explicit overview of the class's attributes, - a nice human-readable __repr__, - a complete set of comparison methods (equality and ordering), - an initializer, - and much more, *without* writing dull boilerplate code again and again and *without* runtime performance penalties. On Python 3.6 and later, you can often even drop the calls to ``attr.ib()`` by using [type annotations]. 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. Which in turn encourages you to write *small classes* that do [one thing well]. Never again violate the [single responsibility principle] just because implementing __init__ et al is a painful drag. .. -getting-help- Getting Help ============ Please use the ``python-attrs`` tag on [StackOverflow] to get help. Answering questions of your fellow developers is also a great way to help the project! .. -project-information- Project Information =================== attrs is released under the [MIT] license, its documentation lives at [Read the Docs], the code on [GitHub], and the latest release on [PyPI]. It’s rigorously tested on Python 2.7, 3.5+, and PyPy.
Configuration Switches (platform-specific settings discarded)
PY37 ON Build using Python 3.7 PY38 OFF Build using Python 3.8
Package Dependencies by Type
Build and Runtime python37:single:standard
python-setuptools:single:py37
Download groups
main mirror://PYPI/a/attrs
Distribution File Information
832aa3cde19744e49938b91fea06d69ecb9e649c93ba974535d08ad92164f700 164523 attrs-20.3.0.tar.gz
Ports that require python-attrs:py37
python-cattrs:py37 Composable complex class support for attrs (PY37)
python-jsonschema:py37 Alternate implementation of JSON Schema (PY37)
python-statmake:py37 Applies STAT Stylespace to a variable font (PY37)
python-ufoLib2:py37 UfoLib2 is a UFO font processing library (PY37)