The public Python surface is primarily the CLI and helpers used by commands. The following index exposes module docstrings and callable signatures.

dorgy

Top-level package for the Dorgy CLI.

__dir__()

Return the list of attributes available on the package module.

Returns:

Type Description
list[str]

list[str]: Sorted collection of attribute names.

__getattr__(name)

Return dynamic module attributes supported by the package.

Parameters:

Name Type Description Default
name str

Attribute name being requested.

required

Returns:

Name Type Description
str str

Package version when __version__ is requested.

Raises:

Type Description
AttributeError

If the requested attribute is not supported.