Skip to main content

Package for manage console commands

Project description

tty-utility

Tty-utility is an console for python programs

Install

Python pip

pip install tty-utility

Python direct install

  • Download archive & extract
  • python setup.py install

Usage

Imports

from ttyutility import Command

Import an Command base class

from ttyutility import Console

Import an Console class

Command class

Command class is an base class for new command. It's necessary inherit of Command.

configure

The configure method register an command in system. But for register arguments of command, it's necessary of reimplement method.

In method, call parent method first. Used add_argument method for register a new argument.

add_argument

Add new argument of command :

  • name of argument
  • number of parameters (0 by default)
  • type of parameter (str by default)
  • help text (not help text by defaut)

add_argument is used in configure method.

execute

execute method, run the treatment of command and arguments.

Console class

Console class is an console manager.

For manage console: used register, for register all of commands, and run for run console.

register

Register a new command in console system.

  • Name of command
  • Instance of Command class or herited of class

run

Run the console system.

  • List or arguments (None by default)

The list of arguments (tuple), simulate a command line.

Example

from ttyutility import Command, Console


class NewCommand(Command):
    test = "ds"

    def configure(self, name: str, parser, prog: str = None, help: str = None):
        super(NewCommand, self).configure(name, parser, prog, help)

        self.add_argument('tt')

    def execute(self, args: dict):
        if args['tt']:
            print(args)


console = Console()
console.register('test', NewCommand())
console.run()

Declaration of new command, add argument in configure method and treatment in execute method.

Create instance of console, register new command and run console.

Credits

Package developed by Christophe Daloz - De Los Rios christophedlr@gmail.com

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

tty-utility-1.0.0.tar.gz (3.9 kB view details)

Uploaded Source

Built Distribution

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

tty_utility-1.0.0-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

Details for the file tty-utility-1.0.0.tar.gz.

File metadata

  • Download URL: tty-utility-1.0.0.tar.gz
  • Upload date:
  • Size: 3.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for tty-utility-1.0.0.tar.gz
Algorithm Hash digest
SHA256 bc3996fa418f603043c3e2212ec43f1af9a2d0706c70f64908b84309bcd8c774
MD5 8c53b1ad6697eccdbd18d9df94ef2c96
BLAKE2b-256 89464f7a41a8296df4e8a645dc960561fdd4e3f2a762cdb8fb86cd4feef49d3c

See more details on using hashes here.

File details

Details for the file tty_utility-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: tty_utility-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 5.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for tty_utility-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0e98a97bca9d07820d887e1a35467e3aa948bef959afde70e44357d9bade4835
MD5 9b18c64d6f4e19926aedd7dddf54c93a
BLAKE2b-256 bd2ed35295bd4a8cadcdaae5b886673c67ca4271b0958d49ae1d31ffa1a44b54

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