Honeycomb OpenTelemetry distro which embeds the C++ SDK
Project description
honeycomb-pycpp
Python bindings for the OpenTelemetry C++ SDK. Provides high-performance tracing via a Pythonic interface, and ships as an OpenTelemetry distro for drop-in use with auto-instrumentation.
This library is experimental.
Installation
pip install honeycomb-pycpp
The wheel bundles the OpenTelemetry C++ SDK — no system-level dependencies required.
Configuration
The SDK is configured via a YAML file following the OpenTelemetry Configuration File Format. A default config is embedded in the package and used when no override is provided.
| Environment variable | Description |
|---|---|
OTEL_CONFIG_FILE |
Path to a custom configuration YAML. Overrides the embedded default. |
OTEL_EXPORTER_OTLP_ENDPOINT |
OTLP endpoint (default: http://localhost:4318) |
OTEL_EXPORTER_OTLP_HEADERS |
Headers to send with OTLP requests |
OTEL_RESOURCE_ATTRIBUTES |
Comma-separated resource attributes |
OTEL_SERVICE_NAME |
Service name |
Usage
As a distro (auto-instrumentation)
opentelemetry-instrument --service-name my-service python app.py
The distro registers itself automatically via entry points — no code changes required.
Tracing
import honeycomb_pycpp as otel
# Initialize from config file (or uses embedded default)
provider = otel.TracerProvider("path/to/otel.yaml")
tracer = provider.get_tracer("my-tracer")
with tracer.start_as_current_span("my-span") as span:
span.set_attribute("key", "value")
# ... do work ...
Metrics
Install the system metrics instrumentor:
pip install opentelemetry-instrumentation-system-metrics
Then activate it programmatically after initializing the MeterProvider:
import honeycomb_pycpp as otel
from opentelemetry import metrics
from opentelemetry.instrumentation.system_metrics import SystemMetricsInstrumentor
provider = otel.MeterProvider("path/to/otel.yaml")
metrics.set_meter_provider(provider)
SystemMetricsInstrumentor().instrument()
This collects CPU, memory, network, and other host metrics and exports them via the C++ SDK.
Logs
import honeycomb_pycpp as otel
provider = otel.LoggerProvider("path/to/otel.yaml")
logger = provider.get_logger("my-logger")
# Emit using keyword arguments
logger.emit(body="something happened", severity_number=otel.SeverityNumber.INFO)
# Emit using a LogRecord object
record = otel.LogRecord()
record.body = "request failed"
record.severity_number = otel.SeverityNumber.ERROR
record.attributes = {"user.id": "u-123", "http.status_code": 500}
logger.emit(record)
# Attach an exception
try:
1 / 0
except ZeroDivisionError as exc:
record = otel.LogRecord()
record.body = "unhandled exception"
record.severity_number = otel.SeverityNumber.ERROR
record.exception = exc
logger.emit(record)
provider.shutdown()
The LoggerProvider can also be used via bridges such that opentelemetry-instrumentation-logging work:
import logging
import honeycomb_pycpp as otel
from opentelemetry.instrumentation.logging.handler import LoggingHandler
from opentelemetry._logs import get_logger_provider
handler = LoggingHandler(logger_provider=otel.LoggerProvider("path/to/otel.yaml"))
logging.getLogger().addHandler(handler)
logging.getLogger("myapp").warning("watch out")
Deploying alongside the standard OpenTelemetry Python distro
Both honeycomb-pycpp and the standard opentelemetry-distro can be installed at the same time. When both are present, opentelemetry-instrument may pick up either distro. Use OTEL_PYTHON_DISTRO and OTEL_PYTHON_CONFIGURATOR to explicitly select which one runs.
pip install honeycomb-pycpp opentelemetry-distro
To use this C++ distro:
OTEL_PYTHON_DISTRO=cpp_distro \
OTEL_PYTHON_CONFIGURATOR=cpp_configurator \
opentelemetry-instrument python app.py
To use the standard Python SDK distro:
OTEL_PYTHON_DISTRO=distro \
OTEL_PYTHON_CONFIGURATOR=configurator \
opentelemetry-instrument python app.py
If neither variable is set and both distros are installed, the one selected is non-deterministic — always set them explicitly in multi-distro environments.
Current limitations
- OpenTelemetry C++ ABI v2 not yet enabled, any features relying on it (i.e. links) are not supported
Building from source
Requirements: Python >= 3.10, CMake >= 3.15, C++17 compiler.
git clone https://github.com/honeycombio/honeycomb-pycpp
cd honeycomb-pycpp
pip install -r requirements-dev.txt
pip install -e .
To rebuild after C++ changes:
pip install -e . --force-reinstall --no-deps
To clean up cmake artifacts:
rm -rf CMakeCache.txt CMakeFiles/ cmake_install.cmake build/ dist/ *.egg-info/ *.so
License
Apache License 2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file honeycomb_pycpp-0.1.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 19.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
290247a4f1a3fe3b84f3b1c6768e37fc32b0626c2a83bcf5d94ba160b4586837
|
|
| MD5 |
bdee389f89fe9b296833ec21a56bbea7
|
|
| BLAKE2b-256 |
0392a356376984fbe869717228606906d338897e4d8a82a1705d80feb8fedd28
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
290247a4f1a3fe3b84f3b1c6768e37fc32b0626c2a83bcf5d94ba160b4586837 - Sigstore transparency entry: 1477067560
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 18.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ac0a53c369a65ac99fbe95f03999d4e314bf0ee75e69846078b90c7c41825d7
|
|
| MD5 |
0465e23fbdd74337f92321152f34d60c
|
|
| BLAKE2b-256 |
5f67a60f8384ea7d231d72785cd78a1530acdf85213c0a33c820bd6e6116145d
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
1ac0a53c369a65ac99fbe95f03999d4e314bf0ee75e69846078b90c7c41825d7 - Sigstore transparency entry: 1477063435
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp314-cp314-macosx_15_0_x86_64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp314-cp314-macosx_15_0_x86_64.whl
- Upload date:
- Size: 14.9 MB
- Tags: CPython 3.14, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a946bd4a869a42c33c77ce49aa5a274c76a3bc127d1df73075d585fad4bc9a2b
|
|
| MD5 |
2add8d2113aba4b1c99200cef1852e83
|
|
| BLAKE2b-256 |
eaa2fd227d2436b360a84096afd465825130e5b69bec0f0a037c12f9be38f09e
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp314-cp314-macosx_15_0_x86_64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp314-cp314-macosx_15_0_x86_64.whl -
Subject digest:
a946bd4a869a42c33c77ce49aa5a274c76a3bc127d1df73075d585fad4bc9a2b - Sigstore transparency entry: 1477057361
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp314-cp314-macosx_15_0_arm64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp314-cp314-macosx_15_0_arm64.whl
- Upload date:
- Size: 14.1 MB
- Tags: CPython 3.14, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f16dd3378d7e9ac8c4a1437377c46402d03bc503b3cb49d599bb6da8df2266ff
|
|
| MD5 |
5b6571d1f253a820bb61fca21f987bef
|
|
| BLAKE2b-256 |
5b2660025b1ef24f89881110752e7eb2a2c5bc7c5dcf6ec96c3167d98f15959e
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp314-cp314-macosx_15_0_arm64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp314-cp314-macosx_15_0_arm64.whl -
Subject digest:
f16dd3378d7e9ac8c4a1437377c46402d03bc503b3cb49d599bb6da8df2266ff - Sigstore transparency entry: 1477059903
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 19.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ef64597a04d9d0d2cc8b93b3b0058a62b79994fb93b4914805938b14df6d2a8
|
|
| MD5 |
fd379fdfb8e61cf4346cb543df339672
|
|
| BLAKE2b-256 |
11fdaf2c833b5a6fc4eb3fa528ccfa69f657f0abb3ee37142cadb286ad016592
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
5ef64597a04d9d0d2cc8b93b3b0058a62b79994fb93b4914805938b14df6d2a8 - Sigstore transparency entry: 1477061083
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 18.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f32b0f32c7afb216d0d89fe0506b19df3e072e0e4d4f1b0a8eb619a964ac879
|
|
| MD5 |
579deeef0dec638ed609a0e395b43080
|
|
| BLAKE2b-256 |
7acc774907ec9019282e2d192e81aa676d5773a7506ed2f7c14f54a1497819f2
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
5f32b0f32c7afb216d0d89fe0506b19df3e072e0e4d4f1b0a8eb619a964ac879 - Sigstore transparency entry: 1477066611
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp313-cp313-macosx_15_0_x86_64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp313-cp313-macosx_15_0_x86_64.whl
- Upload date:
- Size: 14.9 MB
- Tags: CPython 3.13, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d690c02632231cca94013f27e10a65313367b4d6bd7338772a2e61e627b2b03c
|
|
| MD5 |
5927b79f3556d38a40a2be73cdfc40ff
|
|
| BLAKE2b-256 |
90adbea1cb63f64f495ff832d625b0cf90839fd9567e14dfa3c925efbd49cf00
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp313-cp313-macosx_15_0_x86_64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp313-cp313-macosx_15_0_x86_64.whl -
Subject digest:
d690c02632231cca94013f27e10a65313367b4d6bd7338772a2e61e627b2b03c - Sigstore transparency entry: 1477068021
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp313-cp313-macosx_15_0_arm64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp313-cp313-macosx_15_0_arm64.whl
- Upload date:
- Size: 14.1 MB
- Tags: CPython 3.13, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
717eaacb1c86e4c677b24d24297d3e10a71486ba3673d815f62da80a537af0e6
|
|
| MD5 |
900254138f5a82f7d45bbb9bf803f82e
|
|
| BLAKE2b-256 |
f5b71d91a1f4188d3ab118e3a008dbc7aa6ab542033c6c61c6d3603f6aa96588
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp313-cp313-macosx_15_0_arm64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp313-cp313-macosx_15_0_arm64.whl -
Subject digest:
717eaacb1c86e4c677b24d24297d3e10a71486ba3673d815f62da80a537af0e6 - Sigstore transparency entry: 1477058076
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 19.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
843a25a8ab712de6f938f6284b68e986998282d1c25c879e0805da2203ddc57d
|
|
| MD5 |
4169c0017bf9d430f0569d1b1394685c
|
|
| BLAKE2b-256 |
0e66e5901eb46ec07e2c9bfec2f98b9d5649251bcf97bd69e2f0d1e60fc23171
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
843a25a8ab712de6f938f6284b68e986998282d1c25c879e0805da2203ddc57d - Sigstore transparency entry: 1477053191
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 18.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea5f2fe10be059f066826c9bfa312250908712d923a486c6093a98f74b5d6cbe
|
|
| MD5 |
8c3f8a1c33d60a9e0b700f692687766c
|
|
| BLAKE2b-256 |
b2df8dd250e6fe416960c2c5a22f64e279b94aa85441a35ef74e30dcc7ed99c6
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
ea5f2fe10be059f066826c9bfa312250908712d923a486c6093a98f74b5d6cbe - Sigstore transparency entry: 1477068347
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp312-cp312-macosx_15_0_x86_64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp312-cp312-macosx_15_0_x86_64.whl
- Upload date:
- Size: 14.9 MB
- Tags: CPython 3.12, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fcde9315cbca7e9bf9bfe6cdeb0ae8ef5ee7dd6d18b784c18c89afd05acbec5
|
|
| MD5 |
95846e93d6ba6c0df4c16d0a5daa2533
|
|
| BLAKE2b-256 |
5e7a22050f9cc5b31013f7012e99be07cb90e6f2b587068c94f85407b58423ee
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp312-cp312-macosx_15_0_x86_64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp312-cp312-macosx_15_0_x86_64.whl -
Subject digest:
6fcde9315cbca7e9bf9bfe6cdeb0ae8ef5ee7dd6d18b784c18c89afd05acbec5 - Sigstore transparency entry: 1477052380
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp312-cp312-macosx_15_0_arm64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp312-cp312-macosx_15_0_arm64.whl
- Upload date:
- Size: 14.1 MB
- Tags: CPython 3.12, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a329a9a84a5e4b931e93bc27d03901fc1ef010b2ef228ebab01e255009dbb2f6
|
|
| MD5 |
4f55032e74313bc73a4f886d754092a6
|
|
| BLAKE2b-256 |
e6714954635f52233d7ff8176293c5620379f7398e95a93064f97ab1e68f58e3
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp312-cp312-macosx_15_0_arm64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp312-cp312-macosx_15_0_arm64.whl -
Subject digest:
a329a9a84a5e4b931e93bc27d03901fc1ef010b2ef228ebab01e255009dbb2f6 - Sigstore transparency entry: 1477055695
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 19.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
578b994a3e4bfcffdb1e56445188b3ad4dcde2933b005fdcc2eb988a1d3ee38d
|
|
| MD5 |
f3b0121420ee562ac70b52296576280e
|
|
| BLAKE2b-256 |
50a3f9f2907f894fada8250e75cf5a7f464e49acd0f7fa0a54c757ede7314a72
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
578b994a3e4bfcffdb1e56445188b3ad4dcde2933b005fdcc2eb988a1d3ee38d - Sigstore transparency entry: 1477064771
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 18.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f608f4badddcb895da8433fb1c72ed82d4ad69327908c923fd077787bc7052e1
|
|
| MD5 |
7f8a7f9f00c0599408448dacf68383b8
|
|
| BLAKE2b-256 |
c4bf3b4e7f4976409025632b79501d4ab18ea2325c228b876b34e7be07c4d90d
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
f608f4badddcb895da8433fb1c72ed82d4ad69327908c923fd077787bc7052e1 - Sigstore transparency entry: 1477066957
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp311-cp311-macosx_15_0_x86_64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp311-cp311-macosx_15_0_x86_64.whl
- Upload date:
- Size: 14.9 MB
- Tags: CPython 3.11, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6347b43a24f33ed9ce0fdd1db59fb473000c102304577fb400241c42a5cd97c
|
|
| MD5 |
056bd58562b4853dd430781107e98e75
|
|
| BLAKE2b-256 |
01af9476e84139cbf5f7ce10f894b84f6b4e8bd54695f8313c1451ccfe2465b0
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp311-cp311-macosx_15_0_x86_64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp311-cp311-macosx_15_0_x86_64.whl -
Subject digest:
b6347b43a24f33ed9ce0fdd1db59fb473000c102304577fb400241c42a5cd97c - Sigstore transparency entry: 1477051421
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp311-cp311-macosx_15_0_arm64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp311-cp311-macosx_15_0_arm64.whl
- Upload date:
- Size: 14.1 MB
- Tags: CPython 3.11, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1e139c57a96f5df7b489f4bf5ee79908d18883905683ca4cba19fe804adbdbb
|
|
| MD5 |
fc55bc950c3966e932d894aab3f6af6e
|
|
| BLAKE2b-256 |
69a8dfe1c06889a6e8ec3b55cab00988b77c2ecf96b0cfa268174428c53e1f1d
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp311-cp311-macosx_15_0_arm64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp311-cp311-macosx_15_0_arm64.whl -
Subject digest:
d1e139c57a96f5df7b489f4bf5ee79908d18883905683ca4cba19fe804adbdbb - Sigstore transparency entry: 1477067286
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 19.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b37ae5b5af99c6c5112910639a456cc0abaaf1d6c5ccb94b446ccd3210ee0b67
|
|
| MD5 |
3a31c92250c5399d990b135b51d55869
|
|
| BLAKE2b-256 |
bd5dbe1444fe43259592504a9e49ade42be95ba27a66be1c12870c488cf03b8a
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
b37ae5b5af99c6c5112910639a456cc0abaaf1d6c5ccb94b446ccd3210ee0b67 - Sigstore transparency entry: 1477062346
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 18.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe401910a4b15f68f7f9ff7ffe69e4a94f505188b3d5209134e5561cd05606bd
|
|
| MD5 |
55381f2dc3590dcbfbc9330d22b255a9
|
|
| BLAKE2b-256 |
0a15b1b34654a06a5564ae5c445ff04d054f410dd6cc7b1b6498a23f6d502a8c
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
fe401910a4b15f68f7f9ff7ffe69e4a94f505188b3d5209134e5561cd05606bd - Sigstore transparency entry: 1477058942
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp310-cp310-macosx_15_0_x86_64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp310-cp310-macosx_15_0_x86_64.whl
- Upload date:
- Size: 14.9 MB
- Tags: CPython 3.10, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e93784efe7acf9c3c35b7f8720356e1d5b1339e9aa6d4df235c0b3d55efd474
|
|
| MD5 |
471f2004fec6ec505df36a5e2c0fddac
|
|
| BLAKE2b-256 |
369aca38fd61558ed8421065bf5d1fbdca67f1884b82d53cd8e7d1164414406d
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp310-cp310-macosx_15_0_x86_64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp310-cp310-macosx_15_0_x86_64.whl -
Subject digest:
4e93784efe7acf9c3c35b7f8720356e1d5b1339e9aa6d4df235c0b3d55efd474 - Sigstore transparency entry: 1477054284
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type:
File details
Details for the file honeycomb_pycpp-0.1.6-cp310-cp310-macosx_15_0_arm64.whl.
File metadata
- Download URL: honeycomb_pycpp-0.1.6-cp310-cp310-macosx_15_0_arm64.whl
- Upload date:
- Size: 14.1 MB
- Tags: CPython 3.10, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb4e613106bbd791bae830eac685068673ed176661c7250422e746b01a25844f
|
|
| MD5 |
33c109905abced192d382b8190df7bba
|
|
| BLAKE2b-256 |
17717b51377400dde7f5167f6c2d319a3cb50b5df86aa168df47ce5e6952c766
|
Provenance
The following attestation bundles were made for honeycomb_pycpp-0.1.6-cp310-cp310-macosx_15_0_arm64.whl:
Publisher:
build-wheels.yml on honeycombio/honeycomb-pycpp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
honeycomb_pycpp-0.1.6-cp310-cp310-macosx_15_0_arm64.whl -
Subject digest:
cb4e613106bbd791bae830eac685068673ed176661c7250422e746b01a25844f - Sigstore transparency entry: 1477067806
- Sigstore integration time:
-
Permalink:
honeycombio/honeycomb-pycpp@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/honeycombio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@8b1d3ee0519372189f9b3632f3a4f6a09169e32a -
Trigger Event:
release
-
Statement type: