Ashar Maliktechlove.hashnode.dev·Sep 30, 2023Data Classes: A convenient way to create classes in PythonIf you don't like to write boilerplate code while creating a class in Python, then you will love data classes in Python. Data class is a convenient way of creating a class in Python. It is just like a regular class in Python but when you create a dat...34 readsPython
Guillermo Alcantara Gonzalezecho9k.hashnode.dev·Jun 29, 2023Configuration Management in Python: A Quick Guide to Data Classes, Type Safety, and ValidationBy the end of this guide, you'll have a clear understanding of how to leverage Python's data classes to create robust, type-safe configuration management systems. 1. Introduction to Python Data Classes Data classes are a relatively new addition to Py...Python