The base object from which most other functionality derives. See examples for more information.
>>> from pycatia import catia
>>> documents = catia.documents
>>> # documents represents the collection of currently open documents.
>>> document = catia.active_document
>>> # document is the currently active document.
>>>
>>> # open a new CATPart document
>>> documents.add('Part')