Skip to main content

A lightweight Python command runner

Project description

๐Ÿฅ๏ธ dony

A lightweight Python command runner. A just alternative.

How it works

Define your commands in donyfiles/ in the root of your project.

import dony


@dony.command()
def hello_world():
    """Hello, world!"""
    dony.shell('echo "Hello, world!"')


if __name__ == "__main__":
    hello_world()

Run commands directly as python scripts (python my_command.py) or with dony cli interface (dony <command_name> [--arg value])

Or run dony to select from all available commands:

                                                                                                                                                                                                                   
  ๐Ÿ“ squash                                                                                                                                                                                             
  ๐Ÿ“ release                                                                                                                                                                                                        
โ–Œ ๐Ÿ“ hello_world                                                                                                                                                                                                    
  3/3 โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 
Select command ๐Ÿ‘†                                                                                                                                                                                                   
โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
โ”‚ Prints "Hello, World!"                                                โ”‚
โ”‚                                                                       โ”‚
โ”‚                                                                       โ”‚
โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ

Quick Start

For MacOS:

# - Install prerequisites (pipx for global install, fzf and shfmt are optional)

brew install pipx, fzf, shfmt

# - Install dony

pipx install dony

# - Init dony (bootstraps hello-world example)

dony --init

# - Run dony

dony

# or run specific command directly with `python hello_world.py` or `dony hello-world`

Commands

import dony

@dony.command()
def greet(
    greeting: str = 'Hello',
    name: Optional[str] = None
):
    name = name or dony.input('What is your name?')
    dony.shell(f"echo {greeting}, {name}!")
  • Use the convenient shell wrapper dony.shell
  • Use a bundle of useful user interaction functions, like input, confirm and press_any_key_to_continue
  • Run commands without arguments โ€“ defaults are mandatory

Use cases

  • Build, deploy, release
  • DevOps operations
  • Testing
  • Git management
  • Repo chores

Things to know

  • All commands run from the project root (where donyfiles/ is located)
  • Available prompts based on questionary:
    • dony.input: free-text entry
    • dony.confirm: yes/no ([Y/n] or [y/N])
    • dony.select: option picker (supports multi & fuzzy)
    • dony.select_or_input: option picker with the ability to enter a custom value
    • dony.press_any_key_to_continue: pause until keypress
    • dony.path: filesystem path entry
    • dony.autocomplete: suggestion-driven input
    • dony.print: styled text output
    • dony.error: โŒ error message
    • dony.success: โœ… success message

Example

import re
from typing import Optional

import dony

@dony.command()
def squash(
    new_branch: Optional[str] = None,
    target_branch: Optional[str] = None,
    commit_message: Optional[str] = None,
    checkout_to_new_branch: Optional[str] = None,
    remove_merged_branch: Optional[str] = None,
):
    """Squashes current branch to main, checkouts to a new branch"""

    # - Get target branch

    target_branch = dony.input(
        "Enter target branch:",
        default=dony.shell(
            "git branch --list main | grep -q main && echo main || echo master",
            quiet=True,
        ),
        provided=target_branch,
    )

    # - Get github username

    github_username = dony.shell("git config --get user.name", quiet=True)

    # - Get default branch if not set

    new_branch = new_branch or f"{github_username}-flow"

    # - Get current branch

    merged_branch = dony.shell(
        "git branch --show-current",
        quiet=True,
    )

    # - Merge with target branch first

    dony.shell(
        f"""

        # push if there are unpushed commits
        git diff --name-only | grep -q . && git push
        
        git fetch origin
        git checkout {target_branch}
        git pull
        git checkout {merged_branch}

        git merge {target_branch}
        
        if ! git diff-index --quiet HEAD --; then

          # try to commit twice, in case of formatting errors that are fixed by the first commit
          git commit -m "Merge with target branch" || git commit -m "Merge with target branch"
          git push
        else
          echo "Nothing merged โ€“ no commit made."
        fi
        """,
    )

    # - Do git diff

    dony.shell(
        f"""
        root=$(git rev-parse --show-toplevel)
        
        git diff {target_branch} --name-only -z \
        | while IFS= read -r -d '' file; do
            full="$root/$file"
            printf '\033[1;35m%s\033[0m\n' "$full"
            git --no-pager diff --color=always {target_branch} -- "$file" \
              | sed $'s/^/\t/'
            printf '\n'
          done
"""
    )

    # - Ask user to confirm

    if not dony.confirm("Start squashing?"):
        return

    # - Check if target branch exists

    if (
            dony.shell(
                f"""
        git branch --list {target_branch}
    """
            )
            == ""
    ):
        return dony.error(f"Target branch {target_branch} does not exist")

    # - Get commit message from the user

    if not commit_message:
        while True:
            commit_message = dony.input(
                f"Enter commit message for merging branch {merged_branch} to {target_branch}:"
            )
            if bool(
                    re.match(
                        r"^(?:(?:feat|fix|docs|style|refactor|perf|test|chore|build|ci|revert)(?:\([A-Za-z0-9_-]+\))?(!)?:)\s.+$",
                        commit_message.splitlines()[0],
                    )
            ):
                break
            dony.print("Only conventional commits are allowed, try again")

    # - Check if user wants to checkout to a new branch

    checkout_to_new_branch = dony.confirm(
        f"Checkout to new branch {new_branch}?",
        provided=checkout_to_new_branch,
    )

    # - Check if user wants to remove merged branch

    remove_merged_branch = dony.confirm(
        f"Remove merged branch {merged_branch}?",
        provided=remove_merged_branch,
    )

    # - Do the process

    dony.shell(
        f"""

        # - Make up to date

        git diff --name-only | grep -q . && git stash push -m "squash-{merged_branch}"
        git checkout {target_branch}

        # - Set upstream if needed

        if ! git ls-remote --heads --exit-code origin "{target_branch}" >/dev/null; then
            git push --set-upstream origin {target_branch} --force
        fi

        # - Pull target branch

        git pull

        # - Merge

        git merge --squash {merged_branch}
        
        # try to commit twice, in case of formatting errors that are fixed by the first commit
        git commit -m "{commit_message}" || git commit -m "{commit_message}"
        git push 

        # - Remove merged branch

        if {str(remove_merged_branch).lower()}; then
            git branch -D {merged_branch}
            git push origin --delete {merged_branch}
        fi

        # - Create new branch

        if {str(checkout_to_new_branch).lower()}; then
            git checkout -b {new_branch}
            git push --set-upstream origin {new_branch}
        fi
    """,
    )


if __name__ == "__main__":
    squash()

License

MIT License

Author

Mark Lidenberg marklidenberg@gmail.com

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

dony-0.2.1.tar.gz (50.8 kB view details)

Uploaded Source

Built Distribution

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

dony-0.2.1-py3-none-any.whl (22.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: dony-0.2.1.tar.gz
  • Upload date:
  • Size: 50.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.2

File hashes

Hashes for dony-0.2.1.tar.gz
Algorithm Hash digest
SHA256 eb72f9b6ea16726a6226187f1511953bf86891047ca3e6277247f42fe88f0564
MD5 e83ab13495e25071ee6a022414fe2725
BLAKE2b-256 2190dbb0bdae5a3e4e59677fd10b9d3cfa61605bcc8a38b914a1dadceb6d87ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dony-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 22.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.2

File hashes

Hashes for dony-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a946cbabda48b8fe6aff6d76d6898062738bc86948429f8b6421c27e1d3b809b
MD5 40e6f9f09a8ff24ef53571e4b94412cf
BLAKE2b-256 7af0fb44f710c578d5f592536e359f25fc02776d4d0b41b3f5e44cd6823caeb9

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