{ "info": { "author": "Benoit Chesneau", "author_email": "benoitc@e-engura.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Other Environment", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.5", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Topic :: Database", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Utilities" ], "description": "About\n-----\n\n`Couchdbkit`_ provides you a full featured and easy client to access and\nmanage CouchDB. It allows you to manage a CouchDBserver, databases, doc\nmanagements and view access. All objects mostly reflect python objects for\nconvenience. Server and Databases objects could be used for example as easy\nas using a dict.\n\n.. image:: https://secure.travis-ci.org/benoitc/couchdbkit.png?branch=master\n :alt: Build Status\n :target: https://secure.travis-ci.org/benoitc/couchdbkit\n\nInstallation\n------------\n\nCouchdbkit requires Python 2.x superior to 2.6.\n\nTo install couchdbkit using pip you must make sure you have a\nrecent version of distribute installed::\n\n $ curl -O http://python-distribute.org/distribute_setup.py\n $ sudo python distribute_setup.py\n $ easy_install pip\n\nTo install or upgrade to the latest released version of couchdbkit::\n\n $ pip install couchdbkit\n\nGetting started\n---------------\n\nThis tutorial exposes key features of this library mainly through code\nexamples. For in-depth description of the modules, you'll want to read\nthe `API`_ documentation.\n\nWrite your first CouchDB document\n+++++++++++++++++++++++++++++++++\n\n::\n\n from couchdbkit import Server\n # server object\n server = Server()\n\n # create database\n db = server.get_or_create_db(\"greeting\")\n\n doc = {\"mydoc\": \"test\"}\n db.save_doc(doc)\n\n::\n\n import datetime\n from couchdbkit import *\n\n class Greeting(Document):\n author = StringProperty()\n content = StringProperty()\n date = DateTimeProperty()\n\n\nStore the submitted Greetings\n+++++++++++++++++++++++++++++\n\nHere is the code to save a greet on ``Greeting`` database. We also see how to create a database::\n\n from couchdbkit import Server\n\n # associate Greeting to the db\n Greeting.set_db(db)\n\n # create a new greet\n greet = Greeting(\n author=\"Benoit\",\n content=\"Welcome to couchdbkit world\",\n date=datetime.datetime.utcnow()\n )\n\n # save it\n greet.save()\n\n.. NOTE::\n\n You can just use the db object to save a Schema: ``db.save(greet)`` .\n\n\nYour document ``greet`` is now in the ``greetings`` db. Each document\nis saved with a ``doc_type`` field that allow you to find easily each\nkind of document with the views. By default ``doc_type`` is the name of\nthe class.\n\nNow that you saved your document, you can update it::\n\n greet.author = u\"Benoit Chesneau\"\n greet.save()\n\nHere we updated the author name.\n\nDynamic properties\n++++++++++++++++++\n\nMmm ok, but isn't CouchDB storing documents schema less? Do you want to\nadd a property ? Easy::\n\n greet.homepage = \"http://www.e-engura.org\"\n greet.save()\n\nNow you have just added an homepage property to the document.\n\nGet all greetings\n+++++++++++++++++\n\nYou first have to create a view and save it in the db. We will call it\n``greeting/all``. To do this we will use the loader system of couchdbkit\nthat allows you to send views to CouchDB.\n\nLet's create a folder that contains the design doc, and then the folder\nfor the view. On unix::\n\n mkdir -p ~/Work/couchdbkit/example/_design/greeting/views/all\n\nIn this folder we edit a file `map.js`::\n\n function(doc) {\n if (doc.doc_type == \"Greeting\")\n emit(doc._id, doc);\n }\n }\n\nHere is a folder structure::\n\n /Work/couchdbkit/example/:\n\n --_design/\n ---- greetings\n ------ view\n\nHere is a screenshot:\n\n.. image:: http://couchdbkit.org/images/gettingstarted.png\n\n\nA system will be provided to manage view creation and other things. As\nsome noticed, this system works like `couchapp`_ and is fully\ncompatible.\n\nThen we use push function to send the design document to CouchDB::\n\n from couchdbkit.designer import push\n push('/path/to/example/_design/greetings', db)\n\nThe design doc is now in the ``greetings`` database and you can get all\ngreets::\n\n greets = Greeting.view('greeting/all')\n\n.. _Couchdbkit: http://couchdbkit.org\n.. _API: http://couchdbkit.org/doc/api/\n.. _couchapp: http://github.com/couchapp/couchapp/tree/", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://couchdbkit.org", "keywords": null, "license": "Apache License 2", "maintainer": null, "maintainer_email": null, "name": "couchdbkit", "package_url": "https://pypi.org/project/couchdbkit/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/couchdbkit/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://couchdbkit.org" }, "release_url": "https://pypi.org/project/couchdbkit/0.6.5/", "requires_dist": null, "requires_python": null, "summary": "Python couchdb kit", "version": "0.6.5" }, "last_serial": 853323, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "1678f3beca93847be6bafa799f033aaa", "sha256": "c22fc0df837ef3d660ed7ab6e866edaaba487e0f1d607e97c2776110736575c3" }, "downloads": -1, "filename": "couchdbkit-0.1.tar.gz", "has_sig": false, "md5_digest": "1678f3beca93847be6bafa799f033aaa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39071, "upload_time": "2009-04-03T10:50:54", "url": "https://files.pythonhosted.org/packages/f2/a8/09ae937eccfa46b6a22b0ddda1ad3e28aad31a37569256e754cfbb104fe9/couchdbkit-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "cee57907765a713df51be0d1dbfac81e", "sha256": "f10ae840110d1eec76c11bef14a21dfccd0eb790b4c29c722d611ccc15a8340e" }, "downloads": -1, "filename": "couchdbkit-0.1.1.tar.gz", "has_sig": false, "md5_digest": "cee57907765a713df51be0d1dbfac81e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39654, "upload_time": "2009-04-04T11:21:55", "url": "https://files.pythonhosted.org/packages/14/62/6afa0da8ce3355928d74e605d7f64364c0e30dc9bf8182a29b172d02d86f/couchdbkit-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "37ae47baa473c9d721eddee4ae22ec80", "sha256": "0c4beb8362b7da40f29ca0a52b158aa1a5534316b35fca4dded7e88b35901e20" }, "downloads": -1, "filename": "couchdbkit-0.1.2.tar.gz", "has_sig": false, "md5_digest": "37ae47baa473c9d721eddee4ae22ec80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41132, "upload_time": "2009-04-14T04:14:23", "url": "https://files.pythonhosted.org/packages/a3/c3/001ccd2f7e27c17c011bcfccfac73df30e4d91267ade2cbfd572de83565e/couchdbkit-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "a03d030f156d1fb062cab4ae134efffa", "sha256": "c9351437fd3895889f078a0004751597deaebe3e6263b53d676ee8ebc8092cf5" }, "downloads": -1, "filename": "couchdbkit-0.1.3.tar.gz", "has_sig": false, "md5_digest": "a03d030f156d1fb062cab4ae134efffa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42461, "upload_time": "2009-04-16T23:10:52", "url": "https://files.pythonhosted.org/packages/c2/63/8b121305263d71e1f255ac544d0650d7a7a1ebaca852bdf0d0f1b1e877fc/couchdbkit-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "7e7e0e4bb9788337c8a3ad9e9562e367", "sha256": "a2560a2c60479a6e4d37d34a69794cf8409b7a4574a6f90bb23de92197b1205d" }, "downloads": -1, "filename": "couchdbkit-0.1.4.tar.gz", "has_sig": false, "md5_digest": "7e7e0e4bb9788337c8a3ad9e9562e367", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43958, "upload_time": "2009-04-22T17:55:35", "url": "https://files.pythonhosted.org/packages/80/41/e1e3afd22c2055942e7f1e5f6cb2a62d7e30b028397febecda01f55f20a7/couchdbkit-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "22c89603243937facbc85d0d28b213be", "sha256": "dc477c1f49706c96ffc76078372865e4cfb347b915f808d39914f1f2397f61e6" }, "downloads": -1, "filename": "couchdbkit-0.1.5.tar.gz", "has_sig": false, "md5_digest": "22c89603243937facbc85d0d28b213be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44249, "upload_time": "2009-04-27T23:55:11", "url": "https://files.pythonhosted.org/packages/0c/cb/a738a7e298baf4b29ef688c368de35346b6576310d22ecbe0334aea1ad27/couchdbkit-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "da1c019f9ed2888563a217ab0fccdc1a", "sha256": "a4617968ad0c184c282db4f5eca5b69d26765b34a2af14fc343895c26b16d926" }, "downloads": -1, "filename": "couchdbkit-0.1.6.tar.gz", "has_sig": false, "md5_digest": "da1c019f9ed2888563a217ab0fccdc1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44930, "upload_time": "2009-05-13T18:39:50", "url": "https://files.pythonhosted.org/packages/c4/b0/b035c3029cad0fe982e761659f98afe5aa428f28581d2660eb3799c4cf98/couchdbkit-0.1.6.tar.gz" } ], "0.1.6.1": [ { "comment_text": "", "digests": { "md5": "9ceec5641baed082036c658c22525cd3", "sha256": "5509e3c3fa879b66f68ed3ea803cd0e34dea6199ffc869f48750faedd9117cc5" }, "downloads": -1, "filename": "couchdbkit-0.1.6.1.tar.gz", "has_sig": false, "md5_digest": "9ceec5641baed082036c658c22525cd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45577, "upload_time": "2009-05-14T15:17:25", "url": "https://files.pythonhosted.org/packages/d4/46/b04ebe63e897d9b13b53f6e03f1ab032f310fe30bd927b889b0ffe127ba6/couchdbkit-0.1.6.1.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "3bd15250b273afbd5596d35ef4678eb0", "sha256": "fb5fb52f9956910b7de18a71d13122998934578df4919a87c96a35ed48afadd3" }, "downloads": -1, "filename": "couchdbkit-0.1.7.tar.gz", "has_sig": false, "md5_digest": "3bd15250b273afbd5596d35ef4678eb0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55774, "upload_time": "2009-06-25T13:41:37", "url": "https://files.pythonhosted.org/packages/7f/6a/393d1b66f6675aae93a08f4090d45f13fbc88f671fef04104f7d0bc069bb/couchdbkit-0.1.7.tar.gz" } ], "0.1.7.1": [ { "comment_text": "", "digests": { "md5": "fae513940aa555ec363d0eb5a054821a", "sha256": "5296941fdfe9f1fb5b78818663ab32c776eb13514a6c1fe4da195b78229d9a7e" }, "downloads": -1, "filename": "couchdbkit-0.1.7.1.tar.gz", "has_sig": false, "md5_digest": "fae513940aa555ec363d0eb5a054821a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55884, "upload_time": "2009-06-26T22:51:35", "url": "https://files.pythonhosted.org/packages/2b/ee/98a7805de96f338ea266a691282963322b1beb6627fca478ea66ee07d28d/couchdbkit-0.1.7.1.tar.gz" } ], "0.1.7.2": [ { "comment_text": "", "digests": { "md5": "2b0d227ee7d9b3d64658f233b60a685d", "sha256": "4a5291ae3833720efa4baa958d741785d69788a375ceb496d7558255feaace5c" }, "downloads": -1, "filename": "couchdbkit-0.1.7.2.tar.gz", "has_sig": false, "md5_digest": "2b0d227ee7d9b3d64658f233b60a685d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56541, "upload_time": "2009-06-30T08:35:31", "url": "https://files.pythonhosted.org/packages/00/92/a01a51ee668919626f12607e31adba9dbe9d661ecb6209cf04a352e8d076/couchdbkit-0.1.7.2.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "e9f3e1ec16a6f8e0a78311c98131c01a", "sha256": "e49370e1fb733dd81cdf7f3c5c7bfac755a5f3417bd6b8743c964abfc7b9ef7e" }, "downloads": -1, "filename": "couchdbkit-0.1.8.tar.gz", "has_sig": false, "md5_digest": "e9f3e1ec16a6f8e0a78311c98131c01a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57233, "upload_time": "2009-07-07T05:57:20", "url": "https://files.pythonhosted.org/packages/27/ba/0f6bf21992408c52437b1558284217ce1f0d248023159312344df87b52f0/couchdbkit-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "2eb8daedc04364a521035cf20dbd8120", "sha256": "4ad58e03523346475728f375d4d6ceb916063a9743fa650ee3906fe3284a3a45" }, "downloads": -1, "filename": "couchdbkit-0.1.9.tar.gz", "has_sig": false, "md5_digest": "2eb8daedc04364a521035cf20dbd8120", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56788, "upload_time": "2009-09-07T23:07:15", "url": "https://files.pythonhosted.org/packages/2e/e6/5d68170f5459559823a2c02cd5a96c6a160fcc4930d350e0f065865c98d3/couchdbkit-0.1.9.tar.gz" } ], "0.1.9.1": [ { "comment_text": "", "digests": { "md5": "6ad7b707b4f69df087a493e4a3cc5a49", "sha256": "229c75c1bf6c144f307c056c687bfb45596272e55fdecea4700cc65c2074156f" }, "downloads": -1, "filename": "couchdbkit-0.1.9.1.tar.gz", "has_sig": false, "md5_digest": "6ad7b707b4f69df087a493e4a3cc5a49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57239, "upload_time": "2009-09-08T17:57:02", "url": "https://files.pythonhosted.org/packages/91/a1/ac783909b728ea5f02c99240e489414f6f857e46103158114aa86f39f18e/couchdbkit-0.1.9.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "b270fc809c242a750ae93713494c78ad", "sha256": "88b94d86239ead2771e677f7de19de375df8a49a943e334e7f38d3b2f3e4e95d" }, "downloads": -1, "filename": "couchdbkit-0.2.tar.gz", "has_sig": false, "md5_digest": "b270fc809c242a750ae93713494c78ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53606, "upload_time": "2009-09-11T18:24:24", "url": "https://files.pythonhosted.org/packages/84/18/5ca4e9af40b9000845e0bd8e0aa6190b1f89249e09e1c592b47e68d58381/couchdbkit-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "76f5a90bfc7b91f65079e76edcd54c5b", "sha256": "d8deb3a110fc05d1b8c7ac64d271651c071994c33fc29f2558e8b0653c05b7e6" }, "downloads": -1, "filename": "couchdbkit-0.2.1.tar.gz", "has_sig": false, "md5_digest": "76f5a90bfc7b91f65079e76edcd54c5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55353, "upload_time": "2009-10-06T23:26:32", "url": "https://files.pythonhosted.org/packages/ff/f9/04c220fa7e91590b88de1db3f88cd73b9375ba237a2d9b985f8ac8a74b5f/couchdbkit-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "e6ae03e8e2ecee344c32067e6698ad2f", "sha256": "f0eed1fd3913e8a62f1e0c5e02e08b98eb1c73753c07233bc1a2156cb52f0bf4" }, "downloads": -1, "filename": "couchdbkit-0.2.2.tar.gz", "has_sig": false, "md5_digest": "e6ae03e8e2ecee344c32067e6698ad2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54266, "upload_time": "2009-11-05T14:49:36", "url": "https://files.pythonhosted.org/packages/55/be/07141761edfa0b73c2a3345e8302979dfa35cb9c9977a3f09757ea4df3fc/couchdbkit-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "aaf7eae5ce2b9536757353333fcc2365", "sha256": "e4a65282f24f1b5e2a16668fda790ea056d718faad3dbe143235baf9508989d5" }, "downloads": -1, "filename": "couchdbkit-0.2.3.tar.gz", "has_sig": false, "md5_digest": "aaf7eae5ce2b9536757353333fcc2365", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55170, "upload_time": "2009-11-10T09:34:30", "url": "https://files.pythonhosted.org/packages/ea/7b/d11831ee49c8dfdfcd790c4144bac498eee69242acb92d6c1b8b927fa4f5/couchdbkit-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "a0dc97dd2392a0a2be34b5fc4492173e", "sha256": "cd53fcfafb072bf39c13537323f2957eb23761ab35dd173758e82a54e602228d" }, "downloads": -1, "filename": "couchdbkit-0.2.4.tar.gz", "has_sig": false, "md5_digest": "a0dc97dd2392a0a2be34b5fc4492173e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56676, "upload_time": "2009-11-22T19:43:53", "url": "https://files.pythonhosted.org/packages/07/a5/04f872076f95b06ffd4b093aa9f49b7a1cead8579da3d7d1611dcdfb1b47/couchdbkit-0.2.4.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "38394b48effb9c1e3142e9f0eff4c1df", "sha256": "9fb62e72cf922ce20fdd953d5bc2b421c2d07a3ef2a6a86179558e2310f5fbd9" }, "downloads": -1, "filename": "couchdbkit-0.3.tar.gz", "has_sig": false, "md5_digest": "38394b48effb9c1e3142e9f0eff4c1df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56620, "upload_time": "2009-12-07T19:06:29", "url": "https://files.pythonhosted.org/packages/37/e3/4389bf204618a8aae0eef699ae14d7ee4b8c69470abd108b78cff14c640d/couchdbkit-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "7b6e2ffa4fc80913e2f022b7af355573", "sha256": "329e6cd71fde15d95ae5b95fa9c204c35c5fcdebf0419cab54ffbff790868975" }, "downloads": -1, "filename": "couchdbkit-0.3.1.tar.gz", "has_sig": false, "md5_digest": "7b6e2ffa4fc80913e2f022b7af355573", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55531, "upload_time": "2009-12-10T00:47:16", "url": "https://files.pythonhosted.org/packages/73/1b/6e0d0674448c28c3a3cf664c0d3d3e440252de41cd4c1bb659744f71cf37/couchdbkit-0.3.1.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "4f9512a61a7623f34e9848ccb01dfe4f", "sha256": "93c469b6e7aa6d1701649184e545393e6698c249cf97d85c678d78e09150e353" }, "downloads": -1, "filename": "couchdbkit-0.4.tar.gz", "has_sig": false, "md5_digest": "4f9512a61a7623f34e9848ccb01dfe4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59171, "upload_time": "2010-01-08T12:29:49", "url": "https://files.pythonhosted.org/packages/60/1c/eeb3015f90d096803fda248a984decddd49859b29e12cdb72e35ceef7853/couchdbkit-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "2fa0f5a41bbc239faab06ca1010d5e0b", "sha256": "69ef1871aa838872a5031808867b2255a6c90b99034b64809d2661d67e192d6b" }, "downloads": -1, "filename": "couchdbkit-0.4.1.tar.gz", "has_sig": false, "md5_digest": "2fa0f5a41bbc239faab06ca1010d5e0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60694, "upload_time": "2010-01-25T14:02:42", "url": "https://files.pythonhosted.org/packages/d0/71/7032a50b9894bfa42ac10755e0a5c61a9fcf10c36d15d76c65c74d788898/couchdbkit-0.4.1.tar.gz" } ], "0.4.10": [ { "comment_text": "", "digests": { "md5": "d7eb6619e172a16ec7c7643b2f11219f", "sha256": "d7da5e4eee6462359652b58af5b361b2c641983f0aee5e7e6383d983a57ab8fd" }, "downloads": -1, "filename": "couchdbkit-0.4.10.tar.gz", "has_sig": false, "md5_digest": "d7eb6619e172a16ec7c7643b2f11219f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82988, "upload_time": "2010-07-24T01:17:02", "url": "https://files.pythonhosted.org/packages/aa/49/a346f7ef9a5c1dd5cabc9f801e5d7d079da5ad47db42c15711eaaf98f995/couchdbkit-0.4.10.tar.gz" } ], "0.4.11": [ { "comment_text": "", "digests": { "md5": "35ec77f52fdb38649a458a5f9ff3f487", "sha256": "ecad350ae5b903ba12346606662f6612abb24db8f8b04f9a223a103e4bd86648" }, "downloads": -1, "filename": "couchdbkit-0.4.11.tar.gz", "has_sig": false, "md5_digest": "35ec77f52fdb38649a458a5f9ff3f487", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83298, "upload_time": "2010-08-09T17:18:56", "url": "https://files.pythonhosted.org/packages/e0/a7/aa00e090f86e057ec74001cd2b2d0d1556933419f62f91b31ef358b581bb/couchdbkit-0.4.11.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "bc3b918d4df47575e417b2305eab6ed4", "sha256": "582506d3eeddff19216e9087426bb7a2eeccbaf433ad112fc1048d565249a891" }, "downloads": -1, "filename": "couchdbkit-0.4.2.tar.gz", "has_sig": false, "md5_digest": "bc3b918d4df47575e417b2305eab6ed4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82247, "upload_time": "2010-02-04T14:00:43", "url": "https://files.pythonhosted.org/packages/96/d2/bce8834c99084a66b28da981ab4ef9b6b6c03385abc008d9b294d096a253/couchdbkit-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "091c5dc1069a5fd286ff88728b3c777e", "sha256": "244ab5f969d3b1afd1713312fb1a7f6bddd01326b3316c6c5862f3ad370717cc" }, "downloads": -1, "filename": "couchdbkit-0.4.3.tar.gz", "has_sig": false, "md5_digest": "091c5dc1069a5fd286ff88728b3c777e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83330, "upload_time": "2010-02-28T04:35:27", "url": "https://files.pythonhosted.org/packages/d4/46/cd6e1fc4de2b1ed140c62fc2308e7926f1357acbcb14a930f90891c8c3bb/couchdbkit-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "1be1b1369b03d85007a08a6579e62617", "sha256": "ffa084418868f2fa1b2e4c0439d969a5f7333c9c10b3d38cd800847ce1678e9b" }, "downloads": -1, "filename": "couchdbkit-0.4.4.tar.gz", "has_sig": false, "md5_digest": "1be1b1369b03d85007a08a6579e62617", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83235, "upload_time": "2010-02-28T11:39:33", "url": "https://files.pythonhosted.org/packages/31/c6/6c702e50ea1f2fcb5021460f6e108271b2950e712cbb7cfc646553d6c931/couchdbkit-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "733ab0b874842f7f52c5dd6eccd2f45d", "sha256": "b684b41abd6a0870476a82e8d6195c66d6deb67a2fa640dfb6b019bcc030174f" }, "downloads": -1, "filename": "couchdbkit-0.4.5.tar.gz", "has_sig": false, "md5_digest": "733ab0b874842f7f52c5dd6eccd2f45d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81974, "upload_time": "2010-03-07T00:09:29", "url": "https://files.pythonhosted.org/packages/b0/f2/6368c2955789a28ec255341ceb609f4ce300d192d73f28fb631354c42aff/couchdbkit-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "7bf48554305a3091661b20affe5b9974", "sha256": "7a1703632030087fca82f675c1bed87b295a5c5b7bec7297d0acdabf34623756" }, "downloads": -1, "filename": "couchdbkit-0.4.6.tar.gz", "has_sig": false, "md5_digest": "7bf48554305a3091661b20affe5b9974", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82836, "upload_time": "2010-04-28T13:41:56", "url": "https://files.pythonhosted.org/packages/cd/30/10f6435e9c604fd23f1a6978e331d7053278b881d744b92064930f27594a/couchdbkit-0.4.6.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "fed83e476bf5266060aa600d9582838c", "sha256": "8f10bb1b2f0061c8eed42e4bd728995cdfe8aa08c516cf728aabfeab63ce6ad8" }, "downloads": -1, "filename": "couchdbkit-0.4.7.tar.gz", "has_sig": false, "md5_digest": "fed83e476bf5266060aa600d9582838c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83459, "upload_time": "2010-06-27T14:38:11", "url": "https://files.pythonhosted.org/packages/04/65/4aa0b837b029e59ac521e7ce22c0223e01ed83e8224acb4c8ca9eeaa81f9/couchdbkit-0.4.7.tar.gz" } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "1424be847f6840beb3a5a95ea025a448", "sha256": "9ff6ed9e5018ac5c7e32ed50925d20a62386a5211e21b9ac1e9f08b0f0148763" }, "downloads": -1, "filename": "couchdbkit-0.4.8.tar.gz", "has_sig": false, "md5_digest": "1424be847f6840beb3a5a95ea025a448", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83918, "upload_time": "2010-07-08T15:06:48", "url": "https://files.pythonhosted.org/packages/b1/7e/d1d68586542127ae678d9446cde3228be709860aa996ce08fed78dadb996/couchdbkit-0.4.8.tar.gz" } ], "0.4.9": [ { "comment_text": "", "digests": { "md5": "f9e4deaf0b04bc7218c34f1fb1414e98", "sha256": "8ce9d6754cf799e7e2b696f78cda2638f48994414606f456fdf080ce7247936c" }, "downloads": -1, "filename": "couchdbkit-0.4.9.tar.gz", "has_sig": false, "md5_digest": "f9e4deaf0b04bc7218c34f1fb1414e98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63145, "upload_time": "2010-07-20T00:39:26", "url": "https://files.pythonhosted.org/packages/68/e4/b51d50033c23e785fbf18c9f52db5351399902c1d913df08c9f49a7ae8e9/couchdbkit-0.4.9.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "2d31029f7709f982ca348d182d8f50e7", "sha256": "130f1a88edca19cd164389a5d815a8652630a0fe75d0175e2349adc6db186c63" }, "downloads": -1, "filename": "couchdbkit-0.5.0.tar.gz", "has_sig": false, "md5_digest": "2d31029f7709f982ca348d182d8f50e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93350, "upload_time": "2010-11-26T12:35:30", "url": "https://files.pythonhosted.org/packages/ac/aa/7a3b553681b78a0cc92e2233aa91bb945dd7cabccb6d12371cf2bfcbcb18/couchdbkit-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "7caddefb9f9e24dce8f09573b8660df7", "sha256": "931d5888a13aacf91f1e7af7bf6ebaa8008dae33e3645d7532509f5a57718c4c" }, "downloads": -1, "filename": "couchdbkit-0.5.1.tar.gz", "has_sig": false, "md5_digest": "7caddefb9f9e24dce8f09573b8660df7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93382, "upload_time": "2010-11-26T17:31:25", "url": "https://files.pythonhosted.org/packages/63/b2/927d955d7f1d6cc5f689d5e824560cb268bd293b4669792ff0502c9cc471/couchdbkit-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "0d872a81cc317c53de97d4fe31e4031d", "sha256": "dfe70dd4c277867924ce2366d09510b732ddbb67285ac759dbb2f88dea93acbf" }, "downloads": -1, "filename": "couchdbkit-0.5.2.tar.gz", "has_sig": false, "md5_digest": "0d872a81cc317c53de97d4fe31e4031d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92178, "upload_time": "2011-02-03T16:36:49", "url": "https://files.pythonhosted.org/packages/b0/17/ab247d832ae0502d1fae8f99fa4434456f17c601379c4489bc107ba39b92/couchdbkit-0.5.2.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "19c47dd885f05f06f5d39d48c223cbd8", "sha256": "0d95462776eff665d884c3958050802ca314f77aa9af2b1642cd1e27af5c605a" }, "downloads": -1, "filename": "couchdbkit-0.5.4.tar.gz", "has_sig": false, "md5_digest": "19c47dd885f05f06f5d39d48c223cbd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95706, "upload_time": "2011-02-18T18:34:06", "url": "https://files.pythonhosted.org/packages/64/fc/89bcffc0aee94a4a5a70656cacb3cf2df7f7cb5b4605ff028e4d26942a5e/couchdbkit-0.5.4.tar.gz" } ], "0.5.6": [ { "comment_text": "", "digests": { "md5": "6c52b76af446db349e95adbad8fa0599", "sha256": "fc7500fdfffbb7924961d4fff41a20ebeb49271377d83fcdf3a203576e8dc505" }, "downloads": -1, "filename": "couchdbkit-0.5.6.tar.gz", "has_sig": false, "md5_digest": "6c52b76af446db349e95adbad8fa0599", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104773, "upload_time": "2011-09-19T19:18:05", "url": "https://files.pythonhosted.org/packages/7a/28/9264fa3ba8bfe7023bf2182bbc09fd1776acf3910bbba1037f2c8f1d84fe/couchdbkit-0.5.6.tar.gz" } ], "0.5.7": [ { "comment_text": "", "digests": { "md5": "6ecbd8a8573c1502cbc173b9335f7e12", "sha256": "d52c46145554dcacf5d9ea0053444c5d9b9abd7c3464b9552ef4305ffd003a1b" }, "downloads": -1, "filename": "couchdbkit-0.5.7.tar.gz", "has_sig": false, "md5_digest": "6ecbd8a8573c1502cbc173b9335f7e12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104792, "upload_time": "2011-09-19T20:06:05", "url": "https://files.pythonhosted.org/packages/e3/f0/5931b3f7292c3366d3e6e15145c35b22edee7174a1fc2518160608e2e972/couchdbkit-0.5.7.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "4b2c4592efe2521e9ad5489c9d547d51", "sha256": "0f5943a0303b0e8ad791f351d3ca7fb7423eb73eba51ef92c1887b969f5f19f5" }, "downloads": -1, "filename": "couchdbkit-0.6.0.tar.gz", "has_sig": false, "md5_digest": "4b2c4592efe2521e9ad5489c9d547d51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107396, "upload_time": "2012-01-26T09:05:51", "url": "https://files.pythonhosted.org/packages/5d/13/ab07a507f84fabb74911fcc53c81a373bc0b285098733b179db0a47d9d65/couchdbkit-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "7434732cdb6426a1c757b129e9059bde", "sha256": "289c263c301657ff1ed6d93e841ead7f90a7a37557172636631e2184c9d19be3" }, "downloads": -1, "filename": "couchdbkit-0.6.1.tar.gz", "has_sig": false, "md5_digest": "7434732cdb6426a1c757b129e9059bde", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107234, "upload_time": "2012-01-31T19:32:52", "url": "https://files.pythonhosted.org/packages/2b/12/a3aacda19a0d17b94e7abf892fd75efc200d15129778dfc494dc642bed7e/couchdbkit-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "fe2dc42532829e347f755f6ee1cb1265", "sha256": "9b9f3bee7c173a83a47ffc880edf028b06003bab856290681213ad860d4a9113" }, "downloads": -1, "filename": "couchdbkit-0.6.2.tar.gz", "has_sig": false, "md5_digest": "fe2dc42532829e347f755f6ee1cb1265", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78917, "upload_time": "2012-05-04T11:59:58", "url": "https://files.pythonhosted.org/packages/ca/75/0d8c9a4cb1c7f4f084f7911b4d202aa9173be1b9bd998338b81cf812fefc/couchdbkit-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "a6e771fbf2bd8d4d46b652ce2a69b934", "sha256": "5085b9fa68c4f12e3cfe08841fa8d5dff2bbdaac2d57c7b55ce37a0bd9f5e86b" }, "downloads": -1, "filename": "couchdbkit-0.6.3.tar.gz", "has_sig": false, "md5_digest": "a6e771fbf2bd8d4d46b652ce2a69b934", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79107, "upload_time": "2012-06-06T09:26:10", "url": "https://files.pythonhosted.org/packages/dd/66/2d07dd1fab0ab019226966fcd9f6be7584774770dd57e235912aef3001af/couchdbkit-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "9908a613aad2a1bc0fe5c3860449f54a", "sha256": "fce9906875cb8051f114d2759ee4be540063d46e743c97fb643fad1869956aa3" }, "downloads": -1, "filename": "couchdbkit-0.6.4.tar.gz", "has_sig": false, "md5_digest": "9908a613aad2a1bc0fe5c3860449f54a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108271, "upload_time": "2013-02-09T20:53:53", "url": "https://files.pythonhosted.org/packages/fa/8d/f7b1aba9b61099215a0bfc621d27d378a657e5b3900515e9b27431f521e6/couchdbkit-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "d5f6382665697b0f126f68a211c1a5a2", "sha256": "9b607f509727e6ada2dbd576a4120c214b1c54f3bb8bf6e2e0eb2cfbb11a0e00" }, "downloads": -1, "filename": "couchdbkit-0.6.5.tar.gz", "has_sig": false, "md5_digest": "d5f6382665697b0f126f68a211c1a5a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81304, "upload_time": "2013-08-30T20:35:20", "url": "https://files.pythonhosted.org/packages/a1/13/9e9ff695a385c44f62b4766341b97f2bd8b596962df2a0beabf358468b70/couchdbkit-0.6.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d5f6382665697b0f126f68a211c1a5a2", "sha256": "9b607f509727e6ada2dbd576a4120c214b1c54f3bb8bf6e2e0eb2cfbb11a0e00" }, "downloads": -1, "filename": "couchdbkit-0.6.5.tar.gz", "has_sig": false, "md5_digest": "d5f6382665697b0f126f68a211c1a5a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81304, "upload_time": "2013-08-30T20:35:20", "url": "https://files.pythonhosted.org/packages/a1/13/9e9ff695a385c44f62b4766341b97f2bd8b596962df2a0beabf358468b70/couchdbkit-0.6.5.tar.gz" } ] }