Re: [ANN]:JSONStream

2013-07-17 Thread Clark C. Evans
Looks interesting. In YAML we used three dashes as the stream separator. So already a YAML processor could handle a JSON stream ... for doc in yaml.load_all( ... --- {one: value} ... --- {two: another} ... --- ... {three: a third item in the stream, ... with: more data} ... ): ...

HTSQL 2.2 : A Query Language for the Accidental Programmer

2011-12-16 Thread Clark C. Evans
-final.html Please join us at #htsql on irc.freenode.net Clark C. Evans Kirill Simonov -- http://mail.python.org/mailman/listinfo/python-announce-list Support the Python Software Foundation: http://www.python.org/psf/donations/

HTSQL 2.1-RC1 : A Query Language for the Accidental Programmer

2011-06-23 Thread Clark C. Evans
The mailing list for users of HTSQL HTSQL is copyright by Prometheus Research, LLC. HTSQL is written by Clark C. Evans c...@clarkevans.com and Kirill Simonov x...@resolvent.net. Generous support for HTSQL was provided by the Simons Foundation. This material is also based upon work supported

Re: HTSQL 2.0 RC1 -- a Query Language for the Accidental Programmer

2011-01-22 Thread Clark C. Evans
On Fri, 21 Jan 2011 21:25 -0800, rusi rustompm...@gmail.com wrote: On Jan 22, 2:45 am, Clark C. Evans c...@clarkevans.com wrote: Kirill Simonov and myself would like to introduce HTSQL, a novel approach to relational database access which is neither an ORM nor raw SQL. Given the claim

HTSQL 2.0 RC1 -- a Query Language for the Accidental Programmer

2011-01-21 Thread Clark C. Evans
Kirill Simonov and myself would like to introduce HTSQL, a novel approach to relational database access which is neither an ORM nor raw SQL. HTSQL is a URI-based high-level query language for relational databases. It's implemented as a Python WSGI application. Currently it supports PostgreSQL

HTSQL 2.0 RC1 -- a Query Language for the Accidental Programmer

2011-01-21 Thread Clark C. Evans
Kirill Simonov and myself would like to introduce HTSQL, a novel approach to relational database access which is neither an ORM nor raw SQL. HTSQL is a URI-based high-level query language for relational databases. It's implemented as a Python WSGI application. Currently it supports PostgreSQL

feature request / max size limit on StringIO

2005-10-25 Thread Clark C. Evans
Hello. I've not been able to use cStringIO since I have the need to ensure that the memory buffers created are bounded within a resonable limit set by specifications. No, this code does not properly belong in my application as the modules that use files should not have to care about any resource

file uploading via urllib2 (multipart/form-data)

2005-01-13 Thread Clark C. Evans
Hello. I was wondering if anyone has built a module that works with urllib2 to upload file content via POST multipart/form-data. I'm aware of ASPN 146306, however, I need to use urllib2 beacuse I'm using HTTP Digest over SSL. Cheers, Clark -- http://mail.python.org/mailman/listinfo/python-list