Skip to main content

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 handler
  • wrap_main: Wrapper for the main command, useful for testing
  • load_subgroup: Decorator to create command groups with automatic subcommand loading
  • attr_args: Decorator for adding flexible argument handling to commands
  • process_args: Function to process command-line arguments into configuration
  • Loader: 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

moat_lib_run-0.2.0.tar.gz (13.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

moat_lib_run-0.2.0-py3-none-any.whl (11.5 kB view details)

Uploaded Python 3

File details

Details for the file moat_lib_run-0.2.0.tar.gz.

File metadata

  • Download URL: moat_lib_run-0.2.0.tar.gz
  • Upload date:
  • Size: 13.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for moat_lib_run-0.2.0.tar.gz
Algorithm Hash digest
SHA256 37352401f93633c7ccba1ed07a304ca9405a7bca9b985b6cb073095c93c807a9
MD5 ef4b1269c4f9d28978ccff8079ae7a3b
BLAKE2b-256 09733557dc4d19ec4a6806b7bdc88ce3775977fdfe81a8c28e45297d3221f4b8

See more details on using hashes here.

File details

Details for the file moat_lib_run-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: moat_lib_run-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for moat_lib_run-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 16adff3786ec53abb5a8ef7e9d006536842a31fe00e9c95ab634997b827d218a
MD5 5ba779e8bc77eb84f958eac1dd36d70b
BLAKE2b-256 2b706c27ebd963b8d96367c700990d686ccbe6c89c5bc1dd9abef552d5e88a99

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page