Pydantic Crash Course

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 พ.ย. 2024

ความคิดเห็น • 14

  • @iamrithmic
    @iamrithmic  2 ปีที่แล้ว +3

    🔴 - If you enjoyed this video. Please leave a like and subscribe :)

    • @nabinsaud4688
      @nabinsaud4688 2 ปีที่แล้ว

      Do some express typescript sir

  • @taghikhavari5983
    @taghikhavari5983 ปีที่แล้ว +1

    Great tutorial about Pydantic 🤘, awesome as always Fransis

    • @iamrithmic
      @iamrithmic  ปีที่แล้ว

      Taghi!! Thank you bro!

  • @TechVenturer
    @TechVenturer ปีที่แล้ว +2

    Very helpful video! thanks for making 👍

    • @iamrithmic
      @iamrithmic  ปีที่แล้ว

      You're more than welcome :)

  • @kevon217
    @kevon217 ปีที่แล้ว +2

    Great crash course!

    • @iamrithmic
      @iamrithmic  ปีที่แล้ว

      You are more than welcome!!

  • @papunmohanty5968
    @papunmohanty5968 2 ปีที่แล้ว

    Optional[level] seems like optional but it is actually not optional, it gives `None` if no value is specified during initialization
    instead of Optional we can use `Union[Level, None]` or `Level | None` (in >= python3.10)

    • @insanecbrotha
      @insanecbrotha ปีที่แล้ว

      Isn't this how optional values are defined in Python callable signatures? By supplying some default value, often None? :)

  • @kranthi.kumar.g
    @kranthi.kumar.g ปีที่แล้ว

    PydanticDeprecatedSince20:
    Pydantic V1 style `@validator` validators are deprecated.
    You should migrate to Pydantic V2 style `@field_validator` validators

    • @kranthi.kumar.g
      @kranthi.kumar.g ปีที่แล้ว

      applying print function on `values` gives `ValidationInfo` instance.
      from there `values.data` can be used to get the values as dict.

    • @kranthi.kumar.g
      @kranthi.kumar.g ปีที่แล้ว

      level: Optional[Level] = None

  • @kosmonautofficial296
    @kosmonautofficial296 ปีที่แล้ว

    Great video! I am looking forward to pydantic 2. Another things I like is the @validate_arguments decorator.