{"id":15150602,"url":"https://github.com/shahmal1yev/boo","last_synced_at":"2025-04-07T07:53:10.746Z","repository":{"id":254177536,"uuid":"837386668","full_name":"shahmal1yev/boo","owner":"shahmal1yev","description":"boo is a command-line interface (CLI) tool designed for managing and updating versions of WordPress plugins. Built with Python's click library, this tool simplifies the process of checking plugin versions, updating individual or multiple plugins, and handling version control tasks efficiently.","archived":false,"fork":false,"pushed_at":"2024-08-23T06:45:34.000Z","size":262,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-11T03:42:11.377Z","etag":null,"topics":["plugin-manager","python","wordpress","wordpress-plugin-manager"],"latest_commit_sha":null,"homepage":"https://shahmal1yev.github.io/boo/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shahmal1yev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-02T21:15:42.000Z","updated_at":"2024-08-23T06:45:37.000Z","dependencies_parsed_at":"2024-09-26T14:24:14.638Z","dependency_job_id":null,"html_url":"https://github.com/shahmal1yev/boo","commit_stats":{"total_commits":22,"total_committers":1,"mean_commits":22.0,"dds":0.0,"last_synced_commit":"e130771f58036c9fcdf604411325015f09624c74"},"previous_names":["shahmal1yev/boo"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shahmal1yev%2Fboo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shahmal1yev%2Fboo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shahmal1yev%2Fboo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shahmal1yev%2Fboo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shahmal1yev","download_url":"https://codeload.github.com/shahmal1yev/boo/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":222728868,"owners_count":17029694,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["plugin-manager","python","wordpress","wordpress-plugin-manager"],"created_at":"2024-09-26T14:22:59.796Z","updated_at":"2024-11-02T14:40:47.999Z","avatar_url":"https://github.com/shahmal1yev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Boo Command Line Tool\n\n![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/shahmal1yev/boo?label=latest\u0026style=flat)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n![GitHub last commit](https://img.shields.io/github/last-commit/shahmal1yev/boo)\n![GitHub issues](https://img.shields.io/github/issues/shahmal1yev/boo)\n![GitHub stars](https://img.shields.io/github/stars/shahmal1yev/boo)\n![GitHub forks](https://img.shields.io/github/forks/shahmal1yev/boo)\n![GitHub contributors](https://img.shields.io/github/contributors/shahmal1yev/boo)\n\n`boo` is a command-line interface (CLI) tool built with Python's `click` library. It provides commands to manage versions of wordpress plugins, update them, and handle multiple updates efficiently.\n\n## Installation\n\nTo install the required dependencies for this tool, use the `requirements.txt` file:\n\n```bash\npip install -r requirements.txt\n```\n\n## Usage\n\nThis CLI tool provides the following commands:\n\n### 1. `versions`\n\nDisplays the versions of plugins in a specified directory.\n\n**Usage:**\n\n```bash\npython your_script.py versions --path=\u003cpath_to_plugins_directory\u003e --style=\u003coutput_style\u003e\n```\n\n**Options:**\n\n- `--path` (default: `./`): Plugins directory path.\n- `--style` (default: `outline`): Set tabulate output style.\n\n### 2. `update`\n\nUpdates the version of a specific plugin in a specified directory.\n\n**Usage:**\n\n```bash\npython your_script.py update --path=\u003cplugin_directory_path\u003e --increase=\u003cversion_increase\u003e --decrease=\u003cversion_decrease\u003e [--commit] [--zip=\u003czip_path\u003e]\n```\n\n**Options:**\n\n- `--path` (default: `./`): Plugin directory path.\n- `--increase` (default: `0.0.0`): Increase version of plugins.\n- `--decrease` (default: `0.0.0`): Decrease version of plugins.\n- `--commit`: Commit changes to Git after updating.\n- `--zip`: Path to save the zip files of updated plugins.\n\n### 3. `multi-update`\n\nPerforms batch updates on multiple plugins in a specified directory.\n\n**Usage:**\n\n```bash\npython your_script.py multi-update --path=\u003cplugins_directory_path\u003e --increase=\u003cversion_increase\u003e --decrease=\u003cversion_decrease\u003e [--include=\u003cplugins_to_include\u003e] [--exclude=\u003cplugins_to_exclude\u003e] [--style=\u003coutput_style\u003e] [--commit] [--zip=\u003czip_path\u003e]\n```\n\n**Options:**\n\n- `--path` (default: `./`): Plugins directory path.\n- `--increase` (default: `0.0.0`): Increase version of plugins.\n- `--decrease` (default: `0.0.0`): Decrease version of plugins.\n- `--include`: Include specific plugins for updating.\n- `--exclude`: Exclude specific plugins from updating.\n- `--style` (default: `outline`): Set tabulate output style.\n- `--commit`: Commit changes to Git after updating.\n- `--zip`: Path to save the zip files of updated plugins.\n\n## How to Run\n\nTo run any of the commands, use the following syntax:\n\n```bash\npython your_script.py \u003ccommand\u003e [OPTIONS]\n```\n\nReplace `\u003ccommand\u003e` with one of the available commands (`versions`, `update`, `multi-update`), and `[OPTIONS]` with the appropriate options for that command.\n\n## Example\n\n```bash\npython your_script.py versions --path=\"./plugins\" --style=\"outline\"\n```\n\nThis command will list the versions of all plugins in the `./plugins` directory using the `outline` style.\n\n```bash\npython your_script.py update --path=\"./plugin\" --increase=\"1.0.1\" --commit\n```\n\nThis command will update the version of a plugin in the `./plugin` directory to `1.0.1` and commit the changes to Git.\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Notes:\n\n1. Replace `your_script.py` with the actual name of your Python script that contains the `boo` class.\n2. Add any additional instructions or examples as needed based on your specific use case or setup.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshahmal1yev%2Fboo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshahmal1yev%2Fboo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshahmal1yev%2Fboo/lists"}