https://github.com/ladybug-tools/honeybee-designbuilder
:honeybee: :green_book: :blue_book: Honeybee extension for translation to/from DesignBuilder
https://github.com/ladybug-tools/honeybee-designbuilder
Last synced: 4 months ago
JSON representation
:honeybee: :green_book: :blue_book: Honeybee extension for translation to/from DesignBuilder
- Host: GitHub
- URL: https://github.com/ladybug-tools/honeybee-designbuilder
- Owner: ladybug-tools
- License: agpl-3.0
- Created: 2025-09-09T23:29:00.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2025-09-10T19:54:26.000Z (9 months ago)
- Last Synced: 2025-09-10T23:40:39.742Z (9 months ago)
- Homepage: https://www.ladybug.tools/honeybee-designbuilder/docs/
- Size: 13.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# honeybee-designbuilder
 
[](https://github.com/ladybug-tools/honeybee-designbuilder/actions)
[](https://www.python.org/downloads/release/python-3100/)
Honeybee extension for translation to/from DesignBuilder.
Translation is accomplished using XML files following the
[DesignBuilder DsbXML Schema](https://github.com/DesignBuilderSoftware/db-dsbxml-schema).
Files can be imported to DesignBuilder using the [DsbXML Importer](https://designbuilder.co.uk/helpv2025.1/#ImportDesignBuilderXML.htm?TocPath=Get%2520Started%257CMenu%257CFile%2520Menu%257C_____2)
## Installation
`pip install -U honeybe-designbuilder`
## QuickStart
```console
import honeybee_designbuilder
```
## [API Documentation](http://ladybug-tools.github.io/honeybee-designbuilder/docs)
## Local Development
1. Clone this repo locally
```console
git clone git@github.com:ladybug-tools/honeybee-designbuilder
# or
git clone https://github.com/ladybug-tools/honeybee-designbuilder
```
2. Install dependencies:
```
cd honeybee-designbuilder
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_designbuilder
sphinx-build -b html ./docs ./docs/_build/docs
```