python-autoclass icon indicating copy to clipboard operation
python-autoclass copied to clipboard

A python 3 library providing functions and decorators to automatically generate class code, such as constructor body or properties getters/setters along with optional support of validation contracts o...

Results 5 python-autoclass issues
Sort by recently updated
recently updated
newest added

This seems to happen with autodict on python 3.8 ? Git it from a log in valid8, did not yet reproduce it explicitly

bug

This PR successfully silences the error so autoclass works with Python 3.9. I have not investigated the code in depth to be cable to guarantee it as a full solution.

I'm looking at [datafiles](https://datafiles.readthedocs.io/en/latest/) I like the ORM mapping of yaml that dataclasses/datafiles provides but I also love the features that python-autoclass provides, however, I can't tell if they can...

#41 made it clear that a better default value for `autofields` could be provided when there are no other indications of fields anywhere (no explicit constructor, etc.)

enhancement

`@autodict` currently makes the class behave as a dict so that all atributes can also be accessed as dict items. - side remark: current implementation is maybe (?) overkill for...