this post was submitted on 20 Dec 2025
16 points (100.0% liked)

Python

7686 readers
5 users here now

Welcome to the Python community on the programming.dev Lemmy instance!

๐Ÿ“… Events

PastNovember 2023

October 2023

July 2023

August 2023

September 2023

๐Ÿ Python project:
๐Ÿ’“ Python Community:
โœจ Python Ecosystem:
๐ŸŒŒ Fediverse
Communities
Projects
Feeds

founded 2 years ago
MODERATORS
 

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.

top 2 comments
sorted by: hot top controversial new old

Great read. Enjoyed the comparison between JS and Python.

Had to guess DX means developer experience. Hey i live in a hut on the moon. We don't have youtube.

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.