Take the new doc out of the branch and into trunk
[nodemanager.git] / doc / DocBookLocal.py
diff --git a/doc/DocBookLocal.py b/doc/DocBookLocal.py
new file mode 100644 (file)
index 0000000..be31df9
--- /dev/null
@@ -0,0 +1,13 @@
+
+import api_calls
+
+def get_func_list():
+       api_function_list = []
+       for func in dir(api_calls):
+               try:
+                       f = api_calls.__getattribute__(func)
+                       if 'group' in f.__dict__.keys():
+                               api_function_list += [api_calls.__getattribute__(func)]
+               except:
+                       pass
+       return api_function_list