From 735cf5bb1900348265c9f6c291b806ba895e2809 Mon Sep 17 00:00:00 2001 From: Davide Casale Date: Mon, 8 Apr 2024 16:57:03 +0200 Subject: [PATCH] Add badges to documentation in README.md. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6ee849b..0edadc3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # bitfinex-api-py +[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/bitfinex-api-py)](https://pypi.org/project/bitfinex-api-py/) +[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) +![GitHub Action](https://github.com/bitfinexcom/bitfinex-api-py/actions/workflows/build.yml/badge.svg) + Official implementation of the [Bitfinex APIs (V2)](https://docs.bitfinex.com/docs) for `Python 3.8+`. ### Features @@ -12,7 +16,7 @@ Official implementation of the [Bitfinex APIs (V2)](https://docs.bitfinex.com/do ## Installation ```console -python3 -m pip install --pre bitfinex-api-py +python3 -m pip install bitfinex-api-py ``` ---