python & couchdb sample
Lacking any good examples of how to use python’s couchdb module, I’ve managed to make pretty impressive progress (for me) on a 4th of July holiday.
I’ll try to recreated it here for others although I know it’ll be incomplete.
Consider it a syntactical example;
import couchdb
s = couchdb.Server(’http://localhost:5984/’) ##why can’t it default to this?
db = s['stock_values']
ids [...]
