
Show HN: Django-Style Queries for SQLAlchemyHey!Wanted to share the project I've worked on for more than a year. The core was done last summer but since then I couldn't find time to implement all the functionality I had in mind. But a few months ago, I made myself sit down and plan the introduction of the remaining things.And with the release of 0.7.0 I can say that 85 percent is done and I'm ready to share it.I wrote a Python package which serves as a layer on top of SQLAlchemy and allows you to write Django-style queries. The idea came from work where we had an additional helper file which had methods for select, filters and other simple queries. When we didn't use those helper methods we wrote queries using the SQLAlchemy syntax which took a lot of time and code space. Especially the fact that you need to specify a model in filtering.In the end I decided to move all those helper methods to a package thereby we can just import them from one place. Django style format was selected because, personally, I found it easy to read an
