https://github.com/ladybug-tools/dragonfly-radiance
🐉⚡️ Dragonfly extension for Radiance simulation
https://github.com/ladybug-tools/dragonfly-radiance
Last synced: about 1 month ago
JSON representation
🐉⚡️ Dragonfly extension for Radiance simulation
- Host: GitHub
- URL: https://github.com/ladybug-tools/dragonfly-radiance
- Owner: ladybug-tools
- License: agpl-3.0
- Created: 2023-02-22T15:37:03.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2026-02-26T22:13:08.000Z (4 months ago)
- Last Synced: 2026-02-27T03:49:25.094Z (4 months ago)
- Language: Python
- Homepage: https://www.ladybug.tools/dragonfly-radiance/docs/
- Size: 1.12 MB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
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/dragonfly-radiance/actions)
[](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/)
# dragonfly-radiance
Dragonfly extension for Radiance simulation.
## Installation
`pip install dragonfly-radiance`
To check if the command line interface is installed correctly
use `dragonfly-radiance --help`.
## QuickStart
```python
import dragonfly_radiance
```
## [API Documentation](http://ladybug-tools.github.io/dragonfly-radiance/docs)
## Local Development
1. Clone this repo locally
```
git clone git@github.com:ladybug-tools/dragonfly-radiance
# or
git clone https://github.com/ladybug-tools/dragonfly-radiance
```
2. Install dependencies:
```
cd dragonfly-radiance
pip install -r dev-requirements.txt
pip install -r requirements.txt
```
3. Run Tests:
```
python -m pytest tests/
```
4. Generate Documentation:
```
sphinx-apidoc -f -e -d 4 -o ./docs ./dragonfly_radiance
sphinx-build -b html ./docs ./docs/_build/docs
```