Skip to main content

Log without the setup via a pre-configured structlog logger with optional Sentry integration

Project description

Structlog-Sentry-Logger

CI codecov Documentation Status License PyPI - Python Version PyPI pre-commit Ruff Code style: black powered by semgrep


Documentation: https://structlog-sentry-logger.readthedocs.io

Source Code: https://github.com/TeoZosa/structlog-sentry-logger


:teacher: Overview

A multi-purpose, pre-configured, performance-optimized structlog logger with (optional) Sentry integration via structlog-sentry.

:sparkles: Features

  1. Makes logging as easy as using print statements, but prettier and easier to capture and filter!
  2. Highly opinionated! There are only two (2) distinct configurations.
  3. Structured logs in JSON format means they are ready to be ingested by many of your favorite log analysis tools!
  4. Cloud Logging compatible!

basic logging example for user documentation

:confetti_ball: What You Get

:muscle: Powerful Automatic Context Fields

The pre-configured options include:

  1. :watch: Timestamps
    • UTC time in ISO 8601 format (YYYY-MM-DDTHH:MM:SS.ffffffZ)
  2. :vertical_traffic_light: Log levels
    • Added to the JSON context for filtering and categorization
  3. :mag: Logger names
    • Automatically assigned to namespaced versions of the initializing python modules (.py files), relative to your project directory.
      • e.g., the logger in docs_src/sentry_integration.py is named docs_src.sentry_integration
  4. :mag_right: Function names and line numbers where logging calls were made

:fire: Tip
For easier at-a-glance analysis, you can also sort log fields by key by exporting the STRUCTLOG_SENTRY_LOGGER_KEY_SORTING_ON environment variable. Note, however, that this has a substantial (~1.6x) performance penalty.

:zap: Performance

structlog-sentry-logger is C-compiled and fully-tuned, leveraging orjson as the JSON serializer for lightning-fast logging (more than a 4x speedup over Python's built-in JSON library[^1]; see here for sample performance benchmarks). Don't let your obligate cross-cutting concerns cripple performance any longer!

For further reference, see:

[^1]: Source: Choosing a faster JSON library for Python: Benchmarking

:robot: Built-in Sentry Integration (Optional)

Automatically add much richer context to your Sentry reports.

  • Your entire logging context is sent as a Sentry event when the structlog-sentry-logger log level is error or higher.
    • i.e., logger.error(""), logger.exception("")
  • See structlog-sentry for more details.

Table of Contents

:tada: Installation

pip install structlog-sentry-logger

Optionally, install Sentry integration with

pip install "structlog-sentry-logger[sentry]"

:rocket: Usage

:loud_sound: Pure structlog Logging (Without Sentry)

Simply import and instantiate the logger:

import structlog_sentry_logger

LOGGER = structlog_sentry_logger.get_logger()

Now you can start adding logs as easily as print statements:

LOGGER.info("Your log message", extra_field="extra_value")

:memo: Note
All the regular Python logging levels are supported.

Which automatically produces this:

{
    "event": "Your log message",
    "extra_field": "extra_value",
    "funcName": "<module>",
    "level": "info",
    "lineno": 5,
    "logger": "docs_src.pure_structlog_logging_without_sentry",
    "timestamp": "2022-01-11T07:05:37.164744Z"
}

:outbox_tray: Log Custom Context Directly to Sentry (optional)

If you installed the library with the optional Sentry integration you can incorporate custom messages in your exception handling which will automatically be reported to Sentry (thanks to the structlog-sentry module). To enable this behavior, export the STRUCTLOG_SENTRY_LOGGER_CLOUD_SENTRY_INTEGRATION_MODE_ON environment variable.

An easy way to do this is to put it into a local .env file[^2]:

echo "STRUCTLOG_SENTRY_LOGGER_CLOUD_SENTRY_INTEGRATION_MODE_ON=" >> .env

:memo: ️Note
By default, only logs at error-level or above are sent to Sentry. If you want to set a different minimum log level, you can specify a valid Python log level via the STRUCTLOG_SENTRY_LOGGER_SENTRY_LOG_LEVEL environment variable.

For example, to send all logs at warning-level or above to Sentry you would simply set STRUCTLOG_SENTRY_LOGGER_SENTRY_LOG_LEVEL=WARNING

For a concrete example, given the following Python code:

import uuid

import structlog_sentry_logger

LOGGER = structlog_sentry_logger.get_logger()

curr_user_logger = LOGGER.bind(uuid=uuid.uuid4().hex)  # LOGGER instance with bound UUID
try:
    curr_user_logger.warn("A dummy error for testing purposes is about to be thrown!")
    x = 1 / 0
except ZeroDivisionError as err:
    ERR_MSG = (
        "I threw an error on purpose for this example!\n"
        "Now throwing another that explicitly chains from that one!"
    )
    curr_user_logger.exception(ERR_MSG)
    raise RuntimeError(ERR_MSG) from err

We would get the following output:

{
    "event": "A dummy error for testing purposes is about to be thrown!\n",
    "funcName": "<module>",
    "level": "warning",
    "lineno": 12,
    "logger": "docs_src.sentry_integration",
    "sentry": "skipped",
    "timestamp": "2022-01-06T04:50:07.627633Z",
    "uuid": "fe2bdcbe2ed74432a87bc76bcdc9def4"
}
{
    "event": "I threw an error on purpose for this example!\nNow throwing another that explicitly chains from that one!\n",
    "exc_info": true,
    "funcName": "<module>",
    "level": "error",
    "lineno": 19,
    "logger": "docs_src.sentry_integration",
    "sentry": "sent",
    "sentry_id": null,
    "timestamp": "2022-01-06T04:50:07.628316Z",
    "uuid": "fe2bdcbe2ed74432a87bc76bcdc9def4"
}
Traceback (most recent call last):
  File "/app/structlog-sentry-logger/docs_src/sentry_integration.py", line 10, in <module>
    x = 1 / 0
ZeroDivisionError: division by zero

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/app/structlog-sentry-logger/docs_src/sentry_integration.py", line 17, in <module>
    raise RuntimeError(ERR_MSG) from err
RuntimeError: I threw an error on purpose for this example!
Now throwing another that explicitly chains from that one!

:cloud: Cloud Logging Compatibility

The logger will attempt to infer if an application is running in a cloud environment by inspecting for the presence of environment variables that may be automatically injected by cloud providers (namely, KUBERNETES_SERVICE_HOST, GCP_PROJECT, and GOOGLE_CLOUD_PROJECT).

If any of these environment variables are detected, log levels will be duplicated to a reserved severity key in the emitted logs to enable parsing of the log level and the remaining log context (as jsonPayload) by Cloud Logging (see: Cloud Logging: Structured logging).

:memo: ️Note
This behavior can also be manually enabled by adding the STRUCTLOG_SENTRY_LOGGER_CLOUD_LOGGING_COMPATIBILITY_MODE_ON variable to your environment, e.g., via a .env file[^2].

:warning:️ Warning
If a user manually specifies a value for the severity key, it will be overwritten! Avoid using this key if possible to preempt any future issues.

:chart_with_downwards_trend: Output: Formatting & Storage

The default behavior is to stream JSON logs directly to the standard output stream like a proper 12 Factor App.

For local development, it often helps to prettify logging to stdout and save JSON logs to a .logs folder at the root of your project directory for later debugging. To enable this behavior, export the STRUCTLOG_SENTRY_LOGGER_LOCAL_DEVELOPMENT_LOGGING_MODE_ON environment variable, e.g., in your local .env file[^2]:

echo "STRUCTLOG_SENTRY_LOGGER_LOCAL_DEVELOPMENT_LOGGING_MODE_ON=" >> .env

In doing so, with our previous exception handling example we would get:

Output_Formatting_example_0 Output_Formatting_example_1

[^2]: This library uses python-dotenv to automatically populate your environment with this variable (if it exists) from the local .env file. Alternatively, you may use direnv and a .envrc file. A sample .envrc file (with all features enabled) has been provided at the root of the repository (.envrc.sample). If direnv is already installed, it's as simple as copying .envrc.sample to the root of your project, editing it to reflect your desired configurations, renaming it to .envrc, and running direnv allow :tada:

:clipboard: Summary

That's it. Now no excuses. Get out there and program with pride knowing no one will laugh at you in production! For not logging properly, that is. You're on your own for that other observability stuff.

:books: Further Reading

:one: structlog: Structured Logging for Python

:two: Sentry: Monitor and fix crashes in realtime

:three: structlog-sentry: Provides the structlog integration for Sentry


:wrench: Development

For convenience, implementation details of the below processes are abstracted away and encapsulated in single Make targets.

:fire: Tip
Invoking make without any arguments will display auto-generated documentation on available commands.

:building_construction: Package and Dependencies Installation

Make sure you have uv installed and configured.

To install the package and all dev dependencies, run:

make provision-environment

:fire: Tip
Invoking the above without uv installed will emit a helpful error message letting you know how you can install uv.

:package: Python Module to C-Extension Compilation

The projects's build.py file specifies which modules to package.

For manual per-module compilation, see: Mypyc Documentation: Getting started - Compiling and running

:white_check_mark: Testing

We use tox and pytest for our test automation and testing frameworks, respectively.

To invoke the tests, run:

make test

Run mutation tests to validate test suite robustness (Optional):

make test-mutations

:information_source: Technical Details
Test time scales with the complexity of the codebase. Results are cached in .mutmut-cache, so once you get past the initial cold start problem, subsequent mutation test runs will be much faster; new mutations will only be applied to modified code paths.

:rotating_light: Code Quality

We use pre-commit for our static analysis automation and management framework.

To invoke the analyses and auto-formatting over all version-controlled files, run:

make lint

:rotating_light: Danger
CI will fail if either testing or code quality fail, so it is recommended to automatically run the above locally prior to every commit that is pushed.

:arrows_counterclockwise: Automate via Git Pre-Commit Hooks

To automatically run code quality validation on every commit (over to-be-committed files), run:

make install-pre-commit-hooks

:warning:️ Warning
This will prevent commits if any single pre-commit hook fails (unless it is allowed to fail) or a file is modified by an auto-formatting job; in the latter case, you may simply repeat the commit and it should pass.

:memo: Documentation

make docs-clean docs-html

:fire: Tip
For faster feedback loops, this will attempt to automatically open the newly built documentation static HTML in your browser.

:judge: Legal

:page_facing_up: License

Structlog-Sentry-Logger is licensed under the Apache License, Version 2.0. See LICENSE for the full license text.

:busts_in_silhouette: Credits

This project was generated from @TeoZosa's cookiecutter-cruft-poetry-tox-pre-commit-ci-cd template.

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

structlog_sentry_logger-1.6.2-cp313-cp313-win_amd64.whl (94.0 kB view details)

Uploaded CPython 3.13Windows x86-64

structlog_sentry_logger-1.6.2-cp313-cp313-musllinux_1_2_x86_64.whl (201.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

structlog_sentry_logger-1.6.2-cp313-cp313-musllinux_1_2_aarch64.whl (197.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

structlog_sentry_logger-1.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (198.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

structlog_sentry_logger-1.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (195.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

structlog_sentry_logger-1.6.2-cp313-cp313-macosx_14_0_x86_64.whl (114.1 kB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

structlog_sentry_logger-1.6.2-cp313-cp313-macosx_14_0_universal2.whl (197.4 kB view details)

Uploaded CPython 3.13macOS 14.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp313-cp313-macosx_14_0_arm64.whl (108.7 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

structlog_sentry_logger-1.6.2-cp313-cp313-macosx_13_0_x86_64.whl (114.1 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

structlog_sentry_logger-1.6.2-cp313-cp313-macosx_13_0_universal2.whl (197.4 kB view details)

Uploaded CPython 3.13macOS 13.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp313-cp313-macosx_13_0_arm64.whl (108.7 kB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

structlog_sentry_logger-1.6.2-cp313-cp313-macosx_12_0_x86_64.whl (114.1 kB view details)

Uploaded CPython 3.13macOS 12.0+ x86-64

structlog_sentry_logger-1.6.2-cp313-cp313-macosx_12_0_universal2.whl (197.5 kB view details)

Uploaded CPython 3.13macOS 12.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp313-cp313-macosx_12_0_arm64.whl (108.7 kB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

structlog_sentry_logger-1.6.2-cp313-cp313-macosx_11_0_x86_64.whl (114.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

structlog_sentry_logger-1.6.2-cp313-cp313-macosx_11_0_universal2.whl (197.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp313-cp313-macosx_11_0_arm64.whl (108.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

structlog_sentry_logger-1.6.2-cp312-cp312-win_amd64.whl (94.2 kB view details)

Uploaded CPython 3.12Windows x86-64

structlog_sentry_logger-1.6.2-cp312-cp312-musllinux_1_2_x86_64.whl (202.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

structlog_sentry_logger-1.6.2-cp312-cp312-musllinux_1_2_aarch64.whl (198.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

structlog_sentry_logger-1.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (200.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

structlog_sentry_logger-1.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (197.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

structlog_sentry_logger-1.6.2-cp312-cp312-macosx_14_0_x86_64.whl (114.3 kB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

structlog_sentry_logger-1.6.2-cp312-cp312-macosx_14_0_universal2.whl (197.9 kB view details)

Uploaded CPython 3.12macOS 14.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp312-cp312-macosx_14_0_arm64.whl (108.8 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

structlog_sentry_logger-1.6.2-cp312-cp312-macosx_13_0_x86_64.whl (114.3 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

structlog_sentry_logger-1.6.2-cp312-cp312-macosx_13_0_universal2.whl (197.9 kB view details)

Uploaded CPython 3.12macOS 13.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp312-cp312-macosx_13_0_arm64.whl (108.8 kB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

structlog_sentry_logger-1.6.2-cp312-cp312-macosx_12_0_x86_64.whl (114.3 kB view details)

Uploaded CPython 3.12macOS 12.0+ x86-64

structlog_sentry_logger-1.6.2-cp312-cp312-macosx_12_0_universal2.whl (197.9 kB view details)

Uploaded CPython 3.12macOS 12.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp312-cp312-macosx_12_0_arm64.whl (108.8 kB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

structlog_sentry_logger-1.6.2-cp312-cp312-macosx_11_0_x86_64.whl (114.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

structlog_sentry_logger-1.6.2-cp312-cp312-macosx_11_0_universal2.whl (197.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp312-cp312-macosx_11_0_arm64.whl (108.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

structlog_sentry_logger-1.6.2-cp311-cp311-win_amd64.whl (93.6 kB view details)

Uploaded CPython 3.11Windows x86-64

structlog_sentry_logger-1.6.2-cp311-cp311-musllinux_1_2_x86_64.whl (197.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

structlog_sentry_logger-1.6.2-cp311-cp311-musllinux_1_2_aarch64.whl (194.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

structlog_sentry_logger-1.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (195.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

structlog_sentry_logger-1.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (192.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

structlog_sentry_logger-1.6.2-cp311-cp311-macosx_14_0_x86_64.whl (113.0 kB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

structlog_sentry_logger-1.6.2-cp311-cp311-macosx_14_0_universal2.whl (196.5 kB view details)

Uploaded CPython 3.11macOS 14.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp311-cp311-macosx_14_0_arm64.whl (108.7 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

structlog_sentry_logger-1.6.2-cp311-cp311-macosx_13_0_x86_64.whl (113.0 kB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

structlog_sentry_logger-1.6.2-cp311-cp311-macosx_13_0_universal2.whl (196.5 kB view details)

Uploaded CPython 3.11macOS 13.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp311-cp311-macosx_13_0_arm64.whl (108.7 kB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

structlog_sentry_logger-1.6.2-cp311-cp311-macosx_12_0_x86_64.whl (113.0 kB view details)

Uploaded CPython 3.11macOS 12.0+ x86-64

structlog_sentry_logger-1.6.2-cp311-cp311-macosx_12_0_universal2.whl (196.5 kB view details)

Uploaded CPython 3.11macOS 12.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp311-cp311-macosx_12_0_arm64.whl (108.7 kB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

structlog_sentry_logger-1.6.2-cp311-cp311-macosx_11_0_x86_64.whl (113.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

structlog_sentry_logger-1.6.2-cp311-cp311-macosx_11_0_universal2.whl (196.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp311-cp311-macosx_11_0_arm64.whl (108.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

structlog_sentry_logger-1.6.2-cp310-cp310-win_amd64.whl (94.0 kB view details)

Uploaded CPython 3.10Windows x86-64

structlog_sentry_logger-1.6.2-cp310-cp310-musllinux_1_2_x86_64.whl (198.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

structlog_sentry_logger-1.6.2-cp310-cp310-musllinux_1_2_aarch64.whl (196.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

structlog_sentry_logger-1.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (196.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

structlog_sentry_logger-1.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (195.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

structlog_sentry_logger-1.6.2-cp310-cp310-macosx_14_0_x86_64.whl (114.7 kB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

structlog_sentry_logger-1.6.2-cp310-cp310-macosx_14_0_universal2.whl (199.6 kB view details)

Uploaded CPython 3.10macOS 14.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp310-cp310-macosx_14_0_arm64.whl (110.0 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

structlog_sentry_logger-1.6.2-cp310-cp310-macosx_13_0_x86_64.whl (114.7 kB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

structlog_sentry_logger-1.6.2-cp310-cp310-macosx_13_0_universal2.whl (199.6 kB view details)

Uploaded CPython 3.10macOS 13.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp310-cp310-macosx_13_0_arm64.whl (110.0 kB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

structlog_sentry_logger-1.6.2-cp310-cp310-macosx_12_0_x86_64.whl (114.7 kB view details)

Uploaded CPython 3.10macOS 12.0+ x86-64

structlog_sentry_logger-1.6.2-cp310-cp310-macosx_12_0_universal2.whl (199.6 kB view details)

Uploaded CPython 3.10macOS 12.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp310-cp310-macosx_12_0_arm64.whl (110.0 kB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

structlog_sentry_logger-1.6.2-cp310-cp310-macosx_11_0_x86_64.whl (114.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

structlog_sentry_logger-1.6.2-cp310-cp310-macosx_11_0_universal2.whl (199.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp310-cp310-macosx_11_0_arm64.whl (110.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

structlog_sentry_logger-1.6.2-cp39-cp39-win_amd64.whl (94.0 kB view details)

Uploaded CPython 3.9Windows x86-64

structlog_sentry_logger-1.6.2-cp39-cp39-musllinux_1_2_x86_64.whl (198.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

structlog_sentry_logger-1.6.2-cp39-cp39-musllinux_1_2_aarch64.whl (196.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

structlog_sentry_logger-1.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (196.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

structlog_sentry_logger-1.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (194.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

structlog_sentry_logger-1.6.2-cp39-cp39-macosx_14_0_x86_64.whl (114.7 kB view details)

Uploaded CPython 3.9macOS 14.0+ x86-64

structlog_sentry_logger-1.6.2-cp39-cp39-macosx_14_0_universal2.whl (199.4 kB view details)

Uploaded CPython 3.9macOS 14.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp39-cp39-macosx_14_0_arm64.whl (109.9 kB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

structlog_sentry_logger-1.6.2-cp39-cp39-macosx_13_0_x86_64.whl (114.7 kB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

structlog_sentry_logger-1.6.2-cp39-cp39-macosx_13_0_universal2.whl (199.4 kB view details)

Uploaded CPython 3.9macOS 13.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp39-cp39-macosx_13_0_arm64.whl (109.9 kB view details)

Uploaded CPython 3.9macOS 13.0+ ARM64

structlog_sentry_logger-1.6.2-cp39-cp39-macosx_12_0_x86_64.whl (114.7 kB view details)

Uploaded CPython 3.9macOS 12.0+ x86-64

structlog_sentry_logger-1.6.2-cp39-cp39-macosx_12_0_universal2.whl (199.4 kB view details)

Uploaded CPython 3.9macOS 12.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp39-cp39-macosx_12_0_arm64.whl (109.9 kB view details)

Uploaded CPython 3.9macOS 12.0+ ARM64

structlog_sentry_logger-1.6.2-cp39-cp39-macosx_11_0_x86_64.whl (114.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

structlog_sentry_logger-1.6.2-cp39-cp39-macosx_11_0_universal2.whl (199.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ universal2 (ARM64, x86-64)

structlog_sentry_logger-1.6.2-cp39-cp39-macosx_11_0_arm64.whl (109.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 96015818b37dfb33920aef824416789006ddbb4588b5261a88b88e74c0c5b3e6
MD5 6ec7c25ae413b3f8ee8c2a11bdd266e2
BLAKE2b-256 18538e6823275802ab5dac0484fddf90185c6bf180d5fd006ca92822addf4131

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d7c58cc275965ec6e2f354dd3ae22e16b4219a0159169f7c12a7be7b2cb9213
MD5 c95bddfe7306423bd37479cc110b30f2
BLAKE2b-256 2e592a19e3b2df48fea848ed4533f92788028441bb4dc752ef47a7ac9fca395d

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b28b667c801bd13e52f08a4ac7769a8650e7956d4e5810ba1f4c01d272470da
MD5 35cdbb401d2adfa710402be3084ab2a3
BLAKE2b-256 770bd147350897b115731168c1c4c1f44c971e4714a8a9b2108cc085fa2b5cf4

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ce30e12088bd221bd73c67e84324cdd81169963dd058f74196346470355c014
MD5 a53af1dbe13b9d7e18871fa8fd388473
BLAKE2b-256 d4d10b2f7d53af1f798cf74dc7fddc84c3f86c283d7adf64c992647d1375b7be

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2933f0ee8530a3d88293dafeb41e26c7775df837090bea74d58ec368368aa65f
MD5 c32f890d866bedbc5eb4195c8d3e134e
BLAKE2b-256 a4c6b100995c52fd0b37cab6a2c5acbb30d66dcfb9bdc2e2b23a0a77604dc6fc

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 57602148bb0a7c952b07bf0238054a1a1baaa918f012bb7ca848d3626034bb91
MD5 92883e878692bf147d66454fa2919b3f
BLAKE2b-256 db771c6b5aa0b5a21ef11f1a93c8702d2ad47cc7305314b4d121d80353e2dd1c

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-macosx_14_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 e3c811a5b0f42d4e46d9099d89f8e79541eeb4b3b44b226171890329219bb056
MD5 92197296a0f0967b82a83539365529b1
BLAKE2b-256 6cea686825783cea4091a959ab6cfdafd0b039cafce94fa43f904ca36b411168

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f94ff47e68528c4a118442eb8d32c9b4117a3375823aa52dc512f11bcc035c7f
MD5 d2878ed5ba9bf4f0fd43a766217cb336
BLAKE2b-256 17a115d0f18b5682c20f7e04a374b7879776775aac5b5d287afbcac380d512d6

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 d6d57db3ed364f1640412fcff9b2778945e6265e8affe1e6f46b5dcdfa6945d1
MD5 47f0d0c569a2589eb4e240029e4c75ef
BLAKE2b-256 782c1358044c081f1ee527df27b693c716c67962cd6e2213735c071f0b62d74b

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-macosx_13_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-macosx_13_0_universal2.whl
Algorithm Hash digest
SHA256 257a0e0b730cec632723cabb3dcbe625616298e3fe7dc0224a50219306725a80
MD5 6e8f5507df7e417dd76073344216b536
BLAKE2b-256 953747e0a6dc223423c88b0bfdfbcc747ac2055af1627804c57bb1e7acf74aff

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ee60dc8117d4266954c4e1a64b64bd447e18ba83de2de3c87726f887b13f9149
MD5 54b316133b88f5803bae027902d94d9a
BLAKE2b-256 8cb96c3fa10a8388ae659bc38d7195972e01577e0f9c2ddab3600e9dd54d9a0a

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 230e4e4e7748619c6e1c20d56030056f875c4853170fbf141f6b41508ee45ab3
MD5 6502c9edbd53b8b24a0e3a25d2962ba8
BLAKE2b-256 5491a028cbd5664f3ab9782cfb511362cca6c8ecda28c2b6d50c6e98bc53c104

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-macosx_12_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-macosx_12_0_universal2.whl
Algorithm Hash digest
SHA256 c85af8f009b609ae53c795b487ab0f4a1d16572f65283c87a9322c634bbb4888
MD5 e3af7bd6f599cf11069817c6c7bd2fbc
BLAKE2b-256 550692f1576661ac7597eb9360ecc77f43a3c689bef030fcbc6c4d6d69a61d10

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 3df2afc1e363c698111da983de3f1694ed88f62bb806db2029fb79b7c1fc367b
MD5 79acb76b4bed359df6ac7fb085764461
BLAKE2b-256 fd2d47f6191e39e41d70e2e5e4f9a20c6f2f140c4f449043b2427df54e2ae339

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ccc3390cd6f542b188748ec7bb5a89bbfcc3b2930dd0fa75eb003153b34ed700
MD5 3d5c0e838cd67a1abc67640ff069abc7
BLAKE2b-256 5a8b925200028302c4482a91c0cd4440104a017397d30de10372fa1020173246

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 eed94a12917f99cfdd03d917f7219281ae6ada77429d62220c517b31eead9af7
MD5 ca968d5fbb5cc8c6acfe646cf38a425b
BLAKE2b-256 30c1ba4be1b6b1274e57de46535e4521c0725fa93d080d51de3444a7328e5f2a

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3d8e4f17cceeeb59abaaa16fbeb32d8cfb58e93fd3345628acd45657bd8f574
MD5 cc890a8dcbb28c1b71455e8eca9be327
BLAKE2b-256 865fea8198e72a11927fa8f6f7e0eed9e056a4c8d7df106e4ca7c4e3cb3de57f

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 69e7846feb7ce5f2c098e880b0d740a6d56c4b7703235871006313d2db738451
MD5 6c8c98a4c534bf445deb9e893cb35c33
BLAKE2b-256 48de64c585852808c234cf50c3aa1ccca2597f9b1980e4fd8bd17647b50ddb6a

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ba2b054dbd4afc6fceaadc4b3e0a4b4816d4360e9ea6c1514caf8e94fca99ee
MD5 99f45d352c7e99da6ce9c608f74b04ee
BLAKE2b-256 862daf1cb65907687a4854c821f5346e662767df2dfe80a8a7f32ec6ea16d69d

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f9808b6cf5c31e38fe454bf0bd459e5d67ebf5b6e01a7063a8d55e181b691c5
MD5 3b856b602516833b3d671d8854e1213f
BLAKE2b-256 a96d2683fc9121b32bf3021ff94aea38af860bad3339238f5669181b875ac8ce

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 379b3ce9ed71ab620d0a8d2321bb9ad12c0f163b209f292a3536cb3587a52d48
MD5 8d2a4a74bd45e61a9ebd956edab06da6
BLAKE2b-256 7a812a5220ae6b19b040880a3ab26fd899076689e8ca846dd46ec3790eecde6e

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca68d1a9b8082793eb72543c1560c10399d6aab30278dd53153f9ee7ba3b1676
MD5 5a0f398c87773a33a12a8d3cf2308b62
BLAKE2b-256 d8f3fa93838df02432ef9e890f781493c934d97d859eeac4e2f48c275f85aa51

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 80ee82cecb81d2498642489adc2307405750de6954a731be4c81355c5876082b
MD5 0bf85372643eaa433d1018928b56a2a7
BLAKE2b-256 359c0b4d87bfa90807e50cf034a3c36340a9cf5a13471ac9a863c7acca5c85a9

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-macosx_14_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 f9e6124848277c91ea1ecf5f8992a041c92cfbd163e684ff46b5d9c327bb3fdb
MD5 d93539a94d6a1e4d89c7d58454db5ef8
BLAKE2b-256 0818a575f9c90c5550529142dddd6285dbdd7ef60f89efd9e521c01ac7c5c53f

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0b1e59b5aceccbdf8438878a3b7873e65cabed9c7433a72829d0374f5b102f36
MD5 689d349ff76fa10dd7ab2512955bb076
BLAKE2b-256 5e4ba2bd22fa837e9394f41e078d8d7305ca87b976abe584f9f51cd738d5633b

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 d21241d748500a9c91a2d1e1f9dcf9db0519f2fad81fb485e3ccf696aa04c174
MD5 d2fd16f0d2e8577ab43e4244a868f7b9
BLAKE2b-256 b488ed8c1750a39659fc295830815ef7d3271b394b130b4a402ac05ba62a42d2

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-macosx_13_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-macosx_13_0_universal2.whl
Algorithm Hash digest
SHA256 f9ed8ea743fff37caabe134ad9e5c21d9fd0535e908e88cf93156ac2914943c7
MD5 7c041b4112be5ed0f562aac7406bfbf5
BLAKE2b-256 0815e396a2eeb21814b07a3d468cb089a14b99d2ea4156657b2bd3efda5da8b9

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 032b5bbc8ac81290a3b05f80e89840129f1a8094f5c9fa648065cec36cffc322
MD5 ed683d7331b54015ac85cde2ac2144af
BLAKE2b-256 7d27e638bf83845e98b00bc7ecf5a72bcc9abdf2df0dba8ddfa69bf752bf9cfb

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 735e78a273caa5d1fc04f19ec37e1ee336d15ee813dbca8c9fbccf45e566713e
MD5 822288a747f5ba8c2d2c927a995b3816
BLAKE2b-256 fa3f6301a03f1ca15241022e26794bb6e44cf80cadcecd13a15ea715ad13038a

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-macosx_12_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-macosx_12_0_universal2.whl
Algorithm Hash digest
SHA256 f90620044a78e6e5296c887a13d9c20717c98be5cd33eb71342ed5c78691fcc1
MD5 ec2dae7efaae2c5d570b66e2c62886ba
BLAKE2b-256 f474446e01af3672a3426324db571c90218699847631328fd3d691d7bead08e3

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 c16c44f05e944640a3e13ccc49afa943b5c1eee6f859ec8cd38df3d72002982b
MD5 c2504d450781a218b17601636706f35a
BLAKE2b-256 f262565c17b8d985173bc40136474b1d71a3a875f458a57b84f301c886e92b51

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 106c6fe58af4a236d7cc798f241ff42e46277a8b1d0fd0a1444edac31721e758
MD5 906a3d7733fe5e75ec410b8075884047
BLAKE2b-256 3f4a82e4fa3d1dddffa5cbc5ec397b9160bd873dd7321e1f947cf9b62eec274a

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 ffeadd62b8d7f8f533cbbdbd9ce97eccaf72d6d6b2d1152f85e30e705f92656a
MD5 0caa394310cf16bd1b62358b7f3e7fef
BLAKE2b-256 53d7c3237f6f727b89204297be1b8a085497b68884ca8d7d4e553f4571d1dabe

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24de658b179f314828ad88539155428dea4c6a79c66a775c7944cf7bb8e79b66
MD5 1d911334ed4d20e477b62a054eeb7995
BLAKE2b-256 4dab53dee57adbd0bc2bfb26e86896bec3008e9577d76577c6f581394ccdf3f6

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e5019863bb8a70fca8f051d8a16c47e8a51856c88fd4a6de5fc5627715c981d5
MD5 59bc24ad28e50f7749f33184d51d5b59
BLAKE2b-256 365d790498c2e31fa9f12cd7f127b82723f42c2441499e8faec1d30b051a7de5

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4b02ff53213cba7d23c340d458ade207b3e2c8075d7ecc17434c866542877d3
MD5 3ee816e8344664cb068f5537cae7c4e0
BLAKE2b-256 ebada45255b24ece05c780233e1a51c359c39ff45bb7a4af346a6523a4b4b5a7

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 018cafde77f62278910766be766f80e7526b2988b8ab4c0f8e6c6389c286def2
MD5 298963e06ef8c65956f4599cf052556a
BLAKE2b-256 3549a9588f04cc9e4a216a5d75a610f51e06aadb12e1e33640b441dbb32dd448

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88353e188331cf8964b3c4d7a6060b199fd0bdda74e6fdcde494feba9c9b07af
MD5 a2e1064dab5b4da8728ba361adc2d18e
BLAKE2b-256 ed436458672ca072b3e5fcabbfad3a13f5f8aec1e9dbef72b3010f2e79d7f6fe

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb91d410effe1369ee4b98af2c309cea6c8e45ec74cd923198f29f10eb52db14
MD5 e7735886e84becfa0670e01eb3aac3e5
BLAKE2b-256 156dc0f53a83671eae0d9b7afdb52a2cc23fbd13f546ccbe445313775767005c

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 16655945859cf83c817b14f63881f124df6a374ec19f2cfac2e50cc923aa1d87
MD5 4df16f4489dfeebc6f134c0d2e5e314c
BLAKE2b-256 d38f55a88a0fc21dc33ed156e15e8b8ce88f7e67323df68f1ac9f7699a53909c

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-macosx_14_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 188a36605f82f103694f01bdd4a10fee47944cbed05ca4bf5401b3c6437bd40c
MD5 4c45e5b7bc73f441f065589c384ecdbe
BLAKE2b-256 f08100175b14240b5abcf34582bd8c5b0c67283a0705a0a9b27f00f3ac03fbf7

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b0f18db75b2c8b182f139e66253eecc2e7456a112e90c5b87ef97f7f17c9b185
MD5 37e2ce905b2f0c6c4d12e9fdf0ba911a
BLAKE2b-256 6f322e99b36f16492608d5bc8ff5a2da2b4c15b92655fef85b2a3bfd6d925fee

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 05cc5eb56bbba1dc01b64a060c589f6c1ee20102d3fb3fb840b2f6b3bf70081d
MD5 604f5120d77b7daf26d92e029cd5a64a
BLAKE2b-256 0ae9551265760af4c9bd6e731fee6b9929123490faa19be91588739ab83055f5

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-macosx_13_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-macosx_13_0_universal2.whl
Algorithm Hash digest
SHA256 56d4c65a654ec103fdc2933a460d3ba31fda413ad1226494eb9397c196c2e784
MD5 8090974b5da47046168e8bc0dff6092b
BLAKE2b-256 28dbfdb44c4158d8fe467acec3bb9176f533594d6abbfdb1141610560651ac9f

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 05c9b3c3a3cc9344bfcdf92c9b50e1d57baf608b637276378955c0730bfc4aa3
MD5 2f04707eb3826be1b15a5d69f71bb31c
BLAKE2b-256 749be964eb7035d70d46206364d7c77d37cd5deddda7888a9bf254f38489cbbc

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 3b5fbad22d917a16d8c9a1b9728cdfd5f99f8a5c6572d47eb9942f4032bec010
MD5 eaa21cbe266e754989845058aeb643fb
BLAKE2b-256 ef954fc05ab1913ac7863bb7dc15069651bf9600ae45c8ec1d784a022fbd8f59

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-macosx_12_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-macosx_12_0_universal2.whl
Algorithm Hash digest
SHA256 ccaee33da5ba04321fa720bb4d755932c7a82a8042e74f0b8f863402666bd333
MD5 7d5e54b6f094e1f713d5bfb7c48bf105
BLAKE2b-256 34ccac178afb83c852a8448aab879da5f235ddc09819cf80962e0ef0b1e26c71

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 44f659333399ed551a533a19889fd3bb649274b47155aa19c7215302795e91e2
MD5 4f0b0ce83c2ee4f066f9d4a60297eb85
BLAKE2b-256 cb22e2b6ec4c79a22ed31cd057e0594749f3fdbac18548df5a20fcb00de7e35f

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b6d3a16529b3953ec7add069af59ef0914371ca74a74b1792f7b730fe23a5bff
MD5 5ee73f58e11f881da8fe165ddc99b8ab
BLAKE2b-256 0fe11fb9b6d2baa065bf2e4a389b1d081f1fc965261524538745a10493522eb5

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 fdad06fec2e583ba82966646ba678eceb1105f62a3780d89ad9a2e06dd0f18a6
MD5 0f9cf5488320dfa037c253f324711977
BLAKE2b-256 c0d3ebb68c8005a068e3886596d7b407af9a26ed9ff2408968319cb192831ea4

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c680378fa2e94132571e68c38294519b2851b2792bbef6ccde7f094a01755f1
MD5 a1c556b9a9ea7fb40e6dee81d32b422a
BLAKE2b-256 77a47d3e1876d242bc460bc4a2479ae625b74f42421bd4413c26c02988f4ba62

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1ce7867ebf8204389ff9b4c32712c541771da8c864c4e2fd008c63e074caf5e7
MD5 27ac39f973c49873e0988889b217681e
BLAKE2b-256 76fd04bb31b0b4a308d261f8a4f438c810c4d049bf9de311a103dd660f198a98

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b19823cff6e60b996ee1449bb18878b7d5e600c5f68ad8dd80fc61e1358045d
MD5 3bfe4fe051d1e856be475b7f959e6e1a
BLAKE2b-256 70a2802e07156a41bf0bcd57c7c61d9395d2f640e4cb70e6889b2dee40397df1

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e15ff1c0be5e5b1255fced39ebcb0d81e9700bd80e9d6bebd523254bf17937aa
MD5 3f28dd2bbb74a0b42264bcd1fac1909b
BLAKE2b-256 2aafaf3eb0d6e29e0e6b0abdb6a22958154594f2313055c2090ceb50b1ed81d5

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac8e161eec4b80ab8f72573964d3f6b756920738e0d872230feb9b275590cc7c
MD5 16c5eff6bf09b57833cdf3d5a84d0a64
BLAKE2b-256 969e1ffb406551244133bd0cf8803746f32d8f1af4b4088d728dc1d13b1525a1

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 082d916006a6d5bcfc2355284777638603ae6781cbdd36127215e965fc9381f2
MD5 e28efcac5140ed2e9ab0f9d52c77e2d4
BLAKE2b-256 11f6a9de87e4fda3d6fcc29e5f0ac47b24608a42e86e5e4514f4c8bc7410832d

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 961b3c59a5595436852e4d263b7e0119007c6edf0bbc64b112e234f73fc3a854
MD5 8bda4154635484c0e8e5294e72107e1a
BLAKE2b-256 c9a95ac4ff168546e0bc44547cf47ed232c23c371275676c592e8d543fbc0933

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-macosx_14_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 e28f74d1227fd71f19324ab79156a512cd26c12adaf237bdfa860a7323985fc7
MD5 aa877685c2e3059ee29f608d772bd74c
BLAKE2b-256 380306afd361b2b418b6948ceda334338d73f8d62ff334de62bf19749defcb59

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 bbaf035fb0dfe69e482956d446a32a03211434a9e7143fd8665585dccea4909f
MD5 9f291b46ac79c2dfe9a6fcb2c04a8d66
BLAKE2b-256 24b5b39e531c67262eff9ef5997a8eae3d522df15698454212db27d8475fe955

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 5a98c5c4179f2a8abef9713a0ed1699c01b9f97b8baa7160362186abb6f0ada7
MD5 293ce4b27f3d662e1052616e929746dc
BLAKE2b-256 1108bad36056b1493c46055f5b77a55f69bb3fcc7573ff7c86fe48a3b760e6ab

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-macosx_13_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-macosx_13_0_universal2.whl
Algorithm Hash digest
SHA256 7afbab47fc20675fc467ad56e42a282adec876ea082680fff15099b8569ff71e
MD5 b626e9ca2cbb87215ef43e9ebd91ee22
BLAKE2b-256 e740502f214d6cdd117881c9775671bb73950f68f6070ecc5d7395808e1d9c1e

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b7d4c5fda6fbf4c7d1eac8a48dce5493d9bacf190f50a7878eb99321cfcad7c9
MD5 99193f539a56ff9bf18bf096c35a081f
BLAKE2b-256 bf44096391bd6726f9d3992bad3666bc9a2c4e96e92d6403775626b20225bf0d

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 a6a4f54dccc09c8a9ed3d9e0f8738fd02a6e43ecf9c059add4a281d3cef305b1
MD5 0f19c21049c415e00f1d249c7b1aa1ff
BLAKE2b-256 e3bdc3add96f033da72bc5cb567e6895077d5715e48d45c5b0ce72730ef06a54

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-macosx_12_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-macosx_12_0_universal2.whl
Algorithm Hash digest
SHA256 ec78623222e43ada34abdd3b16b1c8abfe281e1ea9ca965f16a71c191e8f5230
MD5 b1f93029ecedcd1f23154a82fb541ed2
BLAKE2b-256 ad88fe03b60b8273ca84bd5b479835fdfeb2a8e9447701e4ec1f89f9f2f3250d

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 df9aad0965c3beeac918eea3f912ec94c6c3007f1d178179b852789b69aa442b
MD5 8a7691e43ba746542998c479bd7c6a25
BLAKE2b-256 e293dd91bcb386d04d925d9768b96feb7f4aaa0ff692ec08e60ddc27a39e7ba8

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c45e4a07f34aea866b5daf291f246d1422c76e572a82d9b8a16d85fa52c407b3
MD5 049149fabcda8cd6478efcc539d0749f
BLAKE2b-256 a81891b8c5ad2ed520af6e88140a2fc07af52aea95cc9a681b632724c059870c

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 c31c679f9b8fd138dba77738124a6d0429db3541a2dc1e6406b2996111710590
MD5 b8433db70bdc87e81bcd43a94154a998
BLAKE2b-256 ef365ba08efb3a14ff7a1312c8f6dcba2b0aa7c8fa7392fc548592f4b20df777

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37b9fe38c43a2133e044bdaf0f949fca08f98a52e358a9ca63affb689d0121ca
MD5 81b641b0a50c011b55d0093ecd4506c2
BLAKE2b-256 6788b01046c92b02d0e892df00f9a776bc270c3611b92c5053d7e73687e49d9e

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5515b19400b0b5d2c42e54d9ebf0bff5bfb59082c4beed789391b3b64acdb8f2
MD5 7ea1c1b5f406b9aef3cdb9d670d8e302
BLAKE2b-256 523ae7f61ab8049a9661b97599f5c66157440eb5512c294ae47c75e0aec6dad6

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4145af3af668fbb143b23d856d1cbbbda1e34f65225956c24b78d32790343302
MD5 db8d4147e2e70ba75cc26b57072186b6
BLAKE2b-256 f71295cca09cb2ff40c908b460ba7a7522c2ef4b07be4d5c983671e744bfa0cf

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c25730ac97b54296710a8a28d6c9fef5b45008033c0c776d9778510ea1581085
MD5 9b4a6e4f94f329572b91cb21d02171a2
BLAKE2b-256 d72e527942328bc1ea0c997dce507e25c5ec008b2e504031542ef8d11d6f01cd

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75aff79c41fb377e757b07c6449e0ba762f6f2d828d61ec05c940d0f916ffc13
MD5 3838cb3db6f0252764c3f8615d9fc5c4
BLAKE2b-256 f8120a15e7c43ee2f2a4cf51cbc186f5aec68593ddf50938dac36d3cc8348544

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2b869cf09ee6987263639005db47a97bd647099270df371d79536cec02039e4
MD5 983d875c07a096451d16c1df3dde389c
BLAKE2b-256 6ed76e94e1d54ef4442bed7590c3db7fefc46d564ad0be3e71ada99b1b4f0bac

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 3254439f88d5aa4c4bde9137afd24818a260d204ff6359f8fefcb0dbf365c094
MD5 06e188a0c31cabe1ffb5fcbf8b16c260
BLAKE2b-256 f584b67fd1904aa86ed22857a289f7cee619bdb0cb6fc37037d16c1ce862463f

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-macosx_14_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-macosx_14_0_universal2.whl
Algorithm Hash digest
SHA256 bc0128309fe5f2f556aa59e787ab443112951483eb4807b21c73b8ce33f60f41
MD5 8e3dfe3ba69b0f87c062e479f9e631f6
BLAKE2b-256 e04b2cbfd29492a74e300adb111206749cd0a9ba81dc9f76fbf1ba8788225656

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e31ed796b643b163cf1c1aa0cad403213964819091b90e7adec512587e4a4ae8
MD5 f3000ab0d2ad10dfc5f5de076b9aa077
BLAKE2b-256 61dc93ec4b3895a6caab25edde2b9da894b9ecc0109eb5ebba1f9a1b14009206

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 d2ffd77b9de49162a37806b67fbcbd504bffe59761c3e996eff668e72f7287f7
MD5 7a6f7808a9ebafbff59d7215e8f21633
BLAKE2b-256 d6ae49e0403685d6485a2741a51becf4b31f5069045a105f82e194283718987a

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-macosx_13_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-macosx_13_0_universal2.whl
Algorithm Hash digest
SHA256 f26e0cfc42829808e0547df96b3a65acaebb52f03b6846c0851e60678be421d0
MD5 ae6358d41e8f5d9af0c01e0e58fc0ea5
BLAKE2b-256 4eaea4fcca75894f02d69c079af9d4410128a8fc32e6ce55e5818ed7fdb85ed4

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 7e87ba55b61b5cf03ee67f8b1bd7a542843de320bb13ee12813e4985f7fc0a2b
MD5 5c2c6e28aa1107cf7f37aa8cd244036a
BLAKE2b-256 d094b2d17782f1918173e26c0586546f56bc69dc486f5c261e9ecf96000c298c

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 7ca9abf25a006736a72104279ebc7bd4e11c89a4219fef41cbc10bd6aa6f300f
MD5 e3099b2e02f98ed3876497c81c1ecac9
BLAKE2b-256 958d6cba041ba34637b33d76aee8b2a98dbecac28d04bd51ac1f6d7c3a0f4c3b

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-macosx_12_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-macosx_12_0_universal2.whl
Algorithm Hash digest
SHA256 580de0e3f832214ee4646add6ae4859fc01cce0c65e70ed8f0932fcd84c79466
MD5 db73f007591c5b52e206268a760bfa1c
BLAKE2b-256 953f6a69b242af1208916b42b137f5ba64558785091e59fd188e9699cf32374a

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 aa4223246c0fbec3eb706064a0fad010d5fa968df071526d660976b2ee74d888
MD5 f4ac28076bd70acaf01d12af8b60c2eb
BLAKE2b-256 d03eab56b14483d5de5fef97dc4381d07bad0483363973aee404f62ad89cdf3e

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0951c87006720b4fcd4b9bdc001c8d9acffb26cc35a50db5329b642dec3c0b58
MD5 c8ecbb98efc1a134ec6d89e697cd1675
BLAKE2b-256 7df825ff12805d7b720ab3ae35f19692a72291841ebf4860e0a9f5504cbb52e3

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 4f8918bfe881aacf9d7fe4f44f97c31327ecb9cb5806fcd615ef7eaf60892d69
MD5 ed5ba4df523ff6267c6d3da650da413f
BLAKE2b-256 3a0df92bd30b2003dce04b151d1aa284db6a00a5bc35f542de20d38d731fe8f3

See more details on using hashes here.

File details

Details for the file structlog_sentry_logger-1.6.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for structlog_sentry_logger-1.6.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfdd1a6ce46b20f8a200f018f870a36b9fae237eb6fc2bbd3ecaeb90cd570b23
MD5 dc51a802e4aa66e613aa9407a9f586ff
BLAKE2b-256 05703a1a00a1deae1032571af71204bcb8daa27eefd717ee44492e001ab76adc

See more details on using hashes here.

Supported by

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