queenbee


Namequeenbee JSON
Version 1.27.0 PyPI version JSON
download
home_pagehttps://github.com/pollination/queenbee
SummaryQueenbee is a workflow language and a package manager for creating DAG workflows which empowers all workflow libraries in Ladybug Tools!
upload_time2023-07-02 20:16:40
maintainer
docs_urlNone
authorLadybug Tools
requires_python
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Queenbee :crown:

Queenbee is a workflow language for describing workflows! The workflow Schema
is inspired by [Argo Workflow](https://argoproj.github.io/docs/argo/readme.html) and
borrows a number of terms and expressions from
[Apache Airflow](http://airflow.apache.org/) and [Ansible](https://docs.ansible.com/).

Queenbee populates and validates the workflows but does not run them! For running the
workflows see
[`ladybug-tools/queenbee-luigi`](https://github.com/ladybug-tools/queenbee-luigi)
which converts Queenbee workflows to executable
[Luigi](https://luigi.readthedocs.io/en/stable/) pipelines.

You can find more workflow samples in
[honeybee-radiance-workflow](https://github.com/ladybug-tools/honeybee-radiance-workflow)
repository.

## Installation

```
> pip install queenbee
```

or if you want to use the CLI

```
> pip install queenbee[cli]
```

## Documentation

You can access the full docs for this package and its CLI
[here](https://pollination.github.io/queenbee/).

You can also access the [Schema
Documentation](https://pollination.github.io/queenbee/schemas/index.html) and
OpenAPI documentation for:

| Object | Redoc                 | OpenAPI JSON        |
| ------ | --------------------- | ------------------- |
| Plugin | [redoc][plugin-redoc] | [json][plugin-json] |
| Recipe | [redoc][recipe-redoc] | [json][recipe-json] |
| Job    | [redoc][job-redoc]    | [json][job-json]    |

[plugin-json]: https://pollination.github.io/queenbee/_static/schemas/plugin-openapi.json
[plugin-redoc]: https://pollination.github.io/queenbee/_static/redoc-plugin.html#tag/plugin_model
[recipe-json]: https://pollination.github.io/queenbee/_static/schemas/recipe-openapi.json
[recipe-redoc]: https://pollination.github.io/queenbee/_static/redoc-recipe.html#tag/recipe_model
[job-json]: https://pollination.github.io/queenbee/_static/schemas/job-openapi.json
[job-redoc]: https://pollination.github.io/queenbee/_static/redoc-job.html#tag/job_model

## Local Development

1. Clone this repo locally

   ```console
   git clone git@github.com:ladybug-tools/queenbee
   ```

   or

   ```console
   git clone https://github.com/ladybug-tools/queenbee
   ```

2. Install dependencies:

   ```console
   cd queenbee
   pip install -r dev-requirements.txt
   pip install -r requirements.txt
   ```

3. Run Tests:

   ```console
   python -m pytest tests/
   ```

4. Generate Documentation:

   ```python
   sphinx-apidoc -f -e -d 4 -o ./docs/modules ./queenbee
   sphinx-build -b html ./docs ./docs/_build
   ```

5. Preview Documentation:

   ```console
   python -m http.server --directory ./docs/_build/
   ```

   Now you can see the documentation preview at http://localhost:8000

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pollination/queenbee",
    "name": "queenbee",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Ladybug Tools",
    "author_email": "info@ladybug.tools",
    "download_url": "https://files.pythonhosted.org/packages/39/31/4007cc968cd7967429bf0db52f26dafa9807d7fb629410bc472f3cf84a67/queenbee-1.27.0.tar.gz",
    "platform": null,
    "description": "# Queenbee :crown:\n\nQueenbee is a workflow language for describing workflows! The workflow Schema\nis inspired by [Argo Workflow](https://argoproj.github.io/docs/argo/readme.html) and\nborrows a number of terms and expressions from\n[Apache Airflow](http://airflow.apache.org/) and [Ansible](https://docs.ansible.com/).\n\nQueenbee populates and validates the workflows but does not run them! For running the\nworkflows see\n[`ladybug-tools/queenbee-luigi`](https://github.com/ladybug-tools/queenbee-luigi)\nwhich converts Queenbee workflows to executable\n[Luigi](https://luigi.readthedocs.io/en/stable/) pipelines.\n\nYou can find more workflow samples in\n[honeybee-radiance-workflow](https://github.com/ladybug-tools/honeybee-radiance-workflow)\nrepository.\n\n## Installation\n\n```\n> pip install queenbee\n```\n\nor if you want to use the CLI\n\n```\n> pip install queenbee[cli]\n```\n\n## Documentation\n\nYou can access the full docs for this package and its CLI\n[here](https://pollination.github.io/queenbee/).\n\nYou can also access the [Schema\nDocumentation](https://pollination.github.io/queenbee/schemas/index.html) and\nOpenAPI documentation for:\n\n| Object | Redoc                 | OpenAPI JSON        |\n| ------ | --------------------- | ------------------- |\n| Plugin | [redoc][plugin-redoc] | [json][plugin-json] |\n| Recipe | [redoc][recipe-redoc] | [json][recipe-json] |\n| Job    | [redoc][job-redoc]    | [json][job-json]    |\n\n[plugin-json]: https://pollination.github.io/queenbee/_static/schemas/plugin-openapi.json\n[plugin-redoc]: https://pollination.github.io/queenbee/_static/redoc-plugin.html#tag/plugin_model\n[recipe-json]: https://pollination.github.io/queenbee/_static/schemas/recipe-openapi.json\n[recipe-redoc]: https://pollination.github.io/queenbee/_static/redoc-recipe.html#tag/recipe_model\n[job-json]: https://pollination.github.io/queenbee/_static/schemas/job-openapi.json\n[job-redoc]: https://pollination.github.io/queenbee/_static/redoc-job.html#tag/job_model\n\n## Local Development\n\n1. Clone this repo locally\n\n   ```console\n   git clone git@github.com:ladybug-tools/queenbee\n   ```\n\n   or\n\n   ```console\n   git clone https://github.com/ladybug-tools/queenbee\n   ```\n\n2. Install dependencies:\n\n   ```console\n   cd queenbee\n   pip install -r dev-requirements.txt\n   pip install -r requirements.txt\n   ```\n\n3. Run Tests:\n\n   ```console\n   python -m pytest tests/\n   ```\n\n4. Generate Documentation:\n\n   ```python\n   sphinx-apidoc -f -e -d 4 -o ./docs/modules ./queenbee\n   sphinx-build -b html ./docs ./docs/_build\n   ```\n\n5. Preview Documentation:\n\n   ```console\n   python -m http.server --directory ./docs/_build/\n   ```\n\n   Now you can see the documentation preview at http://localhost:8000\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Queenbee is a workflow language and a package manager for creating DAG workflows which empowers all workflow libraries in Ladybug Tools!",
    "version": "1.27.0",
    "project_urls": {
        "Homepage": "https://github.com/pollination/queenbee"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe4d179d2252145bc4c08f090e2134b6243047badf8a0f581467997e646bea8e",
                "md5": "e2706ea0c49fd4b79cafa2c5dc714b32",
                "sha256": "b4141f193365a8c6f788754fe0df11d6ead59c8f94e6e5c976b5901d07b93a04"
            },
            "downloads": -1,
            "filename": "queenbee-1.27.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e2706ea0c49fd4b79cafa2c5dc714b32",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 87342,
            "upload_time": "2023-07-02T20:16:38",
            "upload_time_iso_8601": "2023-07-02T20:16:38.912555Z",
            "url": "https://files.pythonhosted.org/packages/fe/4d/179d2252145bc4c08f090e2134b6243047badf8a0f581467997e646bea8e/queenbee-1.27.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39314007cc968cd7967429bf0db52f26dafa9807d7fb629410bc472f3cf84a67",
                "md5": "ab2f4dced806c3f3a753b14a71067521",
                "sha256": "67745065b21aa65400aa9d831de93a2fb36c5b506c58eebc975f696ee65fcb49"
            },
            "downloads": -1,
            "filename": "queenbee-1.27.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ab2f4dced806c3f3a753b14a71067521",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 165420,
            "upload_time": "2023-07-02T20:16:40",
            "upload_time_iso_8601": "2023-07-02T20:16:40.756965Z",
            "url": "https://files.pythonhosted.org/packages/39/31/4007cc968cd7967429bf0db52f26dafa9807d7fb629410bc472f3cf84a67/queenbee-1.27.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-02 20:16:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pollination",
    "github_project": "queenbee",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "queenbee"
}
        
Elapsed time: 0.08303s