couchdb-python icon indicating copy to clipboard operation
couchdb-python copied to clipboard

Python library for working with CouchDB

Results 57 couchdb-python issues
Sort by recently updated
recently updated
newest added

Edit: For the latest CouchDB v2.3.0 In client.py line 284, in the login method, the cookie was set to ` if sys.version_info[0] > 2: cookie = headers._headers[0][1] else: cookie =...

I'm sad that this project has died. I'll have a chat at work about us picking this up. In the meantime, https://pythonhosted.org/CouchDB/ is now dead so there's no more documentation...

https://github.com/djc/couchdb-python/blob/e8eab1f66fdb7f82273e0780282389d512a8f519/couchdb/client.py#L812 When run a mango query without index, couchdb will return: ``` HTTP/1.1 200 OK Cache-Control: must-revalidate Content-Type: application/json Date: Thu, 01 Sep 2016 17:25:51 GMT Server: CouchDB (Erlang OTP)...

_From [chadmill](https://code.google.com/u/chadmill/) on June 18, 2010 22:39:19_ Any HTTP-based protocol should have an API that permits inserting HTTP proxy information. _Original issue: http://code.google.com/p/couchdb-python/issues/detail?id=135_

imported

I suggest implementation for mango query (only CouchDB 2) http://docs.couchdb.org/en/2.1.0/api/database/find.html. I used django's filter implementation. `data = db.filter(field__subfield1__...__mango_operator = value)` ``` data = db.filter(Q(field1__subfield1__...__mango_operator = value) | Q(field2__subfield1__...__mango_operator = value)...

CouchDB 2 has a new way to query the database without using views: - https://blog.couchdb.org/2016/08/03/feature-mango-query/ - https://github.com/cloudant/mango Perhaps this could be implemented as two new database functions: - mango_query -...

Fixes #105 Added a mutator function for the ViewField decorator which allows a reduce function to be set on a ViewField using a second decorator. This is just some sugar...

_From [[email protected]](https://code.google.com/u/109832439117054848692/) on December 10, 2009 17:15:39_ [formerly a comment in Issue 73 : Fix schema.View.define decorator] I've had a go at implementing reduce functions using this decorator (after having...

imported

Although it is undocumented, the new location for /_config (at least for a server running locally) is /_node/couchdb@localhost/_config. If there is a cluster set up, each individual node gets its...