https://github.com/ladybug-tools/honeybee-radiance-command
🐝 ⚡️ :abc: Honeybee wrapper around Radiance commands which is used by honeybee-radiance
https://github.com/ladybug-tools/honeybee-radiance-command
Last synced: 9 months ago
JSON representation
🐝 ⚡️ :abc: Honeybee wrapper around Radiance commands which is used by honeybee-radiance
- Host: GitHub
- URL: https://github.com/ladybug-tools/honeybee-radiance-command
- Owner: ladybug-tools
- License: agpl-3.0
- Created: 2019-08-07T18:51:37.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2025-08-26T19:42:59.000Z (10 months ago)
- Last Synced: 2025-08-27T03:48:58.973Z (10 months ago)
- Language: Python
- Homepage: https://www.ladybug.tools/honeybee-radiance-command/docs/
- Size: 1.69 MB
- Stars: 1
- Watchers: 5
- Forks: 7
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[](https://github.com/ladybug-tools/honeybee-radiance-command/actions)
[](https://coveralls.io/github/ladybug-tools/honeybee-radiance-command)
[](https://www.python.org/downloads/release/python-3100/)
[](https://www.python.org/downloads/release/python-370/)
[](https://www.python.org/downloads/release/python-270/)
[](https://github.com/IronLanguages/ironpython2/releases/tag/ipy-2.7.8/)
# honeybee-radiance-command
Python wrapper around Radiance commands, used by [honeybee-radiance](https://www.ladybug.tools/honeybee-radiance/docs/).
## Installation
```console
pip install -U honeybee-radiance-command
```
## QuickStart
```python
import honeybee_radiance_command
```
## [API Documentation](http://ladybug-tools.github.io/honeybee-radiance-command/docs)
## Local Development
1. Clone this repo locally
```console
git clone git@github.com:ladybug-tools/honeybee-radiance-command
# or
git clone https://github.com/ladybug-tools/honeybee-radiance-command
```
2. Install dependencies:
```console
cd honeybee-radiance-command
pip install -r dev-requirements.txt
```
3. Run Tests:
```console
python -m pytest tests/
```
4. Generate Documentation:
```console
sphinx-apidoc -f -e -d 4 -o ./docs ./honeybee_radiance_command
sphinx-build -b html ./docs ./docs/_build/docs
```