/usr/share/pyshared/couchdbkit-0.6.5.egg-info/PKG-INFO is in python-couchdbkit 0.6.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | Metadata-Version: 1.1
Name: couchdbkit
Version: 0.6.5
Summary: Python couchdb kit
Home-page: http://couchdbkit.org
Author: Benoit Chesneau
Author-email: benoitc@e-engura.com
License: Apache License 2
Description: About
-----
`Couchdbkit`_ provides you a full featured and easy client to access and
manage CouchDB. It allows you to manage a CouchDBserver, databases, doc
managements and view access. All objects mostly reflect python objects for
convenience. Server and Databases objects could be used for example as easy
as using a dict.
.. image:: https://secure.travis-ci.org/benoitc/couchdbkit.png?branch=master
:alt: Build Status
:target: https://secure.travis-ci.org/benoitc/couchdbkit
Installation
------------
Couchdbkit requires Python 2.x superior to 2.6.
To install couchdbkit using pip you must make sure you have a
recent version of distribute installed::
$ curl -O http://python-distribute.org/distribute_setup.py
$ sudo python distribute_setup.py
$ easy_install pip
To install or upgrade to the latest released version of couchdbkit::
$ pip install couchdbkit
Getting started
---------------
This tutorial exposes key features of this library mainly through code
examples. For in-depth description of the modules, you'll want to read
the `API`_ documentation.
Write your first CouchDB document
+++++++++++++++++++++++++++++++++
::
from couchdbkit import Server
# server object
server = Server()
# create database
db = server.get_or_create_db("greeting")
doc = {"mydoc": "test"}
db.save_doc(doc)
::
import datetime
from couchdbkit import *
class Greeting(Document):
author = StringProperty()
content = StringProperty()
date = DateTimeProperty()
Store the submitted Greetings
+++++++++++++++++++++++++++++
Here is the code to save a greet on ``Greeting`` database. We also see how to create a database::
from couchdbkit import Server
# associate Greeting to the db
Greeting.set_db(db)
# create a new greet
greet = Greeting(
author="Benoit",
content="Welcome to couchdbkit world",
date=datetime.datetime.utcnow()
)
# save it
greet.save()
.. NOTE::
You can just use the db object to save a Schema: ``db.save(greet)`` .
Your document ``greet`` is now in the ``greetings`` db. Each document
is saved with a ``doc_type`` field that allow you to find easily each
kind of document with the views. By default ``doc_type`` is the name of
the class.
Now that you saved your document, you can update it::
greet.author = u"Benoit Chesneau"
greet.save()
Here we updated the author name.
Dynamic properties
++++++++++++++++++
Mmm ok, but isn't CouchDB storing documents schema less? Do you want to
add a property ? Easy::
greet.homepage = "http://www.e-engura.org"
greet.save()
Now you have just added an homepage property to the document.
Get all greetings
+++++++++++++++++
You first have to create a view and save it in the db. We will call it
``greeting/all``. To do this we will use the loader system of couchdbkit
that allows you to send views to CouchDB.
Let's create a folder that contains the design doc, and then the folder
for the view. On unix::
mkdir -p ~/Work/couchdbkit/example/_design/greeting/views/all
In this folder we edit a file `map.js`::
function(doc) {
if (doc.doc_type == "Greeting")
emit(doc._id, doc);
}
}
Here is a folder structure::
/Work/couchdbkit/example/:
--_design/
---- greetings
------ view
Here is a screenshot:
.. image:: http://couchdbkit.org/images/gettingstarted.png
A system will be provided to manage view creation and other things. As
some noticed, this system works like `couchapp`_ and is fully
compatible.
Then we use push function to send the design document to CouchDB::
from couchdbkit.designer import push
push('/path/to/example/_design/greetings', db)
The design doc is now in the ``greetings`` database and you can get all
greets::
greets = Greeting.view('greeting/all')
.. _Couchdbkit: http://couchdbkit.org
.. _API: http://couchdbkit.org/doc/api/
.. _couchapp: http://github.com/couchapp/couchapp/tree/
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Database
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|