Take the new doc out of the branch and into trunk
[nodemanager.git] / doc / DocBookLocal.py
1
2 import api_calls
3
4 def get_func_list():
5         api_function_list = []
6         for func in dir(api_calls):
7                 try:
8                         f = api_calls.__getattribute__(func)
9                         if 'group' in f.__dict__.keys():
10                                 api_function_list += [api_calls.__getattribute__(func)]
11                 except:
12                         pass
13         return api_function_list