Skip to main content

Making a CLI Application by wrapping

Project description

wrapp: Making a CLI Application by wrapping

INSTALL

pip install wrapp

USAGE

TL;DR

  1. Create your Python script under a few rules. To do so, start with wrapp.new.

    wrapp.new > YOURS.py
    
  2. Edit YOURS.py as you like.

  3. Then you can run your Python script as an CLI app.

    wrapp YOURS.py
    

That's it. Let's enjoy !

Create your Python script under a few rules

By using wrapp.new,

wrapp.new > YOURS.py

you can get a template Python file named YOURS.py.

wrapp.new outputs template code at stdout.

$ cat YOURS.py
#!/usr/bin/env python3
from logging import getLogger


logger = getLogger(__name__)


def add_arguments(parser):
    ...


def main(args):
    ...

Starting with this template, add program options in add_arguments(parser).
The type of parser is assumed as argparse.ArgumentParser class.

And main(args) function is the entry point. When you run wrapp YOURS.py, the program arguments are parsed as defined in add_arguments(parser) and stored in the variable named args. Then all program arguments and options are output via logger. Finally, the main(args) is called.

As shown above, wrapp assumes your Python file contains add_arguments(parser) and main(args). logger is optional. Also logger can be replaced its name as _LOG or LOG. For logger, it's OK to use any other 3rd-party logging modules like loguru.

Run your Python script as an CLI app

Assume your Python script is YOURS.py.

wrapp YOURS.py --your-options ...

That is, just replace python to wrapp. Then you can keep your script simple:

  • if __name__ == '__main__': is not needed.
  • Also you don't need any noisy modules such as argparse, from argparse import ..., from logging import ....

Debugging

When you want to debug your script, run the code like this.

python3 -m pdb -m wrapp YOURS.py --your-options ...

Then the debugging mode (pdb) will be started.

FEATURES

  • No dependencies. wrapp only depends on Python standard libraries.

  • One file. If you don't need to install other packages at all, just copy src/wrapp/wrapp.py.

    $ cp PATH/TO/wrapp_repo/src/wrapp/wrapp.py ./wrapp
    $ chmod u+x wrapp
    $ ./wrapp.new > YOURS.py
    $ ./wrapp YOURS.py
    
  • It's like python-fire. But for wrapp, you don't need to import any other module in your Python code.

  • It's trivial but you also run your script without the extension; wrapp YOURS.

LICENSE

MIT License.

BACKGROUNDS

As I wrote tons of Python CLI applications, I noticed that,

  • argparse is the best practice to add my program command options.
  • logging is not bad if I modify something (format, ...).
  • But I noticed that there are many similar lines in my applications. And they make my code more dirty.

Here is my application code pattern. Please note that there is nothing infomative.

#!/usr/bin/env python3
from argparse import ArgumentParser, ArgumentDefaultsHelpFormatter
from logging import getLogger
from pathlib import Path
import logging.config


_LOG = getLogger(__name__)


def add_arguments(parser):
    parser.add_argument(
            'in_file', type=Path,
            help='An input file.')
    parser.add_argument(
            '--out-dir', '-d', type=Path, default=None,
            help='A directory.')


def _main(args):
    _LOG.debug('debug')
    _LOG.info('info')
    _LOG.warning('warning')
    _LOG.error('error')
    _LOG.critical('critical')
    ...


def _parse_args():
    parser = ArgumentParser(formatter_class=ArgumentDefaultsHelpFormatter)
    parser.add_argument('-i', '--input-files', nargs='*', help='input files.')
    args = parser.parse_args()
    logging.config.fileConfig('logging.conf')
    for k,v in vars(args).items():
        _LOG.info('{}= {}'.format(k, v))
    return args


def _print_args(args):
    for k, v in vars(args).items():
        _LOG.info(f'{k}= {v}')


if __name__ == '__main__':
    parser = ArgumentParser(formatter_class=ArgumentDefaultsHelpFormatter)
    add_arguments(parser)
    args = parser.parse_args()
    logging.config.fileConfig('logging.conf')
    _print_args(args)
    _main(args)

So I decided to separate it to 2 files; one is the contents only and the other is a wrappter to make any Python files an CLI app.

Finally, I can make the above code much more simple,

#!/usr/bin/env python3
from logging import getLogger
from pathlib import Path


_LOG = getLogger(__name__)


def add_arguments(parser):
    parser.add_argument(
            'in_file', type=Path,
            help='An input file.')
    parser.add_argument(
            '--out-dir', '-d', type=Path, default=None,
            help='A directory.')


def main(args):
    _LOG.debug('debug')
    _LOG.info('info')
    _LOG.warning('warning')
    _LOG.error('error')
    _LOG.critical('critical')
    ...

It's similar to python-fire.

But when I used the fire, I have to insert from fire import Fire and Fire(your_func). I'd like to remove even such a few code.

Then I'm completly free from noisy modules / code !

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

wrapp-0.4.0.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

wrapp-0.4.0-py3-none-any.whl (4.9 kB view details)

Uploaded Python 3

File details

Details for the file wrapp-0.4.0.tar.gz.

File metadata

  • Download URL: wrapp-0.4.0.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/3.9.5 Darwin/21.2.0

File hashes

Hashes for wrapp-0.4.0.tar.gz
Algorithm Hash digest
SHA256 3beee13591a4eb6214d8d6e3e619c40e0b2e53975f424b86c91ab3194a27fb37
MD5 b335fa309cde300ae2574fbca39670ad
BLAKE2b-256 30ac427541c763907f50e4ee290843f0bbec3bef0f862a7feb50e6ec5326eeca

See more details on using hashes here.

File details

Details for the file wrapp-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: wrapp-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 4.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/3.9.5 Darwin/21.2.0

File hashes

Hashes for wrapp-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 292e457f32ec67812c2b4524ba7e98d04c85fd1729ab823ba1280254e2ef4a52
MD5 62a613051b62602d9be1763aa7185550
BLAKE2b-256 275e31169e9759c4dcfddb33bd3d1099b3082286d6f7de545806259112751014

See more details on using hashes here.

Supported by

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