honeybee-core


Namehoneybee-core JSON
Version 1.62.2 PyPI version JSON
download
home_pagehttps://github.com/ladybug-tools/honeybee-core
SummaryA library to create 3D building geometry for various types of environmental simulation.
upload_time2025-09-04 21:46:13
maintainerNone
docs_urlNone
authorLadybug Tools
requires_pythonNone
licenseAGPL-3.0
keywords
VCS
bugtrack_url
requirements ladybug-core ladybug-geometry-polyskel honeybee-schema
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![Honeybee](https://www.ladybug.tools/assets/img/honeybee.png)

[![Build Status](https://github.com/ladybug-tools/honeybee-core/actions/workflows/ci.yaml/badge.svg)](https://github.com/ladybug-tools/honeybee-core/actions)
[![Coverage Status](https://coveralls.io/repos/github/ladybug-tools/honeybee-core/badge.svg?branch=master)](https://coveralls.io/github/ladybug-tools/honeybee-core)

[![Python 3.10](https://img.shields.io/badge/python-3.10-orange.svg)](https://www.python.org/downloads/release/python-3100/) [![Python 3.7](https://img.shields.io/badge/python-3.7-blue.svg)](https://www.python.org/downloads/release/python-370/) [![Python 2.7](https://img.shields.io/badge/python-2.7-green.svg)](https://www.python.org/downloads/release/python-270/) [![IronPython](https://img.shields.io/badge/ironpython-2.7-red.svg)](https://github.com/IronLanguages/ironpython2/releases/tag/ipy-2.7.8/)

# honeybee-core

Honeybee is a collection of Python libraries to create representations of buildings
following [honeybee-schema](https://github.com/ladybug-tools/honeybee-schema/wiki).

This package is the core library that provides honeybee's common functionalities.
To extend these functionalities you should install available Honeybee extensions or write
your own.

Here are a number of frequently used extensions for Honeybee:

- [honeybee-radiance](https://github.com/ladybug-tools/honeybee-radiance): Adds daylight simulation to Honeybee.
- [honeybee-energy](https://github.com/ladybug-tools/honeybee-energy): Adds Energy simulation to Honeybee.
- [honeybee-display](https://github.com/ladybug-tools/honeybee-display): Adds VTK visualization to Honeybee.


# Installation

To install the core library use:

`pip install -U honeybee-core`

To check if Honeybee command line interface is installed correctly use `honeybee viz` and you
should get a `viiiiiiiiiiiiizzzzzzzzz!` back in response! :bee:

# [API Documentation](https://www.ladybug.tools/honeybee-core/docs/)

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

# or

git clone https://github.com/ladybug-tools/honeybee-core.git
```
2. Install dependencies:
```console
cd honeybee-core
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
sphinx-build -b html ./docs ./docs/_build/docs
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ladybug-tools/honeybee-core",
    "name": "honeybee-core",
    "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/47/96/c962ebba572200ba5f0b0dff33f07c8ede602de6baec85ba797af0f90f4a/honeybee_core-1.62.2.tar.gz",
    "platform": null,
    "description": "![Honeybee](https://www.ladybug.tools/assets/img/honeybee.png)\n\n[![Build Status](https://github.com/ladybug-tools/honeybee-core/actions/workflows/ci.yaml/badge.svg)](https://github.com/ladybug-tools/honeybee-core/actions)\n[![Coverage Status](https://coveralls.io/repos/github/ladybug-tools/honeybee-core/badge.svg?branch=master)](https://coveralls.io/github/ladybug-tools/honeybee-core)\n\n[![Python 3.10](https://img.shields.io/badge/python-3.10-orange.svg)](https://www.python.org/downloads/release/python-3100/) [![Python 3.7](https://img.shields.io/badge/python-3.7-blue.svg)](https://www.python.org/downloads/release/python-370/) [![Python 2.7](https://img.shields.io/badge/python-2.7-green.svg)](https://www.python.org/downloads/release/python-270/) [![IronPython](https://img.shields.io/badge/ironpython-2.7-red.svg)](https://github.com/IronLanguages/ironpython2/releases/tag/ipy-2.7.8/)\n\n# honeybee-core\n\nHoneybee is a collection of Python libraries to create representations of buildings\nfollowing [honeybee-schema](https://github.com/ladybug-tools/honeybee-schema/wiki).\n\nThis package is the core library that provides honeybee's common functionalities.\nTo extend these functionalities you should install available Honeybee extensions or write\nyour own.\n\nHere are a number of frequently used extensions for Honeybee:\n\n- [honeybee-radiance](https://github.com/ladybug-tools/honeybee-radiance): Adds daylight simulation to Honeybee.\n- [honeybee-energy](https://github.com/ladybug-tools/honeybee-energy): Adds Energy simulation to Honeybee.\n- [honeybee-display](https://github.com/ladybug-tools/honeybee-display): Adds VTK visualization to Honeybee.\n\n\n# Installation\n\nTo install the core library use:\n\n`pip install -U honeybee-core`\n\nTo check if Honeybee command line interface is installed correctly use `honeybee viz` and you\nshould get a `viiiiiiiiiiiiizzzzzzzzz!` back in response! :bee:\n\n# [API Documentation](https://www.ladybug.tools/honeybee-core/docs/)\n\n## Local Development\n1. Clone this repo locally\n```console\ngit clone git@github.com:ladybug-tools/honeybee-core.git\n\n# or\n\ngit clone https://github.com/ladybug-tools/honeybee-core.git\n```\n2. Install dependencies:\n```console\ncd honeybee-core\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\nsphinx-build -b html ./docs ./docs/_build/docs\n```\n",
    "bugtrack_url": null,
    "license": "AGPL-3.0",
    "summary": "A library to create 3D building geometry for various types of environmental simulation.",
    "version": "1.62.2",
    "project_urls": {
        "Homepage": "https://github.com/ladybug-tools/honeybee-core"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1cfb15a9477514c5638ff2a813f356e9632910b54a94d3d84bbb43c014a8026e",
                "md5": "d31e958ba87d8064cd229de2257e5e2d",
                "sha256": "1ae22b7f32758014e995923ba29371515f47b66876cf428df97efb6e993130c0"
            },
            "downloads": -1,
            "filename": "honeybee_core-1.62.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d31e958ba87d8064cd229de2257e5e2d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 183896,
            "upload_time": "2025-09-04T21:46:11",
            "upload_time_iso_8601": "2025-09-04T21:46:11.339785Z",
            "url": "https://files.pythonhosted.org/packages/1c/fb/15a9477514c5638ff2a813f356e9632910b54a94d3d84bbb43c014a8026e/honeybee_core-1.62.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4796c962ebba572200ba5f0b0dff33f07c8ede602de6baec85ba797af0f90f4a",
                "md5": "e61b09ff61bb86ed2b42760c0b2a2de8",
                "sha256": "615d06790f2f4fe46e201fe73f0560faf2b4ccbf59e543240d82042831fd786f"
            },
            "downloads": -1,
            "filename": "honeybee_core-1.62.2.tar.gz",
            "has_sig": false,
            "md5_digest": "e61b09ff61bb86ed2b42760c0b2a2de8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 371621,
            "upload_time": "2025-09-04T21:46:13",
            "upload_time_iso_8601": "2025-09-04T21:46:13.395153Z",
            "url": "https://files.pythonhosted.org/packages/47/96/c962ebba572200ba5f0b0dff33f07c8ede602de6baec85ba797af0f90f4a/honeybee_core-1.62.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-04 21:46:13",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ladybug-tools",
    "github_project": "honeybee-core",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "ladybug-core",
            "specs": [
                [
                    "==",
                    "0.44.21"
                ]
            ]
        },
        {
            "name": "ladybug-geometry-polyskel",
            "specs": [
                [
                    "==",
                    "1.7.31"
                ]
            ]
        },
        {
            "name": "honeybee-schema",
            "specs": [
                [
                    "==",
                    "1.59.1"
                ]
            ]
        }
    ],
    "lcname": "honeybee-core"
}
        
Elapsed time: 3.91553s