Skip to content

16th August 2021

Computer Science

Programming

(../python_basics.md)

(../computer_science/programming/python/pydantic.md)

  • New: Pydantic.

    (https://pydantic-docs.helpmanual.io/): data validation and settings management using python type annotations.

    Enforces type hints at runtime, and provides user friendly errors when data is invalid.

  • New: Validators.

    Custom validation and complex relationships between objects can be achieved using the validator decorator.