ON Data Engineering
Python’s Data Classes a Data Engineer’s best friend
Data Engineering application of data classes
Data classes are a relatively new introduction to Python, first released in Python 3.7 which provides an abstraction layer leveraging type annotations to define container objects for data. Compared to a normal Python class, data classes make do…