Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!

Question list filters

Filter by
Sorted by
Tagged with
Filter by Employee ID
Score of 1
1 answer
130 views

I get the following error: $ python attrs_subclass_test.py Traceback (most recent call last): File "attrs_subclass_test.py", line 23, in <module> attrs_sub = AttrsSub(name='...
Score of 2
1 answer
124 views

Similar to Decorator for attrs converter, please see this case: from attrs import define, field, Factory @define class MyClass: name = field(default = Factory(_name_factory, takes_self=True), ...
Score of 1
2 answers
168 views

I am building a small python application to learn Domain-Driven-Design (DDD) approaches. Therefore I am using a dataclass/attrs class as my domain model and also use this class to imperatively model ...
Score of 1
1 answer
76 views

I want to use validators to issue warnings for notable but non-catastrophic issues on classes. However, by default warnings will point to the place where the warning was defined, and I want to have ...
Score of 0
1 answer
184 views

I really like the way how one can define classes via the attrs library. In particular how the usual syntax of python class variables is hijacked to define instance variables. But is there a way to get ...
Score of 0
1 answer
96 views

I'm trying to use attrs to define a class that has an attribute that can be either a str or an int. The or_ validator see;s to be exactly what I need but mypy throws an error when using the exact ...
Score of 0
1 answer
141 views

I have been an extensive user of attrs for two years, but I have discovered cattrs only recently so my question may sound naive. In my codes, I often use a class method to instantiate an attrs object ...
Score of 0
2 answers
97 views

I find myself often writing attrs classes that looks something like this: import attrs from some_app import Client @attrs.mutable class Foo: _credentials: str = attrs.field(validator=attrs....
Score of 0
1 answer
118 views

The built-in enum provides a way to create enums of primitive types (IntEnum, StrEnum). I'd like to create an enum of structured objects. One way to do that is with dataclass, and it works: from ...
Score of 0
1 answer
225 views

Using the complicated example as here https://www.attrs.org/en/stable/api.html#attrs.converters.default_if_none, I get the mypy error: Unsupported converter, only named functions, types and lambdas ...
Score of 0
2 answers
954 views

mypy runs perfectly on terminal, but when running on pre-commit stage, I am getting the error Unexpected keyword argument for every property in my class from attrs import define, field @define( ...
Score of 0
1 answer
155 views

Hi I have a model that contain several items, now all of the items have a set of shared properties: id, name, parent. In addition some of this items are meant only to contain other items. Some are ...
Score of 0
1 answer
72 views

I keep getting warnings from pylint while trying to iterate over an attribute in a class that uses the attrs package. from typing import List from attrs import define, Factory @define class MyClass: ...
Score of 0
0 answers
72 views

I am attempting to automatically create converter functions that require metadata to operate. I am seeing odd behavior when a lambda function is used for the converter. import attrs def add(x, y=10): ...
Score of 1
1 answer
299 views

The documentation for the python Attrs, the Automatic Field Transformation and Modification section states ...You can add converters, change types, and even remove attributes completely or create new ...

15 30 50 per page
1
2 3 4 5
12