Re: [sqlalchemy] Do we have support for PostgreSQL's JSON data type?

2013-09-03 Thread Michael Bayer
there's a trac ticket surrounding the job of adding the JSON type: http://www.sqlalchemy.org/trac/ticket/2581 the closest type resembling this is the HSTORE type, so an approach here would likely want to draw from some of the techniques of HSTORE. On Sep 3, 2013, at 2:31 AM, John Yeuk Hon

[sqlalchemy] Do we have support for PostgreSQL's JSON data type?

2013-09-02 Thread John Yeuk Hon Wong
It seems like for 0.8.2 release we have added the range type support but not the JSON data type support. I believe psycopg2.5 supports both range and JSON data type. Do we have a bridge in 0.8.2 to support JSON data type, or do I still have to write a custom, user-defined data type? Thanks.