Skip to main content

Honeycomb OpenTelemetry distro which embeds the C++ SDK

Project description

honeycomb-pycpp

OSS Lifecycle Build

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.

Programmatic use

import otel_cpp_tracer 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 ...

Current limitations

  • Tracing only — metrics and logs are not yet supported
  • Links require OpenTelemetry C++ ABI v2 (not yet enabled)

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

honeycomb_pycpp-0.1.1a1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (19.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

honeycomb_pycpp-0.1.1a1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (18.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

honeycomb_pycpp-0.1.1a1-cp314-cp314-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

honeycomb_pycpp-0.1.1a1-cp314-cp314-macosx_14_0_arm64.whl (13.8 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

honeycomb_pycpp-0.1.1a1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (19.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

honeycomb_pycpp-0.1.1a1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (18.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

honeycomb_pycpp-0.1.1a1-cp313-cp313-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

honeycomb_pycpp-0.1.1a1-cp313-cp313-macosx_14_0_arm64.whl (13.8 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

honeycomb_pycpp-0.1.1a1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (19.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

honeycomb_pycpp-0.1.1a1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (18.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

honeycomb_pycpp-0.1.1a1-cp312-cp312-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

honeycomb_pycpp-0.1.1a1-cp312-cp312-macosx_14_0_arm64.whl (13.8 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

honeycomb_pycpp-0.1.1a1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (19.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

honeycomb_pycpp-0.1.1a1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (18.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

honeycomb_pycpp-0.1.1a1-cp311-cp311-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

honeycomb_pycpp-0.1.1a1-cp311-cp311-macosx_14_0_arm64.whl (13.8 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

honeycomb_pycpp-0.1.1a1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (19.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

honeycomb_pycpp-0.1.1a1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (18.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

honeycomb_pycpp-0.1.1a1-cp310-cp310-macosx_15_0_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

honeycomb_pycpp-0.1.1a1-cp310-cp310-macosx_14_0_arm64.whl (13.8 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c36e7d9d2cf74ef3418d8dccdc26825a30db796f6f52a98d587e9139780fd02d
MD5 8858dcc4444fd84dfafe93390464152d
BLAKE2b-256 09a65514828e610c42bc11895e034c4b3d05d91362bad267188d12aa44d53994

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f377dc2785d8a9c4d4c0f957814d477592a14e47262d7a2179ab37aea9df82e5
MD5 98a9d2549d790a00ff483fca596cda2b
BLAKE2b-256 13bc0b0e1f0e145138278d9e609c7ad6eaaf3fa2e877d393703258441f6daf6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 278bd3b20269c5f6282da04b123347e4e87459008ce7e8ddc6a48c44aca404fd
MD5 91546a7eaa905c13d93aba20e6224c64
BLAKE2b-256 58418f4b24927d9bf3e9f1ca3280b7848c5f5abce01479f962333ee85b0f8084

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp314-cp314-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 29a451297ee8ecd7bc3c3ff1b7f5ba74faea01e68da4cbcc2d8bca879afc00aa
MD5 2fb1a681a931468f140891f1f96a0aba
BLAKE2b-256 6a29507547395556f289006b986f9dc50bd2036d34507253c20bd37e196fa3bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba7650846a138b32a519f00c005c4487bf926c7fc53d2603353dd3cf873b62af
MD5 75d7e906ddd59b1721d788a2ede5a5f0
BLAKE2b-256 b4fd9e7153f45379ab7679101f49f207828561f7145c45fc960538aa26b0bb9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78d93e2c992a5ada90ecb639afcc59a8bb50b7c72ee281957a72805054ba7b00
MD5 89fe6afa19ae902abe65bbbe5543f8c0
BLAKE2b-256 adead4037a11dc9c3c8a295903f93d1d3c98e0b22480b830a4cb0c496ffc6ca2

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 4fee1df7145680251428cc7ed4af0e21e002ed6e348f0ef7a076f4c0467aa50a
MD5 52fbb3b14d8d597634269ff6c4f28ebf
BLAKE2b-256 b3ef6a3490a9f07a99ae4bbad213e265fdcc4d1d76cccff084f9df37914a4a92

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c04fc48a11681dd2181979bb53d688a94a72ea3392f19301d05c1a15ed72fb67
MD5 049fa15d3d92b50dcffc1715969c8d08
BLAKE2b-256 8b059e5d7f6cc3368d95b7df486213d537e894bc8b84c68c34c204787a9f16d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6942c3e130e1c619a2872cadcd0b66f978c2f6460505a39a4238b2ba22a666b2
MD5 23052d21d1d9c9e471c50d8f6738fe06
BLAKE2b-256 1f0bc3ef51f84e95ae54f745d63b681a7bb801c0e67fd021a7f6be214c7d0f29

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d41707cb878cfeb5fb8ade9211e274e1d6c09b5a24f515720e99635bec7cb4a4
MD5 e8645193409629815d6c7d220ab03a8a
BLAKE2b-256 1f7268ae3ebe0d556e74c3530def2567bf99953afb062480947ca76851a5724d

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 9f1f9ad3894f474b2eca5346288138b3e73d1a8882d2eb59fbe32928b5bb856a
MD5 2b81798f8e6b25e6eb0762467f883429
BLAKE2b-256 cf4bb519dbfcb293c57cb8bb71da46fbe8a56f0266e93efaa1fb3ad8b43f9be3

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c9bae492fc8e993eb1ac2922f707fa730b18c84c84490afcf410b1acc9723f3e
MD5 2629a17eba7c45336947db63190ad70d
BLAKE2b-256 bc9c06b1593792a993a2db6159a3bcbb22e766fae4ee0d86802524ca209e9d08

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aeda84bcb3b69e3fe4d380cef2ca42af4714ba0346ab908582924fdd3f221bb0
MD5 3d7406847800840104b2888bab41ad1c
BLAKE2b-256 8fb2df769be3c6dd4cebf4e03608e666501af277e6351529cf8a3e4b4fcaadc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d53fbd9f566dbe2c5f073f1988a355280040f2b0613420fd51da8eeef3dd574a
MD5 b14517c75cf36ef75a351c6d9de47c25
BLAKE2b-256 e01ee685381f087a07fcdc3819c0634ffe65d8bd7a147544e09aa309bd0600c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1dd511d619da1e302a2bf29b7476bac4a0189a049e88302618d9419c37600e3f
MD5 8a4d1ecffea2e686febe029ae3e4c6bf
BLAKE2b-256 9937831c259f286c9b50260e9a10b03c0a839e375ece7302d3d2ff77d95b0074

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 660881267f96e5f451ba51ed9710817d703db24c9e62fcc75bec802e4714ba6d
MD5 5788805c16d18d23be306e8972b2fa20
BLAKE2b-256 43b2fad53aa672f0b3effe7bc3cbe72f39125a3671dd583e1354df83ae6d501b

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9273353007d65983f3de266ba06967db83e5851fe584b7daee653cf4e953dd9
MD5 e48b9ad0987532bf6b844fc3324daf37
BLAKE2b-256 0382cbc60149882e5809acaa73a40c2c237b3c91e5365001fee377e30e552a3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a7c7c61d4c832cedd30cde62bb62f605c14941c6c5bb5bb9d3cadd2cdc5f607
MD5 726a1b0aea0bc089497fe5be2a878e7f
BLAKE2b-256 8ef21d7fb8d8158d7d7df8c65d7739758ebe60dd1720ab739ad471688de296db

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c1e3f8ade37542b72646ba54337ebe48084380be9cd369a67a2b7c7a63c783c6
MD5 8b884e2bd0a842a3b6fcc0c47729ac9a
BLAKE2b-256 e1645536c25c9399c3b55a140209472cd14b9c9d9ee700239654e9a236ba9589

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp310-cp310-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file honeycomb_pycpp-0.1.1a1-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.1a1-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 786cf9f9959fffa5ff1fd386329d1a07fcc338abcbbf7bd1c348dfbfda74ba23
MD5 2248c03a80f5001905123a09672ec589
BLAKE2b-256 af31b7932fb75b30ac73462fe4d63400d26ddf9f1ea756a72834b8e90f43fcc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.1a1-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page