{"id":21674638,"url":"https://github.com/gabrielguarisa/gurun","last_synced_at":"2025-11-08T19:03:00.520Z","repository":{"id":45177646,"uuid":"443437259","full_name":"gabrielguarisa/gurun","owner":"gabrielguarisa","description":"Task automation framework","archived":false,"fork":false,"pushed_at":"2023-01-21T21:24:15.000Z","size":86,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-25T13:36:10.612Z","etag":null,"topics":["automation","framework","pipeline","task","workflow"],"latest_commit_sha":null,"homepage":"","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/gabrielguarisa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-12-31T22:55:39.000Z","updated_at":"2022-03-19T11:31:52.000Z","dependencies_parsed_at":"2023-02-12T12:45:30.701Z","dependency_job_id":null,"html_url":"https://github.com/gabrielguarisa/gurun","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrielguarisa%2Fgurun","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrielguarisa%2Fgurun/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrielguarisa%2Fgurun/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrielguarisa%2Fgurun/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gabrielguarisa","download_url":"https://codeload.github.com/gabrielguarisa/gurun/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244583176,"owners_count":20476233,"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":["automation","framework","pipeline","task","workflow"],"created_at":"2024-11-25T13:48:55.644Z","updated_at":"2025-11-08T19:02:55.462Z","avatar_url":"https://github.com/gabrielguarisa.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gurun\n\n\u003cdiv align=\"center\"\u003e\n\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![Pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit\u0026logoColor=white)](https://github.com/gabrielguarisa/gurun/blob/master/.pre-commit-config.yaml)\n[![Semantic Versions](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--versions-e10079.svg)](https://github.com/gabrielguarisa/gurun/releases)\n[![License](https://img.shields.io/github/license/gabrielguarisa/gurun)](https://github.com/gabrielguarisa/gurun/blob/master/LICENSE)\n\nTask automation framework\n\n\u003c/div\u003e\n\n## Installation\n\nFull installation:\n\n```bash\npip install gurun[full]\n```\n\nInstalling only the main framework components:\n\n```bash\npip install gurun\n```\n\nYou can also install component dependencies separately. Thus, we have the cv (computer vision) version and the gui version:\n\n```bash\npip install gurun[cv] \npip install gurun[gui]\n```\n\n### Multiple worspaces\n\nFor the multi-workspace system to work, install the following libraries on your operating system.\n\n#### Windows\n\nInstall [PSVirtualDesktop](https://github.com/MScholtes/PSVirtualDesktop):\n```shell\nPS C:\\\u003e Install-Module VirtualDesktop\n```\n\n#### Linux\n\nInstall wmctrl:\n```shell\nsudo apt-get install -y wmctrl\n```\n\n## Examples\n\n- [bombcrypto-bot](https://github.com/gabrielguarisa/bombcrypto-bot) - A bot to automate the bombcrypto game.\n\n## Development\n### Setting up a development environment\n\nIf you don't have a local development environment, you can follow these steps to set one up.\n\nFirst, if you have not already, install [poetry](https://python-poetry.org/):\n\n```bash\npip install poetry\n```\n\nNow, initialize poetry and [pre-commit](https://pre-commit.com/) hooks:\n\n```bash\nmake init\n```\n\n### Running tests\n\nYou can run the tests with:\n\n```bash\nmake tests\n```\n\nThis will run the tests with [pytest](https://docs.pytest.org/en/latest/) and show information about the coverage.\n\n### Formatting the code\n\nTo format the code, you can use the command:\n\n```bash\nmake formatting\n```\n\nThis will run the [isort](https://github.com/PyCQA/isort)  and [black](https://github.com/psf/black) commands.\n\nIf you want to just check the formatting, use the command:\n\n```bash\nmake check-formatting\n```\n\n### Releasing a new version\n\nTo release a new version, you need to follow these steps:\n\n1. Update the version with `poetry version \u003cversion\u003e` and commit the changes. This project follows [Semantic Versioning](http://semver.org/), so the version number should follow the format `\u003cmajor\u003e.\u003cminor\u003e.\u003cpatch\u003e`. Alternatively, you can also use the version as `major` or `minor` or `patch`, and the version number will be automatically incremented.\n\n2. Create a Github release with the new version number.\n\n3. (Optional) Publish the new version to PyPI with `poetry publish --build`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabrielguarisa%2Fgurun","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgabrielguarisa%2Fgurun","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabrielguarisa%2Fgurun/lists"}