pyfcstm.entry
Entry points for the pyfcstm.entry package.
This package exposes the command-line interface (CLI) entry point for the
pyfcstm application. The primary public object is the CLI group imported
as pyfcstmcli, which can be used to invoke CLI commands programmatically
or to register it with external tooling.
The package contains the following main components:
pyfcstmcli- CLI group object for thepyfcstmcommand-line tool
Example:
>>> from pyfcstm.entry import pyfcstmcli
>>> # The object is typically used by CLI frameworks.
>>> # Actual invocation is usually handled by the CLI framework itself.
Note
The underlying CLI implementation is defined in pyfcstm.entry.cli.
This package module merely re-exports the CLI group for convenience.
- pyfcstm.entry.base
- pyfcstm.entry.cli
- pyfcstm.entry.dispatch
- pyfcstm.entry.generate
- pyfcstm.entry.plantuml
- pyfcstm.entry.simulate
- pyfcstm.entry.visualize
__all__
- pyfcstm.entry.__all__ = ['pyfcstmcli']
Built-in mutable sequence.
If no argument is given, the constructor creates a new empty list. The argument must be an iterable if specified.