honeybee-ies


Namehoneybee-ies JSON
Version 0.14.0 PyPI version JSON
download
home_pagehttps://github.com/ladybug-tools/honeybee-ies
SummaryHoneybee extension for import and export to/from IES-VE
upload_time2025-02-18 20:49:57
maintainerNone
docs_urlNone
authorLadybug Tools
requires_pythonNone
licenseAGPL-3.0
keywords
VCS
bugtrack_url
requirements honeybee-core
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Build Status](https://github.com/ladybug-tools/honeybee-ies/workflows/CI/badge.svg)](https://github.com/ladybug-tools/honeybee-ies/actions)

[![Python 3.7](https://img.shields.io/badge/python-3.7-blue.svg)](https://www.python.org/downloads/release/python-370/)

# honeybee-ies

Honeybee extension for translating an HBJSON file to IES-VE GEM file format and vice versa.

## Sydney Opera House

![image(52)](https://github.com/ladybug-tools/honeybee-ies/assets/2915573/d57be713-0cef-41ef-b365-7611ebc704f6)

<img width="958" alt="image(53)" src="https://github.com/ladybug-tools/honeybee-ies/assets/2915573/34ad782b-f177-4b11-8fc4-84d7bc9c34aa">

## Revit sample model

![image](https://user-images.githubusercontent.com/2915573/145484209-ca484536-2d86-4f3f-9113-f4c998aa304f.png)

## Installation
```console
pip install honeybee-ies
```

## QuickStart

```python
import pathlib
from honeybee.model import Model

path_to_hbjson = './tests/assets/sample_model_45.hbjson'
path_to_out_folder = pathlib.Path('./tests/assets/temp')
path_to_out_folder.mkdir(parents=True, exist_ok=True) 
model = Model.from_hbjson(path_to_hbjson)
# the to_gem method is added to model by honeybee-ies library
gem_file = model.to_gem(path_to_out_folder.as_posix(), name='sample_model_45')

```

You can also run the command from CLI

```honeybee-ies translate model-to-gem ./tests/assets/revit_sample_model.hbjson --name revit-sample-model```


## [API Documentation](http://ladybug-tools.github.io/honeybee-ies/docs)

## Local Development
1. Clone this repo locally
```console
git clone git@github.com:ladybug-tools/honeybee-ies

# or

git clone https://github.com/ladybug-tools/honeybee-ies
```
2. Install dependencies:
```console
cd honeybee-ies
pip install -r dev-requirements.txt
pip install -r requirements.txt
```

3. Run Tests:
```console
python -m pytest tests/
```

4. Generate Documentation:
```console
sphinx-apidoc -f -e -d 4 -o ./docs ./honeybee_ies
sphinx-build -b html ./docs ./docs/_build/docs
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ladybug-tools/honeybee-ies",
    "name": "honeybee-ies",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Ladybug Tools",
    "author_email": "info@ladybug.tools",
    "download_url": "https://files.pythonhosted.org/packages/24/67/98e0cd217ad321200d23bbb53afe018881ebea63384553593ed45fbb985e/honeybee_ies-0.14.0.tar.gz",
    "platform": null,
    "description": "[![Build Status](https://github.com/ladybug-tools/honeybee-ies/workflows/CI/badge.svg)](https://github.com/ladybug-tools/honeybee-ies/actions)\n\n[![Python 3.7](https://img.shields.io/badge/python-3.7-blue.svg)](https://www.python.org/downloads/release/python-370/)\n\n# honeybee-ies\n\nHoneybee extension for translating an HBJSON file to IES-VE GEM file format and vice versa.\n\n## Sydney Opera House\n\n![image(52)](https://github.com/ladybug-tools/honeybee-ies/assets/2915573/d57be713-0cef-41ef-b365-7611ebc704f6)\n\n<img width=\"958\" alt=\"image(53)\" src=\"https://github.com/ladybug-tools/honeybee-ies/assets/2915573/34ad782b-f177-4b11-8fc4-84d7bc9c34aa\">\n\n## Revit sample model\n\n![image](https://user-images.githubusercontent.com/2915573/145484209-ca484536-2d86-4f3f-9113-f4c998aa304f.png)\n\n## Installation\n```console\npip install honeybee-ies\n```\n\n## QuickStart\n\n```python\nimport pathlib\nfrom honeybee.model import Model\n\npath_to_hbjson = './tests/assets/sample_model_45.hbjson'\npath_to_out_folder = pathlib.Path('./tests/assets/temp')\npath_to_out_folder.mkdir(parents=True, exist_ok=True) \nmodel = Model.from_hbjson(path_to_hbjson)\n# the to_gem method is added to model by honeybee-ies library\ngem_file = model.to_gem(path_to_out_folder.as_posix(), name='sample_model_45')\n\n```\n\nYou can also run the command from CLI\n\n```honeybee-ies translate model-to-gem ./tests/assets/revit_sample_model.hbjson --name revit-sample-model```\n\n\n## [API Documentation](http://ladybug-tools.github.io/honeybee-ies/docs)\n\n## Local Development\n1. Clone this repo locally\n```console\ngit clone git@github.com:ladybug-tools/honeybee-ies\n\n# or\n\ngit clone https://github.com/ladybug-tools/honeybee-ies\n```\n2. Install dependencies:\n```console\ncd honeybee-ies\npip install -r dev-requirements.txt\npip install -r requirements.txt\n```\n\n3. Run Tests:\n```console\npython -m pytest tests/\n```\n\n4. Generate Documentation:\n```console\nsphinx-apidoc -f -e -d 4 -o ./docs ./honeybee_ies\nsphinx-build -b html ./docs ./docs/_build/docs\n```\n",
    "bugtrack_url": null,
    "license": "AGPL-3.0",
    "summary": "Honeybee extension for import and export to/from IES-VE",
    "version": "0.14.0",
    "project_urls": {
        "Homepage": "https://github.com/ladybug-tools/honeybee-ies"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "635a841cb4b54ac54c62181ac857924c98da25cd44c9772475577b2ef8a7cc72",
                "md5": "33031b03fb08ff542c0269164205c754",
                "sha256": "a7aa9f99f8cbb73c5b1a2e9b90c33f575bf0bc57a95926ae6390e5353f262371"
            },
            "downloads": -1,
            "filename": "honeybee_ies-0.14.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "33031b03fb08ff542c0269164205c754",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 32080,
            "upload_time": "2025-02-18T20:49:55",
            "upload_time_iso_8601": "2025-02-18T20:49:55.176919Z",
            "url": "https://files.pythonhosted.org/packages/63/5a/841cb4b54ac54c62181ac857924c98da25cd44c9772475577b2ef8a7cc72/honeybee_ies-0.14.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "246798e0cd217ad321200d23bbb53afe018881ebea63384553593ed45fbb985e",
                "md5": "fdf92b5ee0c60bcfb7dfdcc490efda7e",
                "sha256": "49475853435b93f4c6bd17833ba8b763185b5616a3d09f10fbd04e898b9e29d4"
            },
            "downloads": -1,
            "filename": "honeybee_ies-0.14.0.tar.gz",
            "has_sig": false,
            "md5_digest": "fdf92b5ee0c60bcfb7dfdcc490efda7e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 278549,
            "upload_time": "2025-02-18T20:49:57",
            "upload_time_iso_8601": "2025-02-18T20:49:57.070763Z",
            "url": "https://files.pythonhosted.org/packages/24/67/98e0cd217ad321200d23bbb53afe018881ebea63384553593ed45fbb985e/honeybee_ies-0.14.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-18 20:49:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ladybug-tools",
    "github_project": "honeybee-ies",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "honeybee-core",
            "specs": [
                [
                    ">=",
                    "1.61.6"
                ]
            ]
        }
    ],
    "lcname": "honeybee-ies"
}
        
Elapsed time: 2.42999s