[sqlalchemy] Re: The use of SQLAlchemy for a long term project

2015-04-18 Thread Jonathan Vanasco
As a heavy user, an occasional contributor, and the person who recently mined PyPi for all the historical SqlAlchemy data to generate the new release history matrix... I don't think you have anything to really worry about for long term use. The majority of updates over the past 7 years that

Re: [sqlalchemy] The use of SQLAlchemy for a long term project

2015-04-18 Thread Mike Bayer
On 4/17/15 6:58 PM, Van Klaveren, Brian N. wrote: Hi, I'm investigating the use and dependency on SQLAlchemy for a long-term astronomy project. Given Version 1.0 just came out, I've got a few questions about it. 1. It seems SQLAlchemy generally EOLs versions after about two releases/years.

Re: [sqlalchemy] Generating Correlated Subqueries

2015-04-18 Thread Mike Bayer
On 4/18/15 7:13 PM, Michael Wilson wrote: I have the following tables: things_table = Table(’thing', self.metadata, Column('id', Integer, primary_key=True), … ) comments_table = Table('comments', self.metadata, Column('id', Integer, primary_key=True), # Unique id for this

[sqlalchemy] Generating Correlated Subqueries

2015-04-18 Thread Michael Wilson
I have the following tables: things_table = Table(’thing', self.metadata, Column('id', Integer, primary_key=True), … ) comments_table = Table('comments', self.metadata, Column('id', Integer, primary_key=True), # Unique id for this comment Column('type',