Source code for pyrosetta_documentarian

from .attributes import AttributeDocumentarian  # document what the values of the attributes are
from .comment import CommentDocumentarian  # get the C++ comments
from .xml import XMLDocumentarian  # find the relevant XML script test

[docs]class Documentarian(AttributeDocumentarian, XMLDocumentarian, CommentDocumentarian): """ A class to help reverse engineer what a Pyrosetta class does. """ # ``CommentDocumentarian`` has its own init. pass