Fixes to documentation. Makefile changes to support epydoc
[iooclient] / iooclient / eos_ned.py
index a1fab4b..5b518d9 100644 (file)
@@ -46,7 +46,8 @@ class eosNed(eos):
         or structured python data
         
         Usage:
-
+            
+            >>> from iooclient.eos_ned import *
             >>> ned = eosNed('1.2.3.4', 20006, 'password')
             >>> ned.list_ne_dir()
             [{'{'userLabel': 'elementName',
@@ -54,15 +55,16 @@ class eosNed(eos):
               'notificationType': 'pmPointList',
               ...
 
-        or
-        
-        >>> with eosNed('1.2.3.4', 20006, 'password') as ned:
-        >>>    ned.list_ne_dir()
-        [{'{'userLabel': 'elementName',
-          'locationName': Athens,
-          'notificationType': 'pmPointList',
-          ... 
-                
+        or:
+            
+            >>> from iooclient.eos_ned import *
+            >>> with eosNed('1.2.3.4', 20006, 'password') as ned:
+            >>>    ned.list_ne_dir()
+            [{'{'userLabel': 'elementName',
+              'locationName': Athens,
+              'notificationType': 'pmPointList',
+              ... 
+                    
         @rtype: String or list of dictionaries
         @return: Network element data in raw text format or in structured format. False in case of errors.
         '''