https://github.com/ladybug-tools/dragonfly-display
:dragon: 💻 Adds methods to translate dragonfly objects to VisualizationSets
https://github.com/ladybug-tools/dragonfly-display
Last synced: 9 months ago
JSON representation
:dragon: 💻 Adds methods to translate dragonfly objects to VisualizationSets
- Host: GitHub
- URL: https://github.com/ladybug-tools/dragonfly-display
- Owner: ladybug-tools
- License: agpl-3.0
- Created: 2024-03-19T22:57:12.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-08-19T23:41:51.000Z (10 months ago)
- Last Synced: 2025-08-20T01:23:34.183Z (10 months ago)
- Language: Python
- Homepage: https://www.ladybug.tools/dragonfly-display/docs
- Size: 720 KB
- Stars: 1
- Watchers: 4
- 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-display/actions)
[](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-display
Adds methods and a CLI to translate dragonfly objects to VisualizationSets.
## Installation
```console
pip install -U dragonfly-display
```
If you want to also include all dependencies needed to produce VTK visualizations
from dragonfly Models use.
```console
pip install -U dragonfly-display[full]
```
To check if the command line interface is installed correctly use `dragonfly-display --help`
## QuickStart
```python
import dragonfly_display
```
## [API Documentation](http://ladybug-tools.github.io/dragonfly-display/docs)
## Local Development
1. Clone this repo locally
```console
git clone git@github.com:ladybug-tools/dragonfly-display
# or
git clone https://github.com/ladybug-tools/dragonfly-display
```
2. Install dependencies:
```console
cd dragonfly-display
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 ./dragonfly_display
sphinx-build -b html ./docs ./docs/_build/docs
```