Re: [PossibleSpam][5.0] Re: [sqlalchemy] Concise, Pythonic query syntax

2017-11-06 Thread Chris Withers
Fantastic, thanks! On 06/11/2017 22:46, Jones, Bryan wrote: All, I've just updated the package to use the MIT license. Bryan On Mon, Nov 6, 2017 at 2:22 PM, Jones, Bryan > wrote: Chris, I'm open to BSD or MIT as well.

Re: [PossibleSpam][5.0] Re: [sqlalchemy] Concise, Pythonic query syntax

2017-11-06 Thread Jones, Bryan
All, I've just updated the package to use the MIT license. Bryan On Mon, Nov 6, 2017 at 2:22 PM, Jones, Bryan wrote: > Chris, > > I'm open to BSD or MIT as well. Looking, I see that SQLAlchemy is > MIT-license, so I can re-license it to that. > > Bryan > > On Mon, Nov

Re: [PossibleSpam][5.0] Re: [sqlalchemy] Concise, Pythonic query syntax

2017-11-06 Thread Jones, Bryan
Chris, I'm open to BSD or MIT as well. Looking, I see that SQLAlchemy is MIT-license, so I can re-license it to that. Bryan On Mon, Nov 6, 2017 at 12:25 PM, Chris Withers wrote: > Great looking library, shame about the license. > > You particularly attached to GPL3 or would

Re: [sqlalchemy] Concise, Pythonic query syntax

2017-11-06 Thread Chris Withers
Great looking library, shame about the license. You particularly attached to GPL3 or would you be amenable to BSD or MIT? Chris On 03/11/2017 21:52, Bryan Jones wrote: All, I've just released the pythonic_sqlalchemy_query package on PyPI, which provides concise, Pythonic query syntax for

Re: [sqlalchemy] Concise, Pythonic query syntax

2017-11-03 Thread Bryan Jones
All, I've just released the pythonic_sqlalchemy_query package on PyPI, which provides concise, Pythonic query syntax for SQLAlchemy. For example, these two queries produce identical results: pythonic_query = session.User['jack'].addresses['j...@google.com']traditional_query = ( # Ask for

Re: [sqlalchemy] Concise, Pythonic query syntax

2017-06-16 Thread mike bayer
On 06/15/2017 04:11 PM, Bryan Jones wrote: All, While working on my SQLAlchemy-based application, I noticed an opportunity to provide a more concise, Pythonic query syntax. For example, User['jack'].addresses produces a Query for the Address of a User named jack. I had two questions 1.

[sqlalchemy] Concise, Pythonic query syntax

2017-06-15 Thread Bryan Jones
All, While working on my SQLAlchemy-based application, I noticed an opportunity to provide a more concise, Pythonic query syntax. For example, User['jack'].addresses produces a Query for the Address of a User named jack. I had two questions 1. Has someone already done this? If so, would