|
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
|
|
create(self,
login,
password=None,
name=None,
id=None)
Create a new User object and return it |
source code
|
|
|
users(self,
spec=None,
fields=None)
List all users. |
source code
|
|
|
user(self,
login,
fields=None)
Return a single User object |
source code
|
|
|
clean(self)
Delete all the Users in the database except the default admin user. |
source code
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|
|
|
|
|
|
delete(self,
**kwargs)
Delete a single stored Object |
source code
|
|
|
insert(self,
object,
check_keys=False)
Insert the object document to the database |
source code
|
|
|
update(self,
object)
Write the object document to the database |
source code
|
|