worky


Nameworky JSON
Version 1.0.2 PyPI version JSON
download
home_pagehttps://github.com/ZappaBoy/worky
SummaryWorky is a tool that helps to define and load project workspaces.
upload_time2023-05-12 05:22:10
maintainerZappaBoy
docs_urlNone
authorZappaBoy
requires_python>=3.10,<4.0
license
keywords worky productivity workspace initializer
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Worky
Manage your workspaces and increase your productivity.

## What is Worky?
Worky is a tool that helps to define and load project workspaces. It can be used to load a project workspace with a single command and quickly start your work.
Worky saves you from wasting time doing repetitive tasks before actually starting to work.
This project can be used for every type of project or workspace, the only limitation is due to the functionality of the programs that you can run from CLI.

<img alt="Demo gif" src="https://s11.gifyu.com/images/worky_demo_compressed.gif" width="100%"/>

## Future improvements
Please note that this is a work-in-progress tool. If you have any ideas or suggestions, please open an issue or a pull request.
Any helps is appreciated. Here is a list of future improvements:
- [ ] Add the window manager support to open programs in a specific workspace/monitor.

## Installation
This project uses [Poetry](https://python-poetry.org/) to manage dependencies and packaging and it is available on [PyPI](https://pypi.org/project/worky/).
To install it, simply run:
```shell
pip install worky
```
### For Arch Linux Repository users
If you are on an arch-based distro and can access to the [Arch Linux Repository (AUR)](https://aur.archlinux.org/) you can install [worky](https://aur.archlinux.org/packages/worky) using an AUR helper like [yay](https://github.com/Jguer/yay):
```shell
yay -S worky
```

## Configuration
If you prefer a practical way to understand how to worky configuration works, you can take a look at the [examples directory](https://github.com/ZappaBoy/worky/tree/main/examples).

### Worky configuration file
There are multiple ways to configure worky:
 1. Worky automatically looks for a `.worky.toml` file in the current directory where is called.
 2. You can create a `~/.config/worky/{{project_name}}.toml` file and worky will automatically look for it when you run `worky project_name`.
    For example, if you have a project named `my_project` you can create a `~/.config/worky/my_project/config.toml` file and use `worky my_project` to load the project workspace.
 3. You can create a subdirectory named as your project (`project_name`) under the `~/.config/worky/`. Here you can put your `config.toml` file and worky will look for it when you run `worky project_name`.
    For example, if you have a project named `my_project` you can create a `~/.config/worky/my_project/config.toml` file and use `worky my_project` to load the project workspace.
 4. You can specify a configuration file using the `-c` flag followed by the path of the config file (see `worky --help` for more details).

### Variables
Variables can be defined in the `[variables]` section of the configuration file. The variable's value is the command to be executed.
The variables can be used in all the config file except for the steps name.
The value of the variables used in the step name defines the command that will be executed. See the [steps section](#steps) for more details.

### Steps
The steps are the commands that will be executed when you load the workspace. The command is defined by the step name using a variable.
For example, if you have a variable named `backend` with the value `idea` you can define a step named `backend` and worky will run the idea IDE.

#### Args
Steps can have an `args` property that is a list of arguments to be passed to the command when it is executed.
An example of an argument can be the path of the project to open but this strictly depends on the program that you want to load.

#### Condition
Steps can have a `condition` property that is the name of a flag that you can pass when you run worky that defines if the step should be executed or not.
For example, if you want to run a `docker-compose` command only if you pass the `-f docker` flag you can define a step like this:
```toml
[variables]
compose = "docker-compose"

[compose]
condition = "docker"
args = [
    "-f",
    "/path/to/docker-compose.yaml",
    "up"
]
```

Then you can run `worky -f docker` to load the workspace and run the `compose` step.

## Tips and tricks

### Create an alias

You can create an alias by simply create a symbolic link to your config file in the `~/.config/worky/` directory.

```shell
ln -s ~/.config/worky/very_long_project_name.toml ~/.config/worky/aliased_name.toml
```

Then you can use both `worky very_long_project_name` and `worky aliased_name` to load the workspace.

## Limitations

Worky configuration depends on the [TOML](https://toml.io/en/) syntax. This means that you can't create two steps with
the same name.
You can crate two different steps using variables with the same value. Moreover, this helps to keep the configuration
file clean and readable.

## Usage

After installing and configured worky, you can use it to load your project workspace simply by running:

```shell
worky  # If you have a .worky.toml file in the current directory
# or
worky {{project_name}}  # If you have a config file in ~/.config/worky/{{project_name}}/config.toml or ~/.config/worky/{{project_name}}.toml
# or
worky -c {{path_to_config_file}}  # Defining a custom config file
```

## For developers
Install dependencies:
```shell
pyenv local 3.10 # Or higher like 3.11.1
poetry use env 3.10
poetry install
poetry run worky {{your_command_args}}
```

After you have made your changes, if you have changed something in the `pyproject.toml` use `poetry2setup` dev dependency to update `setup.py`:
```shell
poetry2setup > setup.py
```

Then build the package with `poetry build` and create a PR with your changes if there are no issues.

# Buy me a coffee
If you appreciate my work I will appreciate if you [buy me a coffee](https://github.com/sponsors/ZappaBoy).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ZappaBoy/worky",
    "name": "worky",
    "maintainer": "ZappaBoy",
    "docs_url": null,
    "requires_python": ">=3.10,<4.0",
    "maintainer_email": "federico.zappone@justanother.cloud",
    "keywords": "worky,productivity,workspace,initializer",
    "author": "ZappaBoy",
    "author_email": "federico.zappone@justanother.cloud",
    "download_url": "https://files.pythonhosted.org/packages/f3/16/0a0660f04741287bc853b94060852b8cea4e4253d130959271b59ab183d0/worky-1.0.2.tar.gz",
    "platform": null,
    "description": "# Worky\nManage your workspaces and increase your productivity.\n\n## What is Worky?\nWorky is a tool that helps to define and load project workspaces. It can be used to load a project workspace with a single command and quickly start your work.\nWorky saves you from wasting time doing repetitive tasks before actually starting to work.\nThis project can be used for every type of project or workspace, the only limitation is due to the functionality of the programs that you can run from CLI.\n\n<img alt=\"Demo gif\" src=\"https://s11.gifyu.com/images/worky_demo_compressed.gif\" width=\"100%\"/>\n\n## Future improvements\nPlease note that this is a work-in-progress tool. If you have any ideas or suggestions, please open an issue or a pull request.\nAny helps is appreciated. Here is a list of future improvements:\n- [ ] Add the window manager support to open programs in a specific workspace/monitor.\n\n## Installation\nThis project uses [Poetry](https://python-poetry.org/) to manage dependencies and packaging and it is available on [PyPI](https://pypi.org/project/worky/).\nTo install it, simply run:\n```shell\npip install worky\n```\n### For Arch Linux Repository users\nIf you are on an arch-based distro and can access to the [Arch Linux Repository (AUR)](https://aur.archlinux.org/) you can install [worky](https://aur.archlinux.org/packages/worky) using an AUR helper like [yay](https://github.com/Jguer/yay):\n```shell\nyay -S worky\n```\n\n## Configuration\nIf you prefer a practical way to understand how to worky configuration works, you can take a look at the [examples directory](https://github.com/ZappaBoy/worky/tree/main/examples).\n\n### Worky configuration file\nThere are multiple ways to configure worky:\n 1. Worky automatically looks for a `.worky.toml` file in the current directory where is called.\n 2. You can create a `~/.config/worky/{{project_name}}.toml` file and worky will automatically look for it when you run `worky project_name`.\n    For example, if you have a project named `my_project` you can create a `~/.config/worky/my_project/config.toml` file and use `worky my_project` to load the project workspace.\n 3. You can create a subdirectory named as your project (`project_name`) under the `~/.config/worky/`. Here you can put your `config.toml` file and worky will look for it when you run `worky project_name`.\n    For example, if you have a project named `my_project` you can create a `~/.config/worky/my_project/config.toml` file and use `worky my_project` to load the project workspace.\n 4. You can specify a configuration file using the `-c` flag followed by the path of the config file (see `worky --help` for more details).\n\n### Variables\nVariables can be defined in the `[variables]` section of the configuration file. The variable's value is the command to be executed.\nThe variables can be used in all the config file except for the steps name.\nThe value of the variables used in the step name defines the command that will be executed. See the [steps section](#steps) for more details.\n\n### Steps\nThe steps are the commands that will be executed when you load the workspace. The command is defined by the step name using a variable.\nFor example, if you have a variable named `backend` with the value `idea` you can define a step named `backend` and worky will run the idea IDE.\n\n#### Args\nSteps can have an `args` property that is a list of arguments to be passed to the command when it is executed.\nAn example of an argument can be the path of the project to open but this strictly depends on the program that you want to load.\n\n#### Condition\nSteps can have a `condition` property that is the name of a flag that you can pass when you run worky that defines if the step should be executed or not.\nFor example, if you want to run a `docker-compose` command only if you pass the `-f docker` flag you can define a step like this:\n```toml\n[variables]\ncompose = \"docker-compose\"\n\n[compose]\ncondition = \"docker\"\nargs = [\n    \"-f\",\n    \"/path/to/docker-compose.yaml\",\n    \"up\"\n]\n```\n\nThen you can run `worky -f docker` to load the workspace and run the `compose` step.\n\n## Tips and tricks\n\n### Create an alias\n\nYou can create an alias by simply create a symbolic link to your config file in the `~/.config/worky/` directory.\n\n```shell\nln -s ~/.config/worky/very_long_project_name.toml ~/.config/worky/aliased_name.toml\n```\n\nThen you can use both `worky very_long_project_name` and `worky aliased_name` to load the workspace.\n\n## Limitations\n\nWorky configuration depends on the [TOML](https://toml.io/en/) syntax. This means that you can't create two steps with\nthe same name.\nYou can crate two different steps using variables with the same value. Moreover, this helps to keep the configuration\nfile clean and readable.\n\n## Usage\n\nAfter installing and configured worky, you can use it to load your project workspace simply by running:\n\n```shell\nworky  # If you have a .worky.toml file in the current directory\n# or\nworky {{project_name}}  # If you have a config file in ~/.config/worky/{{project_name}}/config.toml or ~/.config/worky/{{project_name}}.toml\n# or\nworky -c {{path_to_config_file}}  # Defining a custom config file\n```\n\n## For developers\nInstall dependencies:\n```shell\npyenv local 3.10 # Or higher like 3.11.1\npoetry use env 3.10\npoetry install\npoetry run worky {{your_command_args}}\n```\n\nAfter you have made your changes, if you have changed something in the `pyproject.toml` use `poetry2setup` dev dependency to update `setup.py`:\n```shell\npoetry2setup > setup.py\n```\n\nThen build the package with `poetry build` and create a PR with your changes if there are no issues.\n\n# Buy me a coffee\nIf you appreciate my work I will appreciate if you [buy me a coffee](https://github.com/sponsors/ZappaBoy).\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Worky is a tool that helps to define and load project workspaces.",
    "version": "1.0.2",
    "project_urls": {
        "Documentation": "https://github.com/ZappaBoy/worky/blob/main/README.md",
        "Homepage": "https://github.com/ZappaBoy/worky",
        "Repository": "https://github.com/ZappaBoy/worky"
    },
    "split_keywords": [
        "worky",
        "productivity",
        "workspace",
        "initializer"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4af343d23950ef9dbb9d00d25679288e9533376ce1ae730421e7d7d828228525",
                "md5": "59640ebe19353447e0328311e33dd8f0",
                "sha256": "71b96e270c75e107ce76bb06bdf1166ec4ebe298e765960a4137de54656e1a52"
            },
            "downloads": -1,
            "filename": "worky-1.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "59640ebe19353447e0328311e33dd8f0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10,<4.0",
            "size": 19351,
            "upload_time": "2023-05-12T05:21:26",
            "upload_time_iso_8601": "2023-05-12T05:21:26.998769Z",
            "url": "https://files.pythonhosted.org/packages/4a/f3/43d23950ef9dbb9d00d25679288e9533376ce1ae730421e7d7d828228525/worky-1.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3160a0660f04741287bc853b94060852b8cea4e4253d130959271b59ab183d0",
                "md5": "29d75e296533222300bd5944307bdca2",
                "sha256": "46a2b63e0720b8d1029424b18ee6f45657b7e3ae0da0d568ae69e4fa881258ad"
            },
            "downloads": -1,
            "filename": "worky-1.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "29d75e296533222300bd5944307bdca2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10,<4.0",
            "size": 19183,
            "upload_time": "2023-05-12T05:22:10",
            "upload_time_iso_8601": "2023-05-12T05:22:10.271459Z",
            "url": "https://files.pythonhosted.org/packages/f3/16/0a0660f04741287bc853b94060852b8cea4e4253d130959271b59ab183d0/worky-1.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-12 05:22:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ZappaBoy",
    "github_project": "worky",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "worky"
}
        
Elapsed time: 0.06630s