Skip to main content

A framework for writing console scripts and running commands

Project description

A simple command runner that uses argparse from the Python standard library under the hood. Runs on Python 3 only (3.10 and up). Uses annotations to configure options.

There are two basic use cases:

  1. Standalone console scripts (including scripts with subcommands).

  2. Collections of commands (similar to make, Fabric, etc).

Building on these, especially #2, there are a couple of more advanced use cases:

  1. A simple orchestration/deployment tool. If you have a simple build process and just need to rsync some files to a server, a few simple commands might be all you need.

  2. A wrapper for more sophisticated orchestration/deployment tools–an alternative to the Bash scripts you might use to drive Ansible playbooks and the like.

Basic Usage

Define a command:

from runcommands import arg, command
from runcommands.commands import local

@command
def test(*tests: arg(help='Specific tests to run (instead of using discovery)')):
    if tests:
        local(('python', '-m', 'unittest', tests))
    else:
        local('python -m unittest discover .')

Show its help:

> run test -h
test [-h] [TESTS [TESTS ...]]

positional arguments:
  TESTS       Specific tests to run (instead of using discovery)

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

Run it:

> run test
..........
----------------------------------------------------------------------
Ran 0 tests in 0.000s

OK

Create a standalone console script using a standard script entry point:

# pyproject.toml
[project.scripts]
my-test-script = "package.module:test.console_script"

Reinstall the package to install the script and then run it:

> my-test-script
..........
----------------------------------------------------------------------
Ran 0 tests in 0.000s

OK

See the main documentation for more information on installation, defining & running commands, configuration, etc.

Features

  • Easily create standalone console scripts: simply define a function and wrap it with the @command decorator.

  • Easily create standalone console scripts that have subcommands (a la git).

  • Create collections of commands (similar to make, Fabric, etc).

  • Run multiple commands in sequence: run build deploy.

  • Uses argparse under the hood so command line usage is familiar.

  • Provides built-in help/usage for all commands via argparse.

  • Provides command line completion (including example scripts for bash and fish).

Documentation

Detailed documentation is on Read the Docs.

License

MIT. See the LICENSE file in the source distribution.

TODO

  • Improve command line completion

  • Add more documentation and examples

  • Add more tests (current coverage is 45%)

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

runcommands-1.0a73.tar.gz (39.4 kB view details)

Uploaded Source

Built Distribution

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

runcommands-1.0a73-py3-none-any.whl (49.2 kB view details)

Uploaded Python 3

File details

Details for the file runcommands-1.0a73.tar.gz.

File metadata

  • Download URL: runcommands-1.0a73.tar.gz
  • Upload date:
  • Size: 39.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.3 {"installer":{"name":"uv","version":"0.10.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for runcommands-1.0a73.tar.gz
Algorithm Hash digest
SHA256 a6c00ab5b8f6d242e6c5acc8751c4502394f8dab05d45594cf9c338bd9a642d2
MD5 d1f431ad53ee75738b78c9203ee96eb9
BLAKE2b-256 b006249ec7103cf072851a43108c6ea836d798092c46fd2a5d4f08ba4e33e430

See more details on using hashes here.

File details

Details for the file runcommands-1.0a73-py3-none-any.whl.

File metadata

  • Download URL: runcommands-1.0a73-py3-none-any.whl
  • Upload date:
  • Size: 49.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.3 {"installer":{"name":"uv","version":"0.10.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for runcommands-1.0a73-py3-none-any.whl
Algorithm Hash digest
SHA256 ae47506825ff78ef71ac027a5f463dd3a073ae18760962d8a974c608e087ea25
MD5 775407500ae199cd08158b6fc510ceff
BLAKE2b-256 6e0564093454cb940e94cdf7e0db621ca9be04c3a5b61d8892abba290231f6ae

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