Tag: SQLAlchemy

Python’s SQLAlchemy: 3 powerful features you need to know

Python SQLAlchemy is a powerful and flexible Object-Relational Mapping (ORM) library that simplifies database interactions in Python applications. It provides developers with a high-level, Pythonic interface to interact with relational databases, allowing them to work with databases using ...

10x faster python test iteration via fork(2)

It’s ideal to get feedback on your code faster — to make a code change and see the result instantly. But, as projects get larger, reload times get longer. Each incremental dependency or bootstrap code block that adds 200ms feels worth it, but 50 of them later and it takes 10 seconds to s...