Summaries/Python/Decorators.md
2022-08-09 21:04:44 +02:00

379 B

title updated created
Decorators 2022-04-03 12:04:11Z 2021-05-04 14:58:11Z

Decorators

Decorators explained

import attr

@attr.s(auto_attribs=True)
class Book(object):
    isbn: str
    name: str
    author: str
    published_year: int
    edition: int