Show HN: Typesafe async friendly unopinionated enhancements to SQLAlchemy Core

4 hours ago (github.com)

## Why?

- ORMs are magical, but it's not always a feature. Sometimes, we crave for familiar.

- SQLAlchemy Core is powerful but `table.c.column` breaks static type checking and has runtime overhead. This library provides a better way to define tables while keeping all of SQLAlchemy's flexibility. See Table Factory.

- The idea of sessions can feel too magical and opinionated. This library removes the magic and opinions and takes you to back to familiar transactions's territory, providing multiple un-opinionated APIs to deal with it. See Wrappers and Decorators.

## Demos:

- https://github.com/sayanarijit/fastapi-sqla-fancy-core-examp...