From d39ca98a0226d69a06cd3df2993496fe9bf93a8a Mon Sep 17 00:00:00 2001 From: Elephant Liu Date: Thu, 27 Nov 2025 20:53:06 +0800 Subject: [PATCH] chore: add badges into readme --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index d8b3efc..f374145 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,9 @@ Prometheus http query client of Python. Implemented prometheus http api: https://prometheus.io/docs/prometheus/latest/querying/api/ +[![PyPI Version][pypi-badge]][pypi] +[![Build Status][qaci-badge]][qaci] + ## install pip install drow-http @@ -35,3 +38,8 @@ query range: print(s.metric) for p in s.values: print(p.timestamp, p.value) + +[pypi-badge]: https://img.shields.io/pypi/v/drow-http "PyPI Version" +[pypi]: https://pypi.org/project/drow-http "PyPI Version" +[qaci-badge]: https://img.shields.io/github/check-runs/xospc/drow-http/main "Build Status" +[qaci]: https://github.com/xospc/drow-http/actions "Build Status"