Metadata-Version: 2.2
Name: grafana-sync
Version: 0.14.0
Summary: Sync Grafana dashboards and folders
Author: Enno Richter
License: Apache-2.0
Project-URL: Homepage, https://github.com/elohmeier/grafana-sync
Project-URL: Changelog, https://github.com/elohmeier/grafana-sync/releases
Project-URL: Issues, https://github.com/elohmeier/grafana-sync/issues
Project-URL: CI, https://github.com/elohmeier/grafana-sync/actions
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: asyncclick>=8.1.7
Requires-Dist: httpx>=0.28.0
Requires-Dist: pydantic>=2.10.2
Requires-Dist: rich>=13.9.4
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-docker; extra == "test"
Requires-Dist: pytest-asyncio; extra == "test"
Provides-Extra: generate
Requires-Dist: faker>=20.1.0; extra == "generate"

# grafana-sync

[![PyPI](https://img.shields.io/pypi/v/grafana-sync.svg)](https://pypi.org/project/grafana-sync/)
[![Changelog](https://img.shields.io/github/v/release/elohmeier/grafana-sync?include_prereleases&label=changelog)](https://github.com/elohmeier/grafana-sync/releases)
[![Tests](https://github.com/elohmeier/grafana-sync/actions/workflows/test.yml/badge.svg)](https://github.com/elohmeier/grafana-sync/actions/workflows/test.yml)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/elohmeier/grafana-sync/blob/master/LICENSE)

Sync Grafana dashboards and folders

## Installation

Install this tool using `pip`:
```bash
pip install grafana-sync
```
## Usage

For help, run:
```bash
grafana-sync --help
```
You can also use:
```bash
python -m grafana_sync --help
```
## Development

To contribute to this tool, first checkout the code. Then create a new virtual environment:
```bash
cd grafana-sync
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
python -m pytest
```
