Thanks to visit codestin.com
Credit goes to programming.dev

TL;DR Over the last several years, tools like uv, Pydantic, FastAPI, and type hints have made Python DX feel as modern as TypeScript, with similar performance and type safety.

  • logging_strict
    Codestin Search App
    Codestin Search App
    Codestin Search App
    1
    ·
    8 days ago

    btw use mypy AND pyright. The OP writes, mypy OR pyright.

    mypy – chokes on excessive number of overloads. Annoyingly runs forever.

    pyright – more verbose; finds issues mypy never will

    So when mypy broke had to use pyright. Then fixed mypy by ignoring a module and some configuration voodoo.