Skip to main content
https://readthedocs.org/projects/mach/badge/?version=latest https://travis-ci.org/oz123/mach.svg?branch=master https://coveralls.io/repos/github/oz123/mach/badge.svg?branch=master

Magical Argparse Command Helper

https://raw.githubusercontent.com/oz123/mach/master/imgs/mach-logo.jpg

Features

  • Get your CLI interfaces quickly

  • Turn a simple class to a CLI application or an interactive interpreter.

Given:

class Calculator:

    def add(self, a, b):
        """adds two numbers and prints the result"""
        return a + b

    def div(self, a, b):
        """divide one number by the other"""
        return a / b

You can make command line application using the decorator mach1:

from mach import mach1

@mach1()
class Calculator:

    def add(self, int: a, int: b):
        """adds two numbers and prints the result"""
       print(a + b)

    def div(self, int: a, int: b):
        """divide one number by the other"""
       print(a / b)


calc = Calculator()

calc.run()

Now if you run the module, you will get a program that you can invoke with the flag -h or --help:

$ python calc.py -h
usage: calc.py [-h] {add,div} ...

positional arguments:
{add,div}   commands

   add       adds two numbers and prints the result
   div       divide one number by the other

optional arguments:
  -h, --help  show this help message and exit

each method is a subcommand, with type checking and it’s own very help. Hench, this won’t work:

$ python calc.py add foo bar
usage: calc.py add [-h] b a
calc.py add: error: argument b: invalid int value: 'foo'

And this will:

$ python calc.py add 4 9
13

To see the help of the subcommand use -h:

$ python calc.py add -h
usage: calc.py add [-h] b a

positional arguments:
 b
 a

optional arguments:
  -h, --help  show this help message and exit

With the help of the decorator mach2 you can turn your class to CLI application and have also an iteractive shell which invoke when no parameters are given:

$ ./examples/calc2.py
Welcome to the calc shell. Type help or ? to list commands.

calc2 > ?

Documented commands (type help <topic>):
========================================
add  div  exit  help

calc2 > help add
adds two numbers and prints the result
calc2 > add 2 4
6
calc2 > div 6 2
3.0
calc2 > exit
Come back soon ...
$

Installation

You can get mach from PyPI using pip:

$ pip install mach.py

Release files for mach.py 0.4.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for mach.py 0.4.4
File Size Uploaded
mach.py-0.4.4.tar.gz 78.7 kB Details

Release files / mach.py-0.4.4.tar.gz

Download URL mach.py-0.4.4.tar.gz
Size 78.7 kB
Tags Source
SHA-256 checksum
How to use checksums
a06b596331d5a9d23a9430dc52449b5699ed55559407e9467696bad492bf19f6
BLAKE2b-256 checksum
How to use checksums
31dda7dbbf458c3610793b72ecabd3ad137a1b350b0fe4611f617cc0f9b1878e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0rc2

Release history Release notifications | RSS feed

This release

0.4.4 This release

1 release file

0.4.3

1 release file

0.4.2

1 release file

0.4.1

1 release file

0.4.0

1 release file

0.3.1

1 release file

0.2.0

1 release file

0.1.3

1 release file

0.1.2

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page