Hurry

1.1 · active · verified Wed Apr 15

Hurry is a Python-based command-line interface (CLI) tool (current version 1.1) that helps users execute routine commands and scripts faster using templated configurations. It has a slow release cadence, with the latest update in 2019. It primarily functions as a standalone executable and is not intended for use as a traditional Python library with direct module imports.

Warnings

Install

Imports

Quickstart

Hurry helps you manage and execute frequently used commands via templates. First, add a command with a template, then run it, and finally, you can list or delete your saved commands.

# Add a command template
hurry add greet 'echo Hello, {name}!'

# Run the command template
hurry run greet --name Alice

# List all stored commands
hurry ls

# Delete a command template
hurry del greet

view raw JSON →