Skip to content

Commit

Permalink
docs: add badge to condo-forge package
Browse files Browse the repository at this point in the history
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
conda-forge/staged-recipes#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
  • Loading branch information
michalc committed Nov 29, 2023
1 parent 96c5a89 commit d8f12d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- --8<-- [start:intro] -->
# 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.

Expand Down

0 comments on commit d8f12d8

Please sign in to comment.