Reference
Complete technical reference for all Angreal APIs, configurations, and commands.
Browse the complete Rust API documentation generated by Rustdoc.
Detailed reference for the Python API used in task definitions.
- CLI Reference - Complete command-line interface documentation
- Configuration - Configuration file formats and options
angreal.command
- Task definition decoratorsangreal.template
- Template rendering functionsangreal.utils
- Utility functions
# Basic command
@angreal.command(name="task", about="Description")
def my_task():
pass
# Command with arguments
@angreal.argument(name="input", help="Input file")
def task_with_args(input):
pass
# Command group
group = angreal.command_group(name="group")
@group()
@angreal.command(name="subcommand")
def grouped_command():
pass
- API Details: For complete parameter lists and return types
- Examples: Most entries include usage examples
- Cross-references: Links to related functionality
- Version info: Note which version introduced features