Metadata-Version: 2.1
Name: libhoney
Version: 1.11.2
Summary: Python library for sending data to Honeycomb
Home-page: https://github.com/honeycombio/libhoney-py
License: Apache-2.0
Author: Honeycomb.io
Author-email: feedback@honeycomb.io
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: backports_abc (>=0.5,<0.6); python_version >= "2.7" and python_version < "2.8"
Requires-Dist: futures (>=3.3.0,<4.0.0); python_version >= "2.7" and python_version < "2.8"
Requires-Dist: requests (>=2.24.0,<3.0.0)
Requires-Dist: singledispatch (>=3.4.0,<4.0.0); python_version >= "2.7" and python_version < "2.8"
Requires-Dist: six (>=1.15.0,<2.0.0)
Requires-Dist: statsd (>=3.3.0,<4.0.0)
Project-URL: Repository, https://github.com/honeycombio/libhoney-py
Description-Content-Type: text/markdown

# libhoney-py

[![OSS Lifecycle](https://img.shields.io/osslifecycle/honeycombio/libhoney-py?color=success)](https://github.com/honeycombio/home/blob/main/honeycomb-oss-lifecycle-and-practices.md)
[![Build Status](https://circleci.com/gh/honeycombio/libhoney-py.svg?style=svg)](https://app.circleci.com/pipelines/github/honeycombio/libhoney-py)

Python library for sending events to [Honeycomb](https://honeycomb.io), a service for debugging your software in production.

- [Usage and Examples](https://docs.honeycomb.io/sdk/python/)

For tracing support and automatic instrumentation of Django, Flask, AWS Lambda, and other frameworks, check out our [Beeline for Python](https://github.com/honeycombio/beeline-python).

## Contributions

Features, bug fixes and other changes to libhoney are gladly accepted. Please
open issues or a pull request with your change. Remember to add your name to the
CONTRIBUTORS file!

All contributions will be released under the Apache License 2.0.

## Releases

You may need to install the `bump2version` utility by running `pip install bump2version`.

To update the version number, do

```
bump2version [major|minor|patch|release|build]
```

If you want to release the version publicly, you will need to manually create a tag `v<x.y.z>` and push it in order to
cause CircleCI to automatically push builds to github releases and PyPI.

