Do we still need dataclasses? // PYDANTIC tutorial

💡 Here’s my FREE 7-step guide to help you consistently design great software: Pydantic is a very useful package that makes dealing with data much easier, similar to what Python’s built-in dataclasses do. Where Pydantic shines is in dealing with validating and sanitizing data. In this tutorial video I show you how it works, and when to choose Pydantic over dataclasses in your code projects. The code that I worked on in this video is available here:
Back to Top