Python CouchDB database simple example, pythoncouchdb

Source: Internet
Author: User
Tags couchdb

Python CouchDB database simple example, pythoncouchdb

Install the python couchDb Library:

Https://pypi.python.org/pypi/CouchDB/0.10

Connect to the server
Copy codeThe Code is as follows:
>>> Import couchdb
>>> Couch = couchdb. Server ('HTTP: // example.com: 5984 /')

Create a database
Copy codeThe Code is as follows:
>>> Db = couch. create ('test') # create a database
>>> Db = couch ['mydb'] # use an existing database

Create a document and insert it to the database:
Copy codeThe Code is as follows:
>>> Doc = {'foo': 'bar '}
>>> Db. save (doc)
('E0658cab843b59e63c8779a9a5000b01 ', '1-4c6114c65e295552ab1019e2b046b10e ')
>>> Doc
{'_ Rev': '1-4c6114c65e295552ab1019e2b046b10e ', 'foo': 'bar',' _ id': 'e0658cab843b59e63c8779a9a5000b01 '}

The save () method returns the '_ id',' _ rev' fields.
Query a database by id
Copy codeThe Code is as follows:
>>> Db ['e0658cab843b59e63c8779a9a5000b01 ']
<Document 'e0658cab843b59e63c8779a9a5000b01 '@ '1-4c6114c65e295552ab1019e2b046b10e' {'foo': 'bar'}>

Update document:
Copy codeThe Code is as follows:
>>> Data = db ["5fecc0d7fe5ac6b46359b5eec4f3ff"]
>>> Data ['billseconds '] = 191
>>> Db. save (data)
(U '5fecc0d7fe5ac6b46359b5eec4f3ff ', u '3-6b8a6bb9f2428c510dcacdd5c918d632 ')

Traverse Database
Copy codeThe Code is as follows:
>>> For id in db:
... Print id
...
'E0658cab843b59e63c8779a9a5000b01'

Delete documents and clear Databases
Copy codeThe Code is as follows:
>>> Db. delete (doc)
>>> Couch. delete ('test ')

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.