Server object that allows you to access and manage a couchdb node. A
Server object can be used like any `dict` object.
|
__init__(self,
uri=' http://127.0.0.1:5984 ' ,
uuid_batch_count=1000,
resource_class=None,
resource_instance=None,
**client_opts)
constructor for Server object |
source code
|
|
|
|
|
all_dbs(self)
get list of databases in CouchDb host |
source code
|
|
|
get_db(self,
dbname,
**params)
Try to return a Database object for dbname. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
next_uuid(self,
count=None)
return an available uuid from couchdbkit |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|