https://github.com/ladybug-tools/dragonfly-comparison
:dragon: :left_right_arrow: A dragonfly extension for comparing dragonfly models with one another
https://github.com/ladybug-tools/dragonfly-comparison
Last synced: 9 months ago
JSON representation
:dragon: :left_right_arrow: A dragonfly extension for comparing dragonfly models with one another
- Host: GitHub
- URL: https://github.com/ladybug-tools/dragonfly-comparison
- Owner: ladybug-tools
- License: agpl-3.0
- Created: 2025-03-04T23:33:32.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-08-19T23:41:14.000Z (10 months ago)
- Last Synced: 2025-08-29T05:29:38.550Z (10 months ago)
- Language: Python
- Homepage:
- Size: 682 KB
- Stars: 0
- 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-comparison/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-comparison
Dragonfly extension for comparing dragonfly models with one another.
## Installation
`pip install dragonfly-comparison`
## QuickStart
```python
import dragonfly_comparison
```
## [API Documentation](http://ladybug-tools.github.io/dragonfly-comparison/docs)
## Local Development
1. Clone this repo locally
```
git clone git@github.com:ladybug-tools/dragonfly-comparison
# or
git clone https://github.com/ladybug-tools/dragonfly-comparison
```
2. Install dependencies:
```
cd dragonfly-comparison
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_comparison
sphinx-build -b html ./docs ./docs/_build/docs
```