Skip to main content

Task-Automator is a modern Python framework for building declarative command-line interfaces with nested subcommands, designed for automation workflows and build systems.

Project description

Task-Automator - Declarative CLI Automation Framework

Python Version License

Supported Platforms

Windows macOS Linux

Overview | What is Task-Automator? | Features | Installation | Build | Defining Commands | License

[!IMPORTANT] 📣 As of March 2025 Task-Automator is still in early development. 📣

Task-Automator is a best-effort open project library. This means that support is not guaranteed and how long the project will be maintained is unknown.

What is Task-Automator?

Task-Automator is a modern Python framework for building declarative command-line interfaces
with nested subcommands, designed for automation workflows and build systems.

Task-Automator is implemented in pure Python that enables scripting of more complicated tasks.

Features

  • 🚀 Declarative Command Tree - Define CLI structure through simple nested dictionaries
  • 🛠 Zero Boilerplate - Focus on business logic, not argument parsing
  • 📚 Automatic Help Generation - Built-in help system with hierarchical documentation
  • 🌳 Hierarchical Commands - Support for unlimited nested subcommands
  • 🖥 Cross-Platform - Works on Windows, Linux, and macOS

Installation

You can use pip to install Task-Automator

pip install task-automator

Build

Task-Automator uses Poetry for its build process. To build the wheel file and source distribution run:

poetry build

Defining Commands

Create your command structure in a Python module:

...


def setup_dev_env():
  """Initialize development environment"""
  print("Installing dependencies...")


AUTOMATION_TREE = {
  "setup-dev-env": {
    "help": "Initialize development environment",
    "func": setup_dev_env
  },
  "build": {
    "help": "Build artifacts",
    "subcommands": {
      "win-package": {
        "help": "Create Windows deployment package",
        "func": build_windows_package
      },
      "setup-exe": {
        "help": "Generate installer executable",
        "func": create_installer
      }
    }
  }
}

if __name__ == "__main__":
  from task_automator import automator
  automator.Automator(AUTOMATION_TREE).run()

License

This project is licensed under the BSD-3 License - see the LICENSE file for details.

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

task_automator-0.2.1.tar.gz (6.0 kB view details)

Uploaded Source

Built Distribution

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

task_automator-0.2.1-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file task_automator-0.2.1.tar.gz.

File metadata

  • Download URL: task_automator-0.2.1.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.11.9 Windows/10

File hashes

Hashes for task_automator-0.2.1.tar.gz
Algorithm Hash digest
SHA256 82ebca7c5d297b5b231e02870d83b4c1ee28da6525164d670dce5e3fa2f82347
MD5 50a99d7668f72e12158b344dc193adf6
BLAKE2b-256 d5ab238bf2fb2dd85061e35bf1be9fb89539c159fa5b744bf87e918a28aec901

See more details on using hashes here.

File details

Details for the file task_automator-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: task_automator-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 10.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.11.9 Windows/10

File hashes

Hashes for task_automator-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5b4242515abb46eafce11a60b4721dbe898ff4c0e0a46be59d40eabe55f9b9e0
MD5 10b941ba9bab4ee794b4b1572cfbf9bf
BLAKE2b-256 ecee5c1deeb8e68f2f397a92c71f85f6a907e4b754b7588d15381c344a4362d6

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