simples3 1.0-alpha
In keeping with my new year's resolution to release one-dot-ohs of my two mature projects, I now give you the 1.0 alpha release of simples3.
In case you missed it, simples3 is a simple S3 interface that has no dependencies other than Python, and has a daughter project named gaes3, which makes it work on Google App Engine (although some people have noted that simples3 should work on its own just fine.)
Without further ado:
(saw this on python planet) The examples are great, but s3_info cries out to be a collections.namedtuple, at least to me: consider
>>> f.s3_info["modify"]
vs.
>>> f.s3_info.modify
especially since the keys given are constants anyway...
Absolutely, that'd be nice. However, I question the use of named tuples over a plain object. ISTM that named tuples essentially create simple classes anyway.
Hehe, whoop de doo!
