__init__.py
branchstable
changeset 3601 d77025be6f06
parent 3111 7b405bb305ab
child 3629 559cad62c786
child 3634 a2d00ff6eb68
--- a/__init__.py	Wed Oct 07 15:35:59 2009 +0200
+++ b/__init__.py	Wed Oct 07 17:08:49 2009 +0200
@@ -123,7 +123,14 @@
         pass
 
     def create_entity(self, etype, *args, **kwargs):
-        """add a new entity of the given type"""
+        """add a new entity of the given type
+        
+        Example (in a shell session):
+
+        c = create_entity('Company', name='Logilab')
+        create_entity('Person', ('works_for', 'Y'), Y=c.eid, firstname='John', lastname='Doe')
+
+        """
         rql = 'INSERT %s X' % etype
         relations = []
         restrictions = []