We're sorry but this page doesn't work properly without JavaScript enabled. Please enable it to continue.
Feedback

Simple data validation and setting management with Pydantic

Formal Metadata

Title
Simple data validation and setting management with Pydantic
Title of Series
Number of Parts
112
Author
Contributors
License
CC Attribution - NonCommercial - ShareAlike 4.0 International:
You are free to use, adapt and copy, distribute and transmit the work or content in adapted or unchanged form for any legal and non-commercial purpose as long as the work is attributed to the author in the manner specified by the author or licensor and the work or content is shared also in adapted form only under the conditions of this
Identifiers
Publisher
Release Date
Language

Content Metadata

Subject Area
Genre
Abstract
When processing data, validating its structure and its type is critical. Bad record types or changes in structure can often result in processing errors or worst in wrong data output. Yet, solving this problem cleanly and efficiently can be challenging. It often results in complicated code logic and increases complexity; consequently decreasing code readability. Pydantic is an efficient and elegant answer to these challenges We expect you'll leave this talk with a good understanding of: - Existing challenges in data validation - What Pydantic Models, Validators, and Convertors are - How to leverage Pydantic in your day to day (using real-life examples) - [Bonnus] How to use Code Generation to create Pydantic Models from any data sources