From d8f12d8bc6566ff8d360765e007ffdd2822a895d Mon Sep 17 00:00:00 2001 From: Michal Charemza Date: Wed, 29 Nov 2023 07:29:25 +0000 Subject: [PATCH] docs: add badge to condo-forge package This adds a badge showing the current package version on conda-forge, with a link to it at https://anaconda.org/conda-forge/stream-zip stream-zip has been recently added to conda-forge via https://github.com/conda-forge/staged-recipes/pull/24588, with its feedstock repo at https://github.com/conda-forge/stream-zip-feedstock, so this is done for slightly easier discoverability that it's on conda forge and an option for users. This is also done for consistency with the sibling project, stream-unzip, which has a badge at the top of its README at https://github.com/uktrade/stream-unzip --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 95f39d6..c95cf77 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # stream-zip -[![PyPI package](https://img.shields.io/pypi/v/stream-zip?label=PyPI%20package&color=%234c1)](https://pypi.org/project/stream-zip/) [![Test suite](https://img.shields.io/github/actions/workflow/status/uktrade/stream-zip/test.yml?label=Test%20suite)](https://github.com/uktrade/stream-zip/actions/workflows/test.yml) [![Code coverage](https://img.shields.io/codecov/c/github/uktrade/stream-zip?label=Code%20coverage)](https://app.codecov.io/gh/uktrade/stream-zip) +[![conda-forge package](https://img.shields.io/conda/v/conda-forge/stream-zip?label=conda-forge&color=%234c1)](https://anaconda.org/conda-forge/stream-zip) [![PyPI package](https://img.shields.io/pypi/v/stream-zip?label=PyPI%20package&color=%234c1)](https://pypi.org/project/stream-zip/) [![Test suite](https://img.shields.io/github/actions/workflow/status/uktrade/stream-zip/test.yml?label=Test%20suite)](https://github.com/uktrade/stream-zip/actions/workflows/test.yml) [![Code coverage](https://img.shields.io/codecov/c/github/uktrade/stream-zip?label=Code%20coverage)](https://app.codecov.io/gh/uktrade/stream-zip) Python function to construct a ZIP archive on the fly - without having to store the entire ZIP in memory or disk. This is useful in memory-constrained environments, or when you would like to start returning compressed data before you've even retrieved all the uncompressed data. Generating ZIPs on-demand in a web server is a typical use case for stream-zip.