I'm currently building a behavior for Pepper where I want to find the installed behaviors and then display them on the tablet including the description given in the project properties. From the ALBehaviorManager I can find the installed behaviors easily, but that only gives me the name of the behavior. How can I get the description?
Asked
Active
Viewed 230 times
1 Answers
3
You can check on the module PackageManager. With the function packages(), you can have all the information on applications. I think that this function returns a json. You can also get the description of a specific applications with package(uuid_application).

mcaniot
- 405
- 3
- 9
-
Nice, it was a question I'm asking myself one week ago ! Thank you! – Alexandre Mazel May 18 '17 at 16:38