Questions tagged [couchdbkit]

Couchdbkit is a Python library which provides a full featured and easy client to access and manage CouchDB.

21 questions
0
votes
1 answer

python latin-1 UnicodeDecodeError after switching to ubuntu 14 with couchdb cPickle binary data

For some strange reason my python code stopped working after I switched from ubuntu 12 to ubuntu 14. I can't unpickle my data any more. I stored the data in a couchdb database by converting to latin1 encoding. I'm using latin1 because I read some…
evolution
  • 593
  • 6
  • 20
0
votes
1 answer

Using CouchDB Kit and Python; Trying to setup database without having to set DB inline

I am using couchdbkit to build a small Flask app and I am trying to write out some Python models so that interacting with the DB is easier (not inline). Here is my code so far: base.py from couchdbkit import * from api.config import settings class…
dennismonsewicz
  • 25,132
  • 33
  • 116
  • 189
0
votes
1 answer

Couchdbkit designer.push is uploading documents as base64

anyone using Couchdbkit (python api for couchdb) has had the same issue than I? I use: $ couchapp push site http://localhost:5984/the_site To upload a website into couchdb but as I do in python: >>> db = self.__serv.get_or_create_db("reports") …
Daniel
  • 744
  • 1
  • 5
  • 11
0
votes
1 answer

Tuple in Couchdbkit

I need save EXIF data to couchdb. This is a dictionary of different variable types (str, list, int ...). Lists can have inside different types too. I have problem with storing Tuple to couchdbkit. This type is no present inside…
Oleh Herych
  • 897
  • 1
  • 9
  • 16
0
votes
2 answers

parsing in couchdbkit

The data retrieved from couchdb is the following: {'value': 'UMMC', 'id': 'ef688c440131f59262f2c4f80d001c87', 'key': 'ef688c440131f59262f2c4f80d001c87'} {'value': 'test', 'id': 'fc2c556010c5167c4a32a7ea4d001d8b', 'key':…
0
votes
1 answer

CouchDB vs mongodb

We are developing application for which we going to use a NoSql database. We have evaluated couchdb and mongodb. Our application is in python and read-speed is most critical for our application. And application is reading a large number of…
Aniruddha
  • 3,513
  • 6
  • 27
  • 38
1
2