Skip to main content

Eppo SDK for Python

Project description

Eppo Python SDK

Test and lint SDK

Eppo is a modular flagging and experimentation analysis tool. Eppo's Python SDK is built to make assignments in multi-user server side contexts. Before proceeding you'll need an Eppo account.

Features

  • Feature gates
  • Kill switches
  • Progressive rollouts
  • A/B/n experiments
  • Mutually exclusive experiments (Layers)
  • Holdouts
  • Contextual multi-armed bandits
  • Dynamic configuration

Installation

pip install eppo-server-sdk

Quick start

Begin by initializing a singleton instance of Eppo's client. Once initialized, the client can be used to make assignments anywhere in your app.

Initialize once

import eppo_client
from eppo_client import Config, AssignmentLogger

client_config = Config(
    api_key="<SDK-KEY-FROM-DASHBOARD>", assignment_logger=AssignmentLogger()
)
eppo_client.init(client_config)

Assign anywhere

import eppo_client

client = eppo_client.get_instance()
user = get_current_user()

variation = client.get_boolean_assignment(
    'show-new-feature',
    user.id,
    { 'country': user.country },
    False
)

Assignment functions

Every Eppo flag has a return type that is set once on creation in the dashboard. Once a flag is created, assignments in code should be made using the corresponding typed function:

get_boolean_assignment(...)
get_numeric_assignment(...)
get_integer_assignment(...)
get_string_assignment(...)
get_json_assignment(...)

Each function has the same signature, but returns the type in the function name. For booleans use get_boolean_assignment, which has the following signature:

get_boolean_assignment(
    flag_key: str,
    subject_key: str,
    subject_attributes: Dict[str, Union[str, int, float, bool, None]],
    default_value: bool
) -> bool:

Initialization options

The init function accepts the following optional configuration arguments.

Option Type Description Default
assignment_logger AssignmentLogger A callback that sends each assignment to your data warehouse. Required only for experiment analysis. See example below. None
is_graceful_mode bool When true, gracefully handles all exceptions within the assignment function and returns the default value. True
poll_interval_seconds int The interval in seconds at which the SDK polls for configuration updates. 30
poll_jitter_seconds int The jitter in seconds to add to the poll interval. 30

Assignment logger

To use the Eppo SDK for experiments that require analysis, pass in a callback logging function to the init function on SDK initialization. The SDK invokes the callback to capture assignment data whenever a variation is assigned. The assignment data is needed in the warehouse to perform analysis.

The code below illustrates an example implementation of a logging callback using Segment, but you can use any system you'd like. The only requirement is that the SDK receives a log_assignment callback function. Here we define an implementation of the Eppo SegmentAssignmentLogger interface containing a single function named log_assignment:

from eppo_client import AssignmentLogger, Config
import analytics

# Connect to Segment.
analytics.write_key = "<SEGMENT_WRITE_KEY>"

class SegmentAssignmentLogger(AssignmentLogger):
    def log_assignment(self, assignment):
        analytics.track(assignment["subject"], "Eppo Randomization Assignment", assignment)

client_config = Config(api_key="<SDK-KEY-FROM-DASHBOARD>", assignment_logger=SegmentAssignmentLogger())

Export configuration

To support the use-case of needing to bootstrap a front-end client, the Eppo SDK provides a function to export flag configurations to a JSON string.

Use the Configuration.get_flags_configuration function to export flag configurations to a JSON string and then send it to the front-end client.

from fastapi import JSONResponse

import eppo_client
import json

client = eppo_client.get_instance()
flags_configuration = client.get_configuration().get_flags_configuration()

# Create a JSONResponse object with the stringified JSON
response = JSONResponse(content={"flagsConfiguration": flags_configuration})

Philosophy

Eppo's SDKs are built for simplicity, speed and reliability. Flag configurations are compressed and distributed over a global CDN (Fastly), typically reaching your servers in under 15ms. Server SDKs continue polling Eppo’s API at 30-second intervals. Configurations are then cached locally, ensuring that each assignment is made instantly. Evaluation logic within each SDK consists of a few lines of simple numeric and string comparisons. The typed functions listed above are all developers need to understand, abstracting away the complexity of the Eppo's underlying (and expanding) feature set.

Contributing

To publish a new version of the SDK, set the version as desired in eppo_client/version.py, then create a new Github release. The CI/CD configuration will handle the build and publish to PyPi.

Project details


Download files

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

Source Distribution

eppo_server_sdk-4.2.5.tar.gz (101.8 kB view details)

Uploaded Source

Built Distributions

eppo_server_sdk-4.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl (4.6 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

eppo_server_sdk-4.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (4.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.2.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.2.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

eppo_server_sdk-4.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl (4.6 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

eppo_server_sdk-4.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (4.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.2.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.2.5-cp313-cp313t-musllinux_1_2_i686.whl (4.6 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ i686

eppo_server_sdk-4.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.5 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.4 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.0 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

eppo_server_sdk-4.2.5-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13 Windows x86-64

eppo_server_sdk-4.2.5-cp313-cp313-win32.whl (1.9 MB view details)

Uploaded CPython 3.13 Windows x86

eppo_server_sdk-4.2.5-cp313-cp313-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.2.5-cp313-cp313-musllinux_1_2_i686.whl (4.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

eppo_server_sdk-4.2.5-cp313-cp313-musllinux_1_2_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.2.5-cp313-cp313-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

eppo_server_sdk-4.2.5-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

eppo_server_sdk-4.2.5-cp313-cp313-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

eppo_server_sdk-4.2.5-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

eppo_server_sdk-4.2.5-cp312-cp312-win32.whl (1.9 MB view details)

Uploaded CPython 3.12 Windows x86

eppo_server_sdk-4.2.5-cp312-cp312-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.2.5-cp312-cp312-musllinux_1_2_i686.whl (4.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

eppo_server_sdk-4.2.5-cp312-cp312-musllinux_1_2_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.2.5-cp312-cp312-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

eppo_server_sdk-4.2.5-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

eppo_server_sdk-4.2.5-cp312-cp312-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

eppo_server_sdk-4.2.5-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

eppo_server_sdk-4.2.5-cp311-cp311-win32.whl (1.9 MB view details)

Uploaded CPython 3.11 Windows x86

eppo_server_sdk-4.2.5-cp311-cp311-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.2.5-cp311-cp311-musllinux_1_2_i686.whl (4.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

eppo_server_sdk-4.2.5-cp311-cp311-musllinux_1_2_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.2.5-cp311-cp311-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

eppo_server_sdk-4.2.5-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

eppo_server_sdk-4.2.5-cp311-cp311-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

eppo_server_sdk-4.2.5-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10 Windows x86-64

eppo_server_sdk-4.2.5-cp310-cp310-win32.whl (1.9 MB view details)

Uploaded CPython 3.10 Windows x86

eppo_server_sdk-4.2.5-cp310-cp310-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.2.5-cp310-cp310-musllinux_1_2_i686.whl (4.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

eppo_server_sdk-4.2.5-cp310-cp310-musllinux_1_2_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.2.5-cp310-cp310-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

eppo_server_sdk-4.2.5-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

eppo_server_sdk-4.2.5-cp310-cp310-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

eppo_server_sdk-4.2.5-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

eppo_server_sdk-4.2.5-cp39-cp39-win32.whl (1.9 MB view details)

Uploaded CPython 3.9 Windows x86

eppo_server_sdk-4.2.5-cp39-cp39-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.2.5-cp39-cp39-musllinux_1_2_i686.whl (4.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

eppo_server_sdk-4.2.5-cp39-cp39-musllinux_1_2_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.2.5-cp39-cp39-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

eppo_server_sdk-4.2.5-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

eppo_server_sdk-4.2.5-cp39-cp39-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

eppo_server_sdk-4.2.5-cp38-cp38-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

eppo_server_sdk-4.2.5-cp38-cp38-win32.whl (1.9 MB view details)

Uploaded CPython 3.8 Windows x86

eppo_server_sdk-4.2.5-cp38-cp38-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.2.5-cp38-cp38-musllinux_1_2_i686.whl (4.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

eppo_server_sdk-4.2.5-cp38-cp38-musllinux_1_2_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.2.5-cp38-cp38-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

Details for the file eppo_server_sdk-4.2.5.tar.gz.

File metadata

  • Download URL: eppo_server_sdk-4.2.5.tar.gz
  • Upload date:
  • Size: 101.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for eppo_server_sdk-4.2.5.tar.gz
Algorithm Hash digest
SHA256 b4d4614b04a7258d55cbdaae5984121d018b054a095a3c89e449cfb613d39d4c
MD5 3df0942f3ec6ff42baac0a37237a4b62
BLAKE2b-256 c4155d17b1ca47b05058911e41dd7e4983e6e58e7a9ec77bf468cfab0ad137f2

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 836e2bd427b0467f24e19a5ae7fc85e6844be4b2db8e972a404e5f70659826de
MD5 37e0e08023d6c7bbf9102b99219e36c4
BLAKE2b-256 2eebe5ae907ec845b9f508f5d79c38b3d3e7c853c2bdabdbbe6a9c7d9691edac

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 48ae845ace32f4ac15f05123abd38cbbc50e4c75d5e268606e7f65be0efd6261
MD5 4edb13cf26caaf78fd36ef7759d7ff68
BLAKE2b-256 c9e186031ba2319cc2393c6786c22fae26df4ce121165ffc6a7723bddb3595f6

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 954f7665c1eb713ec40f524fab37c625f3bb915477e5c09761c01c8c1991258e
MD5 a9296b662943efb4d2cfc78ac38b3800
BLAKE2b-256 5d6d260438482ac560b29953f545b97e0b969d67dc6944ce759234f953157d39

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd243ff58fac5e8867035484cb5f6e65682281f6d7319363e64dedb142e31608
MD5 ef42f2f44b94898d6e7273a4f0f704a6
BLAKE2b-256 ead51579e1db2fd085872b27dd7dafd5d903dd6162bbe3d708640ebefdb85b6a

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 538d7d8c3301e4699f8341d6ec638b05e64cddb3737465a0c35ae9a2c72bd894
MD5 a4ca8f616d4e79c87b9f7f80c839c3c6
BLAKE2b-256 12bc62e15726d1d1493e1a0ed79465eb4fbcec5c63943fded13bf3385f33742b

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98b208bb428d9725aa5a991fd7e10e281f670e8285c02183d54a0648b2009b95
MD5 99ec1e7f3227fa085c9e32aa6e04f60f
BLAKE2b-256 947ed0380c8bcd4e547b4bbfce27802fd1e18d11be3fa6dbac06773d808ffa21

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0407ffeba7731d7cb5fa84bf0b3d7f9591705ed57d11747ce3e120d82f03a496
MD5 f6c59ad510d65e27b3ee655f53c9423a
BLAKE2b-256 29d4881ae0a1e6cd52a16478c6b75b7286f339c042144cbd7532f4bc597ed3eb

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b52dd8782279ef1130f60f7bb90a1245cb0f9b67de54138f1c38db97533186fb
MD5 c6032130ee5ade8ac364baa038284b91
BLAKE2b-256 93ce0a632ede32fb81fa1fdf8ed81869f53df5ee728fc424d3ca77539a6cc955

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c8cfaa1c302dc1019878e36c2decef503e6f764ecdb3a8f85c413d9b4483a0fd
MD5 7ffe7d8b6232826ebefac204dd7b2505
BLAKE2b-256 378042acc8058a17f570816a6305ea049941a5f7191b849de0c5da0344de66ab

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01168ad2dfab986ae6c266b4ca04f84cf2fac387acd45fcd0ae08333d58ca0a3
MD5 be256b2b9b502f216be4e512bdf7b305
BLAKE2b-256 223cd767240e895535095b8ba38aa6899b13f00b147ae6e93dac7cf45bf86c4a

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8880f7f0794b6b79882da17cf8ac44423413cc2349eadb5ebb23593eaec5d515
MD5 6f4be31efa1d7d6f3fa84b85ea95ceb4
BLAKE2b-256 420b0afe1b08157c79797786bd5bb72827d1d560f75fec7239cd413b8aef0a06

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a5a89b35efa19011397baad355ffe5e5084b07bbf4055a21eb4116b161058b0
MD5 5ee6fe38228b679e728f58c5c2e12c3a
BLAKE2b-256 7f947a263b43b122936a493d14c9ea4ecc5e403392b7750bf24d8360576fa34c

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e96aea9f60377cfb0fcd45246f89d450e63e5bbf3a04177756adbdff0b8084c
MD5 366c84a21b9fdbc2596630f6ab2b224d
BLAKE2b-256 a21b01a1fd95da587785c8ae2afe172d3352954fdb766d819efb599093ec14a7

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d85ec039329fefa1c54a0681b3a0908d76d1f574209a9a768f210b7aca2cfba1
MD5 bd80fa231e8139108ceb7db5335a221b
BLAKE2b-256 f137c2948227d50a9870f998047a5400d4731432fc61c641d3640adf852df392

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21a7e44125a3e24856c15337f05f0bce4485c371cd1bc9ce49dc442bd61a6028
MD5 87ba15e2d60c47552c7b7672b3839cc0
BLAKE2b-256 3d560a9b73b6e4e3f174ec543488a05ff626c4a60112940db07efd04f0e091c5

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eae1d814c0a852925a8c80245ef09dd998e05da5e56d175ad49ab7b72caba94f
MD5 8319e9b82f58b239d1475df79c1e54ae
BLAKE2b-256 d4a728425f579b0260f8ec3dff6f058c95de8d317e7df6bbbb0bdb50367e6c96

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e291dc50a68db372d514e5dff6fbed0c91edc99714e4acd73723727d74801124
MD5 8bd4e419727226268280e6f69897f7e8
BLAKE2b-256 f003312d3949f66fda88ab26ed8450131bfb4f7576fc04b56b72809550153dbc

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a10e6d7def48bbea01ad04f6a7c51df1dcc797c8203062dff9a580ca7c8db1d
MD5 e43cebc15496094bcfb28b4c427b9504
BLAKE2b-256 189fc9d9df65b5a9db8103528d473a4d0376f64638dc915c35df4f90e9204935

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3507b579079b5915943bd3f3181bdf76951e1c10df13fdfb822f6664cdc9bcf1
MD5 c8d28a6062d8147aae859f55553eab98
BLAKE2b-256 c7df6bcab87a3bc52685764934b49451fd8ccfd3b279db0d89f31be6e548aa48

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50ac9e145ced619419cb2e20b89568eac32e4eff4944c496afcc29a0fe73752b
MD5 2fb2524ba342c1063d82b503edb02e9f
BLAKE2b-256 05a84f624dd267f87efa3d915d5271f95f5ea1ff6e7aaa53b024266b34342381

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f5a112f1f6261bb5d6f64b4806289d45b0fa7ee2563f2edc725e1294eb3d046d
MD5 6c998f11d53ec5531f869bdba4886c37
BLAKE2b-256 8330f9717ecfda668d4a594cbf0a00346c03396012a952c569bcc092812b12ed

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9aa6823340ae78861a455bb5de83651c2063a1bb58487460e8edfef1f2efbd3b
MD5 690bc45d504901161ab9100cfba3419b
BLAKE2b-256 007a5076e3879ced5600466c6144f91686e27db098abbf7ebe626c2da391cf67

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9718b21261a7b8134bfd0da459d166b245bb94e09fe116316499c45b4de984ce
MD5 f48d52b7cc305fe9e448a09d855fb01f
BLAKE2b-256 4b323a95903d5fbaf22e7968371e40b5ff9806aaa4f7e0a6eaaf958b1ab4350e

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4840cbcf22da3587f34f7233781d8cc684b57073dd554461518ae8c28b8dfceb
MD5 e31bcf80720db0a7e8632f3f9c9bcfc9
BLAKE2b-256 1640b526a4be8ad776a67f361f1e763098b8f2954ef686d43828f7160117faa1

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9084c0fb61669715b3f629354fdc74635563fc4a7373df3ccda5987048a7b164
MD5 e630b1a4637cfeef8cadcd3bffae1b03
BLAKE2b-256 bb12a2afc166f98e3ededd9f5794182e18e464100bf8880ca5ef208608123c0e

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71376920e9e5ce52e69cfda893aa7a8b6aa92fc55573443f634d857c8be079d7
MD5 3a37fd623f870998220241f93640163f
BLAKE2b-256 32848f440843a4c31d5c8438eabad30f90236b175bb5f9da1c40ab8b4ae23a8c

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1079a43f22d076316a40c0e18bd1fc8433dfee5601ac064df06b4fa33bc8df21
MD5 34657a11aae514a0fe3052ea12677d75
BLAKE2b-256 8a01cd2393f35b00d36c2f5d5221851a8d8322616d9bc31033f90bcb25ce9d7d

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8d6c6bcb9ea6a78aa9eff9b3c1a5019a3b1952915235ca082ed477c1e79890e3
MD5 422d4fcd0aa863c15ebaf93aff5e4f33
BLAKE2b-256 e9be3a05ff71bfb25ce6238d6f9a298fde3af2ea21cf593723af39329d99d36c

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91f3baff6c4cdb4f8568a7cb104114f854439331b0264489aa250c9ca352c694
MD5 03f75b7ff322311c3139d77023b03a74
BLAKE2b-256 d51eaf8fe913e6633aefb945713344ef05fa4bb0a1d251a9cffc480ce8d6608c

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 967a5c0b0ec83dda76a0a0041aaf0f3a0797ca8cebe4af959ee2339a874aa1b1
MD5 aa1785be05b21157925e0daf2970b02e
BLAKE2b-256 6a481e6fc5972a02041dceaf1b1697c6a04dafa3fd8697e6edefd96573b7080b

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d11ba4056d66aa4f4e6fbd23289b00844d4f9dfbd5549d19bc53ccee2d4c1996
MD5 da564e476a675dd8119a83502800f6de
BLAKE2b-256 43449b2c46a3cce437497ed78e4add92f3a668d9f3db7104c23b8fc8fc782c13

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee85606e357dd5fdc597a6131cf9c9737d67da5dce9627310aa5dfdbb9dbb487
MD5 3a6047e6fa462145a5dd64b82e63f2c4
BLAKE2b-256 cb90ebf3564df65f7efb9bb87b42d5f8576cb4412af5820d04af5824e3f799df

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f7c64999d73ae93af436df84666596e96c13103eb8d0da52d0a3b851862030a
MD5 4d3fb637d6de635f46191f44bb87ec37
BLAKE2b-256 b31ab4fa4a2916a3a7bde14b944921b48a20d1283766865fece9d5e34d25abea

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e5e1e00bfbe8a93ba87f1b57ec8dd93d09adf8469722e6844465e1d3a82c408
MD5 f5ab30948120b633b8552540f25db6cd
BLAKE2b-256 67777c5a58720a780be1317ec84e57ea1c8012335ff7c8feba3b5253c4488642

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cee6ae66ef5b2ce0242de3d0d6183d6a87f08e8760dc4690276c32dbd43878be
MD5 4082c6bf28a40d31b6dac687cc128c9d
BLAKE2b-256 17e5d6abd1014f10d7a15ffa45129aa62bc4900a55611cba2c5b66546835fbc8

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8fa069d792bc11454e5d3d29ba1091b377968c94d16d90fbdf2a13744bb0746
MD5 49d23d2390f8b1fead21ae28e2aa5e37
BLAKE2b-256 29cc8ee7f831724562297266087df0950d146e13c6f05d045a1c6b4cb6b4b123

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ed57f4c18a474c70edd91f427e7282009d0143abd6be172fdfcd98e06eb6ecd7
MD5 813c2338ee142c713f9820dbf3331da2
BLAKE2b-256 8beec9f074eb97d3747609b65594bfa2664f8bc96edfada346f1057321c393a9

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 223bd98b8a7b99e44a83ad39875c6cde25d025d4d4704754acafa3aa4c97b45f
MD5 9555009cb2634d6cc5d20f74825770d5
BLAKE2b-256 03ee59b9189693bdec04b7fc5f822a00925d80bc91ccce7237413b12f279a89e

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 930b0fb6a2b45800948acff50874f9f5b4a4fecd1e5b2d8cbb52f40750e0a493
MD5 d667e6d95dc748bbc4d27d143d286b5b
BLAKE2b-256 fa1342f511b1d17cd403a5062c4085d0333cbd6bfd68050aa0a8b7f0713e87c1

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 670b44b69befd812366f4620a389f8c889800916fcf650302e58f7ac41db7a14
MD5 abf08a6773573e535756e8e90867cc00
BLAKE2b-256 2f60d9e449b3051668c0bc59f76f3c93b3fd3c5a0c0b191d3bc17cc40b5689b7

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4d39b6671e8975de388117889ef72cf612b4af67111016e2ac81b325ff746bc4
MD5 7f5cdbb913ba625f5eedeb95140bd57a
BLAKE2b-256 8b6d9a97a6afe66e96a47b405fd2b15ed7bb4b4c0c8d7ea90710d177b335e948

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f0e16d480ac300b27e04a927fd869bc68d00723014c7a85cffd1ac15d6c96bbd
MD5 861ce0617df9e7597778fff8b2eceaf2
BLAKE2b-256 0aa0c47844c2b4866a1f859691774cbe19ce81f706f6691f57a9d2d1421e30ef

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2346deb7d3e430d0251782b10594d1cb530d2e71e9c8202e920e5480d4526d94
MD5 f5ed4ef5d200b03a1672c33a203fc258
BLAKE2b-256 140a6639ff95553e3e712f6936cfd9df654ebc7901eacd87f39b587c9aa9d604

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa0ed8d3a21de4c3a88748c5b477c002e77cca4af08a58a15223f45c5f8f2e6e
MD5 4ea65d529932ee5c142ea324302b2d5a
BLAKE2b-256 26a5d0fc142486e25af8ab87e0c9d96ef9d8f438d15a7f735352b5be50b06903

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 10b6498fdfb50e55f384e09937a82b1b05262b986fc2c935f4e8862e4b32fb76
MD5 5978c3759c38d269b821e8955eb35433
BLAKE2b-256 85f862c5c4ebc5497b0db08440c4487e6393c1825b1fb57191cb7631a8221910

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a583c83eef2a00d335c593897a339c3b0455c99303a3f3b7e199c4efb0e4f3f
MD5 d4f311b914e3cc9546e1b7f25a5b3c9c
BLAKE2b-256 5d66e08153c030116208fb9851f7c11d4d5fd9bc92864764505e3978bcb47e92

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00f5f28ec1b3af5b7a39d9846fe1c799da4d0204201c52598438b7f0e474c4c5
MD5 eb331a91aff8668dc5b3eacc62123e3f
BLAKE2b-256 667a8c155633e3cb87c4b798bbf413f965caa8f95dd29f613b66da8fb50a0d9f

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0eecdaf1f8929062c76375a004511eef1cae6cd490886122a9b61e38ab6b9fba
MD5 2a6417f0a3bc43ffc874306ca8702938
BLAKE2b-256 1473be2f551292edfbdd3797acb27812504ec7cccd0d942b285e7bc669f9ae67

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 793b76c97afcce63d3a70b042bb4707c380d5e5b53b522f3d577449e00bd25c9
MD5 733548f9c0fe65b80f7e7ed46c5b585a
BLAKE2b-256 0a9fb600b14e0a19eb21fd7ad4a518b84feaaaec410cee0fa5d26a834b8c12d7

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9ffa5d6466dd3b0742ace7d448aed8650d22edb57d9fdd1484188920eef2b8f6
MD5 6cd18d815fde3b6a5a36e3102dbf0695
BLAKE2b-256 3df31ec99af8f5177734ae3e12443e96f76fe2109eb4bf31ee043e508043e6f6

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 428751ec0092c6f83f85a07cdb9fa7e5b8ae437435e0b08154f93628e50b4823
MD5 4bcad7cf4919e259c2d11e127dda5120
BLAKE2b-256 9066e3b833aa472a21f1ccb10188e0994621bf887e2d896044fac3e20d03bb44

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a200292eaad621cd2a068bf721a648079819166e56970da9e8a9e2e76d38fc5
MD5 538e200920695c5a6188f2666b5d482c
BLAKE2b-256 3c790c2e0f7ec518bd79977e318c39e083776c0e74c2f92154aa2669de8f6b8a

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b26fe04d0765bc74ffe82d6539465164e11a0f036d061db9c0784e629151d859
MD5 662f30cc50871bbb1a153fe86f3eb071
BLAKE2b-256 10cc694aff8406a0084e214221eccddcb620859b85f440b6cd9fc7f0589172a6

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06a2a0a2095c3da0e92765e86d46f085ce654207a6201c3be492a3afc017a73a
MD5 02d2e3a8c2c1348f94742e56c30b4cc6
BLAKE2b-256 2a8b79a8bccb19d873eb8411f78c4c9755b41c744c3191d371f767696e0ba9df

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b01d883e1a41ea7d1dd5014d8b68c2645eb6df99b89d887cc126ed6e942919be
MD5 27cf773ad38478a2d43bd610e91f5b8f
BLAKE2b-256 e96ddd625f68cf7d76dadcf136413e5c4327b2a29dd8418b8f6cff85385d5172

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 384326220ba20bc59638073c515e5df60373800a411b990a40805e508cee2793
MD5 249c021613348d8b492e5406430a9769
BLAKE2b-256 f810bd60982200c14805b01ce0b41041d0d3ce114c56f9a3bdbd6bde7fa34867

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0177070bacbf292dbd585a882aab843ee3ea85fe793fba092d6b93218aafdbf0
MD5 a369ce3627baa3f3b9c271438fd8dc85
BLAKE2b-256 be2d5b92805371b5ea92377e970131e0b0ce0927a5f5167971107f3887ea1880

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09ef6cdef1893b0e09afcf7044e66b9d484ec9c94b13d190fca9d31745c984e1
MD5 59b54728f24ffcb9d4782e57def6a92b
BLAKE2b-256 dfbfa439000a9bb22f52cf93022001b0a3aac3639e252af915274700849ad4c3

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c36944ee3fdd1cb06c6de6c4dc345811373f35c793cedcb7476fc7bae79fea06
MD5 0a4d9c50429feb93c8d742efec128cac
BLAKE2b-256 80ffd8ba908128b18ae841342068fe4fc9116c6aae258317b97328611bcc0afc

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b4676bd55478a27b42ff2ff95782dd5e34d191e00b2d3688522dee42b13c29f3
MD5 1b22608e022b23c4dd1818eb10d1838d
BLAKE2b-256 d321b622f950077e49ec031d8893743418a4cb809e9cf0567c7a08c8b0011499

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0bb495f8f195acdd864116fd1339feff13316a213c23fa4f84736d0a64b2dc0e
MD5 1de21262327ed0d9e35bb8de66ed6597
BLAKE2b-256 e8fb043586940191716c535daf3a6d3f02e886115b56c1d09878675d055230f0

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a873539e6b473ad5574651b3863895891c95bdf3cf90fb1551baf28bafa805d
MD5 35811d1057668ce0fe9109c60aa1bedf
BLAKE2b-256 92e36e531726d989d1dc30b7674a574ba7cf6e1b2ef7e4ac0b1f8955330f4314

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17857e7fe297c476a18ae9467e0439956ff4a52509d271d51f9e1f95acf0c5ed
MD5 9e5c0ae63a541af05366c414070f1cd3
BLAKE2b-256 6965d4e700719af030c66b759fbf7a85bb3e07e4d15f897dcfc21d0ec5745e53

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3930990a771ac8edc6ee2edab75dcd28901700fa9564c96f6ac94e2db6cdc0e5
MD5 0acd84343b79720a2825ef1de962b05f
BLAKE2b-256 f95a4e95e91fa7c999e82f12cdb5645353236f049a0673b07a63f8633691083b

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d607e05a8f5ac85ff9f6acfe3bcb147ac4b15408c36d418009df86980ce69147
MD5 23afb60c700a996b76a3f3932928e54a
BLAKE2b-256 d6c16eb01cf3f21e7ec00042f1e362cfd110412efe5617176e78de1b8826b5fc

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5896c7b26d8b9ead097fe6e81537fa78ea21bcdf6f1d3e0a612a45a195182a6
MD5 767030fc39e8ba6f2a8a333c56edbfb7
BLAKE2b-256 6f3500c6a3d4e09d46e0c2d198ebb2f93853872b2bdffe13093b34e272d93498

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a7e7a546d59efe838a6ad0f40533c1d38cc659acf1fa428f811caf683a7adfc
MD5 9c6b48a69ca695f46c9566207daaa114
BLAKE2b-256 f61335720bb0a1023f1e19bdb00020215d1b1374ab7bee5dd0564fa3fc773d84

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aaf3ccc9b713a8557dedf317522237dba521801d18c3c9381ae0f9b90b8d5c4d
MD5 cf02bef28a715b28b162ae337807ff72
BLAKE2b-256 f2b1c719b5483bf05293a0c928a186097f12f9edd5b57bb887b5bf0edcc7fe89

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5b6e48af973f13e2a58587c4bacc2a916631081179fd72db95dd052edf9b5deb
MD5 a557691a017865d1f1430de3debbf038
BLAKE2b-256 8ab567574ead9b743eed6fbac24a9c63f77be44fc19e55af41f693e0f0468a51

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5daa783d9a7c86b3fa033f7a0ab7d0da484541113d7271a00ced804d775dd769
MD5 817220a5b507db0f9e22c9882af8a714
BLAKE2b-256 45fe063a1406cba00dde284a9a4d5610f1e41cbf08c35be6aad0b3e239a0bc62

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4015b20a734bf83d002d0deb4987c0a63833de4a3607ced461812273c5035750
MD5 dc586a15744bb521955cbe3c65c12796
BLAKE2b-256 64ecfbcb2645e2468da4a39dd5730a2107d353e5a2be496b4c228308d0194048

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b7fa5177f0e19fb0114fb61d8dc2afa809764cd11fb743d1b6e6e8b21a6e0ad5
MD5 632b3b1435995f32c441e013f485085b
BLAKE2b-256 08211159983f751471e93e460e099e8e345275c061dc0bbc280e8ca8b0a78b55

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8819aeb3417c9a4f7c9ab3f1333b12dc4917773502be5f14abe1049d8eddff9e
MD5 574823e3ebec4d69e768b44b39863763
BLAKE2b-256 049ee27958cfc3fb4b5bc8e74b9810ed9aacb3145911c9c364965e3faeedc7e7

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c652be557f2645ea3ebd696ffe41c31e7d055450c85cc9eb1d13dfb59b66b29a
MD5 0e95830584e53e3c8505f32076bd1497
BLAKE2b-256 9372d5446689d691724c60f9ee00d9b558f061161ae5a63a5977c8e125360942

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e2ba91f34d39a5f6baaeb656d77b0f15540e70041593f93a74864944487ed4d
MD5 f4f99fa9c2064f0a549fb0d2d18e5ad9
BLAKE2b-256 1bb53d84b674c53a18bd020fc450b84b9664077f44b43212f1ce6ce896d93e90

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 799836680b2fdfa8b3562bfa76a7a21ed2dda1e472ac02eebf7e8e515647202b
MD5 d954f08c58447418651e4f8973929501
BLAKE2b-256 cc48e38bf2a416ca900b9e97fd6727bfec60d7d6b6f3a7e5c89ec3f30092630d

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a56267a3039b34f43ab9845c539537c2a013cae298c692fc98a91446c1635b86
MD5 985504fe763327bd2ab2d311f0adeb67
BLAKE2b-256 0aaca9406b3c54c27c557ec49453720ea9907f977a79c0b078257eab462930bf

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad5e0a31748bac1fa7d1f3e2e6769ab4c148713ecfc13259b6264c5ac80e48ce
MD5 f13a0544baa73fdbc8ea3de3adba0e0d
BLAKE2b-256 a50741fe348561a4b2fb89f2bdde2d4088611b27f8aa3e877c618c0e1c6532c3

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62418e99aaa56474a8a386c50370ab4b0d7e2b017225f72d6accf9b2c83b6b1e
MD5 ba2868158059d1b610c42843c6d529ce
BLAKE2b-256 b02274db3d1922c01962262fc2f7049b38f6657890b19c683d7d58d350041607

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17de037c304148cb770e3c53cdb9bcfc65f6c5ba9ad388599e2f5ced132c5b30
MD5 f79a8849ace65a44dce312193f5b67c6
BLAKE2b-256 10e641b4a7fa74bce9387da7541da4a014f5cc5bfe01194eb2966c1dcf8b56c4

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccfd1bb8d901c4c0a7b26a15db49eea9dd6be460bb4789db5d8cd9b469a54b12
MD5 4b95b0784798a1a6c2835ff8f127907c
BLAKE2b-256 f7f4bb13bb3b2a784c80c4345d17ed73abe884a30912b23c5f7c689d6eed97bb

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d229dd477d6983a494262454efb5e1fd2d02bc74864c5513bb92fc1ff2753d60
MD5 83aab2ef7a8247066fccd2ab39655b91
BLAKE2b-256 b4282f96cd3812744e3e27a8d432f26080bab828c920c0c50e1ec4097841a094

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 12f491803ee1d70b28572887daa51ae37ec646b70eed67c6e99d8b6d3b236bf0
MD5 a98eb058a52208d3b175825099998f39
BLAKE2b-256 8c1acb1593369ecdd0d74a1e89bc86b8613c2e1f46488b57d3e7ccdd66b82ca0

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cb1ae13878c78e13a9ff878a35fbbd7a3daba7e2e13e4920f45e3d6b797cfee8
MD5 1e8ed1ed46cf35ca16279d5a596b32ca
BLAKE2b-256 b881c0f5e6ff3ca7053c57a9666e7cc97c31616a5fc12c328f683b5f79926be8

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5163535795715f74a89f4a5729160ee1ff9b9058cc4a469c3ce4b99981328fb
MD5 42babf171e358f6c447eaa1bdda37a85
BLAKE2b-256 565c15dda6d97f75d5516ef10ff47b5cde7669c5b6ae9e1ace24ea6199629b46

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 faf67c1b932d937d7513f9681167559d3362e6cdcc55d3f1fc00e3dd25ab0a9e
MD5 804c2e143ca4c8563b0ac5fec1280705
BLAKE2b-256 a169e5444aacbde18366499883596e588152f2a3468281be3745a3d39e9447d1

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bbeea3ece5a5aa36e44c32ca045e51ee68a9c1c9657f7d3571a98f0db55f2956
MD5 6d03eda513c43434db1778cc66f8ef43
BLAKE2b-256 f3315005e0a4052fa013ae6678a9bd5bd1cb90eedcff321473aaa20332ef0061

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48ef709b4b4f521387be15151e5f8f94b6e785f5a6b2e46e5dae6336eaa1a1f1
MD5 ef2470853df8bf5b4f21abcc25dca6ca
BLAKE2b-256 58645c75a1dbe19a4d5b6226eb080dd8e0b8d67c8adc439028326f0b09735ea3

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0b7122e9a12d7ceab7a5bb36537c05a741553d4e94d34209a7a4b0610135dca
MD5 8ff7aa894eae35c4e60d556a5b73f535
BLAKE2b-256 6a17596e4ac927277ec7e5c030fa7dcb06e4f61dd67c12bf86a55159a5e541e2

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 29241059df2b13c933ca66e30d1d88c7ef483f2f91712570fe390236a388949e
MD5 7dbf1d0d8d4eb5c2a09da90a91d7f255
BLAKE2b-256 6568da4a5c36b5c9d304479ae0d4d612f00e806bb30721f0c013cc74feec22e1

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be154e3c3e59daed2075173a687344fe2e162797e63d3641b900c0816760fd9d
MD5 1404d6a0fcac253cd939202d90dc2344
BLAKE2b-256 e48538ce37324c3b6560cd54b8170f714bda66fb39ad7784dd5c2fb185a795c0

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0320005b5a8de19ba33593c21e61de7735611048c5b0db36a328b19deb46a3b4
MD5 51efc4b1777e90d32ac24e74901bf222
BLAKE2b-256 ffbeaf78bdc9ae7d2b7265410595ff493ec4757ea2056c97a26e4ca423dcec2d

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 681dc521251fa7c81ef582fa19d77b2fa461a5a7f040f0f6cf10e7eed4789091
MD5 685f1876b5dcf9e4e99428bccd363439
BLAKE2b-256 b9e11cd489318e829922615acd330228e1f90d3b879db73eee556a57f9b4b48e

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ff2f54dfb553fefbb59e0d7affe23d640af75ecb9fb931675e13176a80793a9
MD5 9d40330c9d848acd0afb0d1fb9a9f9c4
BLAKE2b-256 cdecf65fbd66fb0310667d59a144819ea6763025a78f4c522e5fe02c7b9c3822

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7595029ec59426e3a704d3e3d27b53f2debc87e3e018ef0c943ba7b577301502
MD5 101b037d02ee6176018b34da8962e057
BLAKE2b-256 45b3512411501eee0cea76ad85113238150f0a098b3726dce02a5a593715f125

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 10ea819ac4091fdcd8e44b433d8491600300f5063a178792a84f0c4bbef88d2b
MD5 0e8d97f4248d5f377e1bf2e20e697a01
BLAKE2b-256 3e3ff5a4b6d2d98caa857b9774e3b43ba299c6ba19a007c72ecb139e31d11cfd

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c88ebc6de567a3a74854a15c774a88b4b5a7b66b761fb76a25fdc5fbbf94801b
MD5 9cda98e96eb95026893bec4206354e2e
BLAKE2b-256 54f9e5f6ca098be770470e3ab76401357baedbfd955b4c402440b5865c125138

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 26327f8df5bb05aacae93118259d5acb34fac790062a7adb8215b3792f0bb6d2
MD5 cc0f5464e00dea18761892697ce2d75f
BLAKE2b-256 4f542ecac91823cae4c54908b66b38176b375f82a3af5797fcad9e1ac65e5db6

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97e5845225009fc79b0e76a8f178165d5159bba6cc2d2246104d12c2ca66779f
MD5 69c4885615549f4114d46707260ecfdc
BLAKE2b-256 48b642424f61fec3fd682d380023308b82d5fea76963a660ba702dec8a043107

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3aa3dfd2f04f72874e9c6ac709e51a33eb41a4b0a220e126b7b489b0c5518a49
MD5 28f2687110ed58d8fa59afbb949bae27
BLAKE2b-256 cc87a62f4c34530b90ce1d0e9a35b4f222418135dd3d16bc276aeea34236bf31

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f077c8230e780367a176cd1e140a7bf53e839c0e83648a9d460c3a1621f8635
MD5 3eb057df1bcade2a64a1ff688fcab261
BLAKE2b-256 6f41d44a272857700018c99752454ba2fc60e1f20f926bbb77eedaa6f0986773

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23fcab79f50cf36b40be96c3bc64d8ef47919ab573f3ab2a2036bda3bb91bf5c
MD5 5d27be7d55de1f288aa09b06beca9c7b
BLAKE2b-256 b19dd620a9b4319961fb04003b79ad85c73afbae7ebf6a2433b67db4d79fddc0

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82153d78f5a25a13f3822b152ee438c51fe0d5d2f6f2e50ab679ef9613920466
MD5 4f31e8d4f80167cc62157b53e513d57f
BLAKE2b-256 859cc57db176c813faa2e45dcb8aa85ca37daaf6e0ce8ecf04b6e235030cd07c

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d0107434de0c87c3e13ea6fdd0983d1ed9ad8433c40d9a805b522d2ef3ea204f
MD5 568731585c655c00cc2998610d18fe8a
BLAKE2b-256 6258a5a7a624bb2e7fcbb9305513f44f50e22bd65f5b0b4e3377d6f402e6bd32

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2162e4c79c19b4081b150b8015aad2b555a9ae770c10b7919e4e7731d7b24eb5
MD5 6b32596b45c42b46c76108fe6e3f203e
BLAKE2b-256 dfaf187c5af7442a21bfb8079af2d9488a723c04aa6084686dec513515f8bc4d

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1ce864641db27ec0a738e92e6c37c03130506668b1a8b67f9e13a20981b1a533
MD5 efee092362683e74c888dfdf4d3d46cc
BLAKE2b-256 d8752a7f4bf94a376e919c1c82835880f0a6e682c9c22786b1e5a79f7d0f00bb

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eabe9f090d3ea5a925b07f3176f563e1448afbf7f10383eff73886f0dd7de650
MD5 56c05c74617bdbd5dc0321a000002e9a
BLAKE2b-256 864ea9e79d888bb9292f9ea7e1a84bdfa70f848253bded0b96034efc58293374

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f7a86af63f1580f3c7cd6017887d978e8e8c7e3ec7587e03597eb310b64855c
MD5 421522e9f1e0fc2d375c2fc609123210
BLAKE2b-256 b9260dc50fa0303b69a63b433da4ad3f491787d12bc61261e42b3fc4d83dd2ce

See more details on using hashes here.

Supported by

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