this post was submitted on 02 Nov 2024
263 points (98.2% liked)

Python

6337 readers
8 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 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 3 days ago (2 children)

types are always ignored at runtime, they're only useful when developing

[–] [email protected] 5 points 3 days ago (2 children)

Yeah, they're useful when developing, which is why it's so frustrating when libraries don't implement types. I'm developing and I'm trying to use a tool that supposedly fits a use case I have, but the tool didn't come with instructions so it's practically useless to me. I could open the tool up and look at its guts to figure it out but are you kidding me no, I'm not going back to the stone age for your tool.

[–] [email protected] 1 points 19 hours ago

Check if there's a stub or types extension - https://pypi.org/search/?q=types

[–] [email protected] 2 points 1 day ago* (last edited 1 day ago)

basically sums up the opencv experience in Python.

great lib, very mediocre Python wrapper.

[–] [email protected] 1 points 2 days ago

Pydantic offers awesome runtime validation (using Rust).