anypytools reference

I recently started to use anypytools to run my anybody simulations. The only information source I found is the tutorials (http://nbviewer.ipython.org/github/AnyBody-Research-Group/AnyPyTools/blob/master/Tutorial/00_AnyPyTools_tutorial.ipynb). They are good, but questions remain as there are functions used in example scripts that are not explained. Is there some structured documentation with all objects, functions, … provided by anypytools?
Any hints are appreciated.

Cheers,
Simon

Hi Simon

Thanks for the feedback. I haven’t compiled any html documentation, but most of the functions and classes have python doc-strings with extra examples. So generating an overview should be easy. I will look into it.

You can get the python documentation for the functions.

print app.start_macro.__doc__

Or if you use IPython:

?app.start_macro

I host AnyPyTools on GitHub, so you can ask further questions there. You are also welcome to add stuff to the documentation if you think something is missing.

https://github.com/AnyBody-Research-Group/AnyPyTools

/Morten