Explore >> Select a destination


You are here

kishstats.com
| | blog.florimondmanca.com
1.6 parsecs away

Travel
| | Type hints add optional static typing to Python 3.5+, and I love them. I now use annotated variables throughout my projects.
| | initialcommit.com
3.3 parsecs away

Travel
| | In this article, we will explore the all() Python function and look at how it handles various data structures and data types.
| | hackycode.com
4.4 parsecs away

Travel
| | The Problem I was recently working on a project and decided to use Tortoise ORM. I appreciated the small footprint, ease of use, and the first class async support. However, I was disappointed to find that it didn't support parameter hints when creating an instance of a model. The IDE only shows **kwargs when creating a Tortoise ORM model instance Working Towards a Solution Libraries like PyDantic and msgspec already support this feature, so I knew it must be possible.
| | www.justus.pw
21.5 parsecs away

Travel
| [AI summary] This article explains how to use Python's disassembly library to inspect and understand CPython's byte code, including examples of disassembling a simple function.