Structural pattern matching in Python 3.10

A critical but informative look at the new structural pattern matching feature in Python 3.10, with real-world code examples. Read more

Similar

Python Circular Imports

What is a Circular Dependency? A circular dependency occurs when two or more modules depend on each other. This is due to the fact that each module is defined in terms of the other (See Figure 1). For example: functionA(): functionB() And functionB(... (more…)

Read more »

Python and SQL: Better Together

Python and SQL: Better Together Python and SQL are complementary - we should focus on how best to integrate them rather than try to replace them! By Alex Monahan 2021-08-15 (Yes, this is the one date format to rule them all) LinkedIn Twitter @__alexmonaha... (more…)

Read more »