Main command entry point infrastructure for MoaT applications
Project description
moat-lib-run
% start main % start synopsis
Main command entry point infrastructure for MoaT applications.
% end synopsis
This module provides the infrastructure for building command-line interfaces for MoaT applications. It includes:
- Command-line argument parsing with Click integration
- Subcommand loading from internal modules and extensions
- Configuration file handling
- Logging setup
- Main entry point wrappers for testing
Usage
Basic command setup
from moat.lib.run import main_, wrap_main
@main_.command()
async def my_command(ctx):
"""A simple command"""
print("Hello from my command!")
Loading subcommands
Use load_subgroup to create command groups that automatically load subcommands:
from moat.lib.run import load_subgroup
import asyncclick as click
@load_subgroup(prefix="myapp.commands")
@click.pass_context
async def cli(ctx):
"""Main command group"""
pass
Processing command-line arguments
The attr_args decorator and process_args function provide flexible
argument handling:
from moat.lib.run import attr_args, process_args
@main_.command()
@attr_args(with_path=True)
async def configure(**kw):
"""Configure the application"""
config = process_args({}, **kw)
# config now contains parsed arguments
Key Functions
main_: The default main command handlerwrap_main: Wrapper for the main command, useful for testingload_subgroup: Decorator to create command groups with automatic subcommand loadingattr_args: Decorator for adding flexible argument handling to commandsprocess_args: Function to process command-line arguments into configurationLoader: Click group class that loads commands from submodules and extensions
% end main
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file moat_lib_run-0.1.4.tar.gz.
File metadata
- Download URL: moat_lib_run-0.1.4.tar.gz
- Upload date:
- Size: 13.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dcf08ec510b4bc6bda6b41e0155e3e7d22aafe68e2e9666c473f74cc3e41158
|
|
| MD5 |
fcc425a21a496940837c06a91e77700b
|
|
| BLAKE2b-256 |
c493d1da9020d9822749f9c64bddbb9bb46be2e0abc94dc18787c90dfa719a31
|
File details
Details for the file moat_lib_run-0.1.4-py3-none-any.whl.
File metadata
- Download URL: moat_lib_run-0.1.4-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41deea6acada749295668e5568c06c392247f957ac239903d64f948a45651d26
|
|
| MD5 |
4d609e5f3585ef44f568247413cd0dde
|
|
| BLAKE2b-256 |
126e0193a77a84c31d58b0750b81cac1b9475095157b1d91cc0ca299d6d90c19
|