Package couchdb :: Module client :: Class Row

Class Row



object --+
         |
        Row

Representation of a row as returned by database views.

Instance Methods
 
__init__(self, id, key, value)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
 
__repr__(self)
repr(x)

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __str__

Instance Variables
  id
The document ID
  key
The key of the row
  value
The value of the row
Properties

Inherited from object: __class__

Method Details

__init__(self, id, key, value)
(Constructor)

 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides: object.__init__
(inherited documentation)

__repr__(self)
(Representation operator)

 
repr(x)
Overrides: object.__repr__
(inherited documentation)