alfred-cli


Namealfred-cli JSON
Version 2.2.7 PyPI version JSON
download
home_pagehttps://github.com/FabienArcellier/alfred-cli#alfred
SummaryAlfred is an extensible automation tool. It allows you to build your continuous integration scripts in python, and much more. You can replace any scripts using the best of both worlds, shell and python.
upload_time2024-02-10 21:58:07
maintainer
docs_urlNone
authorFabien Arcellier
requires_python>=3.8,<4.0
licenseMIT
keywords building tool makefile productivity automation continuous integration developper friendly
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            ## Alfred

[![PyPi](https://img.shields.io/pypi/v/alfred-cli.svg?label=Version)](https://pypi.org/project/alfred-cli/)
[![Python](https://img.shields.io/pypi/pyversions/alfred-cli.svg)](https://pypi.org/project/alfred-cli/)
[![CI](https://github.com/FabienArcellier/alfred-cli/actions/workflows/ci.yml/badge.svg)](https://github.com/FabienArcellier/alfred-cli/actions/workflows/ci.yml) [![CI-Windows](https://github.com/FabienArcellier/alfred-cli/actions/workflows/ci-windows.yml/badge.svg)](https://github.com/FabienArcellier/alfred-cli/actions/workflows/ci-windows.yml)
[![Documentation Status](https://readthedocs.org/projects/alfred-cli/badge/?version=latest)](https://alfred-cli.readthedocs.io/en/latest/?badge=latest)
[![Discord](https://img.shields.io/badge/discord-alfred-5865F2?logo=discord&logoColor=white)](https://discord.gg/nMn9YPRGSY)
[![License](https://img.shields.io/badge/license-MIT-007EC7.svg)](LICENSE)

Alfred is an extensible automation tool designed to **streamline repository operations**. It allows you various commands as continuous integration, runner, build commands ...

You'll craft advanced commands harnessing **the strengths of both worlds: shell and Python**.


### Demo

![introductory video of alfred](https://media.githubusercontent.com/media/FabienArcellier/alfred-cli/master/docs/demo-1.gif)
**introductory video**

### Quick-start

You will generate commands to launch of the linter and unit tests process.

```bash
$ alfred --new pylint src/myapp
```

```bash
$ alfred --new pytest tests/unit
```

```bash
alfred
```

```text
Usage: alfred [OPTIONS] COMMAND [ARGS]...

  alfred is an extensible automation tool designed to streamline repository
  operations.

Options:
  -d, --debug    display debug information like command runned and working
                 directory
  -v, --version  display the version of alfred
  --new          open a wizard to generate a new command
  -c, --check    check the command integrity
  --completion   display instructions to enable completion for your shell
  --help         Show this message and exit.

Commands:
  lint                run linter on codebase
  tests               run unit tests on codebase
```

## Links

* Documentation : https://alfred-cli.readthedocs.io/en/latest
* PyPI Release : https://pypi.org/project/alfred-cli
* Source code: https://github.com/FabienArcellier/alfred-cli
* Chat: https://discord.gg/nMn9YPRGSY

## Related

``alfred`` exists thanks to this 2 amazing open source projects.

* [click](https://github.com/pallets/click/)
* [plumbum](https://github.com/tomerfiliba/plumbum>)


## License

MIT License

Copyright (c) 2021-2023 Fabien Arcellier

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/FabienArcellier/alfred-cli#alfred",
    "name": "alfred-cli",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "",
    "keywords": "building tool,makefile,productivity,automation,continuous integration,developper friendly",
    "author": "Fabien Arcellier",
    "author_email": "fabien.arcellier@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/9c/8f/14d41dc234273590016a6aa0d1f1a92bfbc58c1d37c15290bc5a2659170a/alfred_cli-2.2.7.tar.gz",
    "platform": null,
    "description": "## Alfred\n\n[![PyPi](https://img.shields.io/pypi/v/alfred-cli.svg?label=Version)](https://pypi.org/project/alfred-cli/)\n[![Python](https://img.shields.io/pypi/pyversions/alfred-cli.svg)](https://pypi.org/project/alfred-cli/)\n[![CI](https://github.com/FabienArcellier/alfred-cli/actions/workflows/ci.yml/badge.svg)](https://github.com/FabienArcellier/alfred-cli/actions/workflows/ci.yml) [![CI-Windows](https://github.com/FabienArcellier/alfred-cli/actions/workflows/ci-windows.yml/badge.svg)](https://github.com/FabienArcellier/alfred-cli/actions/workflows/ci-windows.yml)\n[![Documentation Status](https://readthedocs.org/projects/alfred-cli/badge/?version=latest)](https://alfred-cli.readthedocs.io/en/latest/?badge=latest)\n[![Discord](https://img.shields.io/badge/discord-alfred-5865F2?logo=discord&logoColor=white)](https://discord.gg/nMn9YPRGSY)\n[![License](https://img.shields.io/badge/license-MIT-007EC7.svg)](LICENSE)\n\nAlfred is an extensible automation tool designed to **streamline repository operations**. It allows you various commands as continuous integration, runner, build commands ...\n\nYou'll craft advanced commands harnessing **the strengths of both worlds: shell and Python**.\n\n\n### Demo\n\n![introductory video of alfred](https://media.githubusercontent.com/media/FabienArcellier/alfred-cli/master/docs/demo-1.gif)\n**introductory video**\n\n### Quick-start\n\nYou will generate commands to launch of the linter and unit tests process.\n\n```bash\n$ alfred --new pylint src/myapp\n```\n\n```bash\n$ alfred --new pytest tests/unit\n```\n\n```bash\nalfred\n```\n\n```text\nUsage: alfred [OPTIONS] COMMAND [ARGS]...\n\n  alfred is an extensible automation tool designed to streamline repository\n  operations.\n\nOptions:\n  -d, --debug    display debug information like command runned and working\n                 directory\n  -v, --version  display the version of alfred\n  --new          open a wizard to generate a new command\n  -c, --check    check the command integrity\n  --completion   display instructions to enable completion for your shell\n  --help         Show this message and exit.\n\nCommands:\n  lint                run linter on codebase\n  tests               run unit tests on codebase\n```\n\n## Links\n\n* Documentation : https://alfred-cli.readthedocs.io/en/latest\n* PyPI Release : https://pypi.org/project/alfred-cli\n* Source code: https://github.com/FabienArcellier/alfred-cli\n* Chat: https://discord.gg/nMn9YPRGSY\n\n## Related\n\n``alfred`` exists thanks to this 2 amazing open source projects.\n\n* [click](https://github.com/pallets/click/)\n* [plumbum](https://github.com/tomerfiliba/plumbum>)\n\n\n## License\n\nMIT License\n\nCopyright (c) 2021-2023 Fabien Arcellier\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Alfred is an extensible automation tool. It allows you to build your continuous integration scripts in python, and much more. You can replace any scripts using the best of both worlds, shell and python.",
    "version": "2.2.7",
    "project_urls": {
        "Documentation": "https://alfred-cli.readthedocs.io/en/latest",
        "Homepage": "https://github.com/FabienArcellier/alfred-cli#alfred",
        "Repository": "https://github.com/FabienArcellier/alfred-cli"
    },
    "split_keywords": [
        "building tool",
        "makefile",
        "productivity",
        "automation",
        "continuous integration",
        "developper friendly"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9391ee05e3ac6f26abd4d6e489e3caa4a06e7fa1f939dd5a4d8d21966411ec29",
                "md5": "c2d518f9cf7c29262b4518a713364ea6",
                "sha256": "35059a1525c792f77d1911d8d67df698f9d93bc2c06f28dc3deba125ce886228"
            },
            "downloads": -1,
            "filename": "alfred_cli-2.2.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c2d518f9cf7c29262b4518a713364ea6",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 41056,
            "upload_time": "2024-02-10T21:58:05",
            "upload_time_iso_8601": "2024-02-10T21:58:05.683456Z",
            "url": "https://files.pythonhosted.org/packages/93/91/ee05e3ac6f26abd4d6e489e3caa4a06e7fa1f939dd5a4d8d21966411ec29/alfred_cli-2.2.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c8f14d41dc234273590016a6aa0d1f1a92bfbc58c1d37c15290bc5a2659170a",
                "md5": "a976f2f263483fa910248a4cba1c429f",
                "sha256": "674aafa6fe5445e0e60ebad94b7c5a84be1e4fdd64fb2c51223c357734981050"
            },
            "downloads": -1,
            "filename": "alfred_cli-2.2.7.tar.gz",
            "has_sig": false,
            "md5_digest": "a976f2f263483fa910248a4cba1c429f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 30028,
            "upload_time": "2024-02-10T21:58:07",
            "upload_time_iso_8601": "2024-02-10T21:58:07.558461Z",
            "url": "https://files.pythonhosted.org/packages/9c/8f/14d41dc234273590016a6aa0d1f1a92bfbc58c1d37c15290bc5a2659170a/alfred_cli-2.2.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-10 21:58:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "FabienArcellier",
    "github_project": "alfred-cli#alfred",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "alfred-cli"
}
        
Elapsed time: 0.17734s