Metadata-Version: 2.4
Name: hive-common
Version: 0.3.0
Summary: Common code for Hive libraries and services
Author-email: Gary Benson <gary@gbenson.net>
License-Expression: MIT
Project-URL: Homepage, https://github.com/gbenson/hive/tree/main/libs/common
Project-URL: Source, https://github.com/gbenson/hive
Description-Content-Type: text/markdown
Requires-Dist: PyYAML
Provides-Extra: brotli
Requires-Dist: httpx[brotli]; extra == "brotli"
Provides-Extra: httpx
Requires-Dist: hishel; extra == "httpx"
Requires-Dist: httpx[http2]; extra == "httpx"
Provides-Extra: zstd
Requires-Dist: httpx[zstd]; extra == "zstd"

[![version badge]](https://pypi.org/project/hive-common/)

[version badge]: https://img.shields.io/pypi/v/hive-common?color=limegreen

# hive-common

Common code for Hive libraries and services

## Installation

### With PIP

```sh
pip install hive-common
```

### From source

```sh
git clone https://github.com/gbenson/hive.git
cd hive/libs/common
python3 -m venv .venv
. .venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
pip install -e .[httpx]
make check
```
