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.4.0.tar.gz (104.9 kB view details)

Uploaded Source

Built Distributions

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

eppo_server_sdk-4.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

eppo_server_sdk-4.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

eppo_server_sdk-4.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

eppo_server_sdk-4.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

eppo_server_sdk-4.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

eppo_server_sdk-4.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

eppo_server_sdk-4.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

eppo_server_sdk-4.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

eppo_server_sdk-4.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

eppo_server_sdk-4.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

eppo_server_sdk-4.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

eppo_server_sdk-4.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

eppo_server_sdk-4.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

eppo_server_sdk-4.4.0-cp313-cp313t-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

eppo_server_sdk-4.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

eppo_server_sdk-4.4.0-cp313-cp313t-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

eppo_server_sdk-4.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

eppo_server_sdk-4.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.4.0-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86-64

eppo_server_sdk-4.4.0-cp313-cp313-win32.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86

eppo_server_sdk-4.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.4.0-cp313-cp313-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

eppo_server_sdk-4.4.0-cp313-cp313-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.4.0-cp313-cp313-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

eppo_server_sdk-4.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

eppo_server_sdk-4.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.4.0-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

eppo_server_sdk-4.4.0-cp313-cp313-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

eppo_server_sdk-4.4.0-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

eppo_server_sdk-4.4.0-cp312-cp312-win32.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86

eppo_server_sdk-4.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.4.0-cp312-cp312-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

eppo_server_sdk-4.4.0-cp312-cp312-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.4.0-cp312-cp312-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

eppo_server_sdk-4.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

eppo_server_sdk-4.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.4.0-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

eppo_server_sdk-4.4.0-cp312-cp312-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

eppo_server_sdk-4.4.0-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86-64

eppo_server_sdk-4.4.0-cp311-cp311-win32.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86

eppo_server_sdk-4.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.4.0-cp311-cp311-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

eppo_server_sdk-4.4.0-cp311-cp311-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.4.0-cp311-cp311-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

eppo_server_sdk-4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

eppo_server_sdk-4.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.4.0-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

eppo_server_sdk-4.4.0-cp311-cp311-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

eppo_server_sdk-4.4.0-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86-64

eppo_server_sdk-4.4.0-cp310-cp310-win32.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86

eppo_server_sdk-4.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.4.0-cp310-cp310-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

eppo_server_sdk-4.4.0-cp310-cp310-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.4.0-cp310-cp310-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

eppo_server_sdk-4.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

eppo_server_sdk-4.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.4.0-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

eppo_server_sdk-4.4.0-cp310-cp310-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

eppo_server_sdk-4.4.0-cp39-cp39-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.9Windows x86-64

eppo_server_sdk-4.4.0-cp39-cp39-win32.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86

eppo_server_sdk-4.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.4.0-cp39-cp39-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

eppo_server_sdk-4.4.0-cp39-cp39-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.4.0-cp39-cp39-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

eppo_server_sdk-4.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

eppo_server_sdk-4.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.4.0-cp39-cp39-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

eppo_server_sdk-4.4.0-cp39-cp39-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

eppo_server_sdk-4.4.0-cp38-cp38-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.4.0-cp38-cp38-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

eppo_server_sdk-4.4.0-cp38-cp38-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.4.0-cp38-cp38-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.4.0-cp38-cp38-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

eppo_server_sdk-4.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

eppo_server_sdk-4.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

File details

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

File metadata

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

File hashes

Hashes for eppo_server_sdk-4.4.0.tar.gz
Algorithm Hash digest
SHA256 8aea531c92e25f5cfde442fbdd4770b1e5ee8efb7b498b12c1fa83f0c27aca3a
MD5 8997a2fb8845ea04dfae08f8fcf1b541
BLAKE2b-256 aa8babe7d8e96e582242497acb33009e22a53915bc6222b7ade08c2d1f008a09

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11c608d2fc0124e6fa8e535832bacef625c69de09b16d297619c3ef4b26e5a2e
MD5 147cf705f9ada79517257ef898a74f73
BLAKE2b-256 9d329b0fe6405ccd8e235c692e591546699f030f7ad9fbf82d488de6fe6698b8

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e2d3b7e041e06bca055507f60a931f3e74a25be6dce701aaf7bf14bd2b68520d
MD5 a4a80b6a78adda6c8eb2f1bbf840b01b
BLAKE2b-256 936cd730378ce4dbfbe950c5af9827f82811bbec8f9e346afa3ee9d16e528671

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 acae91e344407f643c90e30f37db99565db638c3e8fb97739f74154f94e83b47
MD5 316ea39eb2bfa42cf328a9da390adf8b
BLAKE2b-256 cb1f798f5188a62b2750783bef54b84e11000589218eb9046d8c2c35c6a0b2b4

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a64288b60a4255b9fa7128bc08f1d9d274905e4c343171680e2a0a509b56717
MD5 236fcf5768223cb91b7f43ad67cab5f2
BLAKE2b-256 6942c015c73273c6488ee5c277e057604e9b3b9b255efd4f8f7908c32a9f3413

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3632ffaeadc09d328b6904ea6469d8c3ad2f32a6e194f8344b92a8ae64560e79
MD5 0a97332b33d4e98236a30a149a1c81b8
BLAKE2b-256 4acd041e5478610aa3e4b10fd36c2c29cabc2ad61576388c0a52ee193c4ac289

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2363c939a783391b6af6a50af4b6af52ca5dcd478992d531f3157e41145da200
MD5 bccf2c87395d2d94d7583bb8e46b8a1d
BLAKE2b-256 935bfc452abb98719a9936e29fb1391911d2a5d47f124bb6457a7dfb2375452b

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 022f0132c00670f9ada119d6a869ccbf45977d1be0ed0d0f8b6a1145cb956163
MD5 53671f1fe0afc9a527f025b3d5748d18
BLAKE2b-256 b1b64367f9622e6ce61d4ce44b17ece940cd9f9472c1071bf15cb053ad6d8224

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 151b758a0783b4c807311036a8c8e794218a7d111d11a585d11c6eb051914075
MD5 a1c2fbd486a09998386e984c48a05ba4
BLAKE2b-256 5ce291d80d82ce8cb06df7c9bac86749539bc940f3897269390211a2e69c7431

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 346bd2e4a5c9001072f97e303653b35984731f1544ddf9c11891f76f456fdb8f
MD5 cdad2dd6236a76415b477151334dd143
BLAKE2b-256 1598b5eb5ec10b1b54a6dcc2785c28153eeae73e7792984f75cd473d3ecc6357

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b311afd1702b3951f9c9732aa76487d7a0bf5b628ddd33bc556bfc9c8ee207cc
MD5 fb832377b1269ab7e56b64eaafa6c75d
BLAKE2b-256 d8285a82790b34a30803d2da321c44f74bad04a4541ca4b9e5b23b9b8378ef06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 604208642bafcb83091b622f702c447359587fe11e3450be03bac97ed8f66ebf
MD5 9945e4c757a9f42a26d4b1ae25ee3a8b
BLAKE2b-256 5feb1b20d00b7f7b1a0b41f3cd6c894ff10fb742ff5c137edbd11531805303f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bcdc00afc7dec3238d843ff2461ee51005a442e054e4adf460ae72fb75639407
MD5 a6f8e530e49398764b73c9364719d79f
BLAKE2b-256 81cf0bf33989587ad30168e25bea148ff01aa34dfdc0554d9ebebd61e061ca6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e9521c05ce6baa3ea7658197f2024a7e985cf08b79243a8d3542553eca14fef
MD5 87bc6b34af04e4ed44374501af7a2414
BLAKE2b-256 042bcd081bc2be383d740955143caffbb65d8e0e2a5dff851eb018a1d30b9504

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 314d79dfcc116afd7c3bf45e2771619418830821810912279b6787e26aa29ad1
MD5 59885f9e2ca8e9faf013adae5d58f1f8
BLAKE2b-256 dbd898619cc53d8c9c699216b5a04b07be912044763aaeb16e6b921ec4b94a15

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2a4f920d580f6f2a7833712f0a4a0abf57257b7f01a6c743fafea98d4242615
MD5 e2f954c23fd4aac3d9cacf63201cb619
BLAKE2b-256 7e511cc9c4da7b3f8a2a5edc220d227a72ad0aa71261fae2224a50565bb4b91e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba200f4ed5c042c3074be15521a2258ac8825db96412ffd063d06880af1753e1
MD5 7e3b118fac7aed4b4a24676ab24f7999
BLAKE2b-256 158e4d6482d46d267853ae02f28dfe16002581be71efeef024ed6d848c7cf7dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a55f74b70630653c678843d47369a155b7f7547aa92d506934e24bfccd6e754d
MD5 10f126aac0755a09f31b4a68181ed958
BLAKE2b-256 685f2cbab947c1832570dc6d0d3c826e865142beea78ef2f1bdd118ff49b48b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 36b75b9fa99276fd1f1ea9e4fb0d7c413d6748f6897bee9ba05bdcb39111132f
MD5 30deb4fab79f9560d32efbdc61b426bd
BLAKE2b-256 327a8d8d91ddf2a51d8088798b546913b0a9759db7ea16ff2c21b7f4943643a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1ab0ba4821cdd384e497f4fa9a2cdf54fc6d15039136670f9e879fa0e0f3cfb
MD5 769da300f0dea45e6589e7f0d8c66b90
BLAKE2b-256 628296131bab2cdf8b011432c0fdf30a98e83ed801a4c16cddfd16efd9c946c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 45473532c2eab770a15a3c9329cd592f485567233b2eda91e45372f185498007
MD5 8ece213ef17360c7b72055d72df92039
BLAKE2b-256 977fd3c2b5ecb73d842882effb5a59c2dc0524a75847de54001687144aed911a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fdd312e4a619b19e071f28033c2756c26320482259c74f65d6234b2f8129dc97
MD5 02aff364994b6021784a7317966fca4e
BLAKE2b-256 506cc8e79887ae4c45acd5cb23508aa72864d08c54297ad4d4c928dd6f35c20c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 065cd3bd52a515a6b5fb4789add8c70ee545dd9c18d7fc7cc5fad293bb2a1210
MD5 c4d242db97bda9b1cff5d4929d9b67c3
BLAKE2b-256 0b3d2b482e0bf3f75650effbd2c30435cccc5b8b231359865f987dcc16a66967

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e991dbbeebdef6714e0fd16034e8529a653d7d69a8d89a5e08ca4ee117ff40a1
MD5 24fd91fe472131af9aa856202a48c304
BLAKE2b-256 f3025447a33c96b084f69ee1e6849335c10cd2855f77ff8be03f0a9fb6b1be4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b51e74b35120379677c92f6cbccf99aa3e0092027fef030df2ddfe4b99f90f1b
MD5 10b86c74bed22b0446807c285d9a9ce4
BLAKE2b-256 5cc6d181fc5a0c202f16a7caf12e99bc768354d5a1848f5c0dc294c716532483

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1214d4aa082b1d57670bc9204346198a73167fafb6e7e7616daf03c47ab1c001
MD5 dcad2061c4f0ab1d4fe0990501620b3a
BLAKE2b-256 ba3cfb3ab26e9776e89282ce48697dbd42758b2f62a7d0a28253f219007f9ca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4c734d6b5aca6e4010801c9d6f958c6447c69c460ac27fb7db703f53cae5e921
MD5 73708706f2ada1fd87daf94d2d34c18c
BLAKE2b-256 8ad96254faf059d6404cae2e5f95c612bc4845e6519b1a9ff199de011d14f7e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19c84e6645669dcdbed11ffd8942aaea7d8dbff6c5d202dd67720f1887d4fbe6
MD5 4b52daf3df1149d87451be875028cb0c
BLAKE2b-256 c285fe5fedb9c9cf15b430b5e096d3ff326108e0bc07f5effe08f23792c88579

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77b1224c3796035b837798847376dc55d5f9fe9d9bbc913763bd0a05527ec5c7
MD5 eefedd779ae57fd3bf1bdb5e5350fe93
BLAKE2b-256 580b33f5621753dec4f99ad089578378be662b5f9dc429d083b438590bc78e01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2010842296983bb72d584f6b64d2cfabe224923f2f8a4d2a6897bd7a4c4f53a9
MD5 1d4a029e1e7f6e567004a71c5da38c69
BLAKE2b-256 67166ca00200f679e91b2709d7c2ea715ee77ceb0ed3a09e7f0da2b886826508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da41b92ed697e2021716bba8d0a2fd74083b0353501d2e4bc7c09682f59bdd0c
MD5 a5d1fad1ab628fe59d66bdc22759b896
BLAKE2b-256 987d16bc4abcc2577445392463c99f5c6ccda56c14f305a60a2d5fe828424c7b

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 81f044f33074924ef2cbcf273f926763922fc53932b0db054c1697489c50ee0a
MD5 812efc227693ad62ed9c0ec06ea755a7
BLAKE2b-256 2680b5a9ccd345e60eac785d9021d0cca42435ef1e5303204b6506621f5f7254

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2286c215351a9b920bb54bf693c85b3331a4f888500de47427b705946b37771b
MD5 3cc37c5ac10e80f7acc835ae7b8efd27
BLAKE2b-256 a0ea0bd415fe75ba1c1bebf1a6d7b8f568da18ec9bbf5da9434143839e03775d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fd296e0130a5b844530fccfdeca2419c77e16a8c193892ae3c0e64c914a54220
MD5 cd4454f68d7b8189cf954f0191d28584
BLAKE2b-256 722eba854fee63a1b0f831752fd2b42a6b7895989ed98ab93bbda669c67abc57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40b07695773a089e0aad2c3df18e7814f9a7074a9e71dc659ce8ce3fdfe9f228
MD5 ed69183947375b33a81ecaf9f03a8ac5
BLAKE2b-256 50af64dce1cbfee3ac86e931bc7f46c6a12e2ea7ea898e3aab20f730e7f4a633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c8b9b3cbad75bee3149593bc3823f337723ef551feea2dd90d14e9163a4c71ca
MD5 d74e8a5d4f1d1fa26a11ec178798ad00
BLAKE2b-256 2cb2dde77c78711bb710aecd27160d064bd03cacf25292eac883dc79e75b649e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 50b0b92a6255aae6d2705621a5a60b29b6ae8bf9116d5318b0a4c674acb6df90
MD5 f4a9c4f3a70257a666373f8e678bfe75
BLAKE2b-256 f6a8377f840094cb9242fedc60103d4875e1d72a64ebc77a91d6895f884e6520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 298bb77dc9daaf9917f843b7d739c78e5855429eb456ef35575f8e976d3a23f6
MD5 a0c5cac1ce709bbfacadc8722f426769
BLAKE2b-256 5ec79496d898af1ace4b138ad3383700e56f93a4fbd83f00d441c982e8e7eca7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dbb2d9788a406ec5df86f548a6f30609d32c796c7f88f7436e317fc1e60eda4e
MD5 5cee60b99a7fe7991b3cd77f72558e4c
BLAKE2b-256 093e807bd924da7512266041e0698ea55b016c43498fa7218da6f7de09572952

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 62cab16435417935351f2457fa09dadac1032701c48a254dcea05f7d73603300
MD5 dba44b9f183b0c0123cb481b6f41cafd
BLAKE2b-256 1bab7bd5fce71fab9f6e0fb04589083dd1fc6ddc834e7710ed6c6e26a887eaf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 003e014273171c7bf50f7a26da14e43ea52604e94d9c845167a28445d0250d46
MD5 b91ccbdd79bc375bb4d6d0197afe20ea
BLAKE2b-256 aaf39b3eb993dcb0907211be7b408df39298978b56ef614abecfef31878a2492

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c681857fadd8a775cc04bf8be036ee6a63e71b94d78aca59cf41f64ab148df43
MD5 230403b27cc71f1e3ed21e1613ef545e
BLAKE2b-256 9e174550aa4e8bba4b64e02ab567ec5cc17897f23d52fcd29cbe1439403f1aeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cab8997c6ee66b657081870c6b3f526667e911956aaaf7c3d971e2abb13fab41
MD5 e76b4aed7acab16b96ee5adc5163b4c3
BLAKE2b-256 4dfc78472f032a45037d3372e84d14888d85d0509bfbf7ca79994c1fb6c05e7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c76badf611780e17067a7bb034b8f68c10c5c11eb940904f50d7f526e26c5a7
MD5 2d9ab7ca344021057372ba5ed9c88c80
BLAKE2b-256 eb9120c155a9b6fa2db0632dc421977c95f107135706cfa307ca189e846ca24d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b23fb8a0356dd707f85d923212e038a9c5232f5ea8df098fd1fa2d8a61211318
MD5 66a61f64f85243239fc07529d7198608
BLAKE2b-256 529e3e0de414e2b134df4f801a50bb814461a9f21d7f7dc9ab8bfd72aa012ae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a23ef95202d70ebaeb1ddab6aa5cdaeda33a9cb496a84e26b502bedac4070918
MD5 bc6a7683de90b9b8ac91010732feba1f
BLAKE2b-256 75b546afe5df96ac96a7c18d2cca02d8e774c4583c79ab560640b375d5842b67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 35cdb11feda35767e152873f61a76cc162b4d3e25aabc33e6a85c955ff74ec5d
MD5 7531c8d9ee98af6f082986e4973b51a4
BLAKE2b-256 f8cf14c5f5882165f34cd1f19a6d45a105860c4b135d933de03a2035bf222e9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6117d5bbac8763b97e3b7118c8bd69d0f8c565bab318d4c171570a1662bf1823
MD5 4533af4315ec5928978ad93274aa84aa
BLAKE2b-256 0b2507dad87924aafd0c80d673904cb118f1615f2ea338cec6f1a2665f0115d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 423d2da7c1f6784978bc570eb9e5fec213fe3cc4b498c6603941f0e0462e8835
MD5 9625a95836e2881ed27e5d5081063f3a
BLAKE2b-256 aa08fbd5d29423faad4e7399a7765374ff78134559923e8e1bf85046485a0abf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 09cef16e20fe7d6e85db180a43bf9294df7caf253ee41f0961a74c50fe1dd3e1
MD5 9f5a88a30245cd3ddbe5d20f3f198381
BLAKE2b-256 2daa534c518eab41b3bb09bbbf336868ae39b2978b01c1e3b7d928d23e893d38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2cdff5906d3d10b2cc08b69ce2460a53958739b6c7f25e1a85a34523984dff0c
MD5 e31be5acf004533a58476565d48a9ee2
BLAKE2b-256 a553bdede9ebfa7c42ccbe80d75bf2a305a5bc74bfedd3d651ea5466c1848d3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4c560b2b504a07d8fb1012791e5a3400c71acb7d20d9bf209e80145bd1ce219
MD5 d8d2ea71cc4bb7d18301d526ee752cf1
BLAKE2b-256 bc4b340f92b716784cd04ce9463d8ba24a1d6bdde2130d51055a26e15d4b4c14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9329f513bb5d1cf6d9bce37649339abe9b94d1ccfaab9445920164027b32de1f
MD5 a20cd0cf2db1ed232a212ce305e0f8e9
BLAKE2b-256 4f3e8d49eaa4e5290a03e296333e689d85481dbb8198c9460169bab1e73f7a7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b6a5f91ffcaf860b89aab6f2190896cd5fdec574a30bcdbff4ed3aee51560c2b
MD5 909ddd5f3ae447286a6550f896fd9161
BLAKE2b-256 e18ecba1bdb01bcfa1bbe2f98d02e245f0c427c4bdf37c22f897e4bf7f48fb95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 661321131d955c9efde4a4e872b3eadb791a97cb22dddfd219fbfcf9ad1306c7
MD5 9d40d6bfbb5e858808bb1ab901ffde72
BLAKE2b-256 ab8ee836d304fa6ff35c51ec1d85eb630e160deff0db8cdf40897a78628b3853

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3cb83c72871c39aab3c1be2f84af46a8e2deb84c7390c7a252c01836ed07a56d
MD5 40e8fe654c4f9aa0dbd3d2a9b972699e
BLAKE2b-256 9e9536c7bcac5ca3fd1ed8e8788bf48972896dedada9331cd1df6b3430a0f3d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee05609cbe9074318c155b717ffd7bfe56412d0ed668a278e7f9563fd1018cd4
MD5 638c0bf07e9c40d70c363ab85a5f4012
BLAKE2b-256 7eb511586b91cb6065fa0cfc690eaa5a6866587162deac76e5b478788cc42933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56292293548888e9a5e41d09354d3f1c4bcc3065fde7d4ec33a2a5b4dd2aa2d3
MD5 9e0ab57d7eed63eaa4def99c7fb8c610
BLAKE2b-256 b59ce49ab51fb1e7c2db58d55385bdcfded8ff403c5e40c450bb30ce2ecdb0cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10e9b03f03e5d18da4dba838b7c467183ec33956123894902ac7be4b54d43fca
MD5 cb10e6f81f0505b9e777710aa134e579
BLAKE2b-256 44cb3bc6fb84526a013c2dfdb837e00624ae4c55050c0056d28447fb5e58ad64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cbb5a91e22ded9a219d03aeb8fdf936bb3707569457de495b884374155bd72b8
MD5 41eef4dd57f2219bc5a5d7b3972a6b83
BLAKE2b-256 7ad108aaca16ed7ddc023ae9b59d6d2ca571adb1af14067540ab6340001d0a8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d33dbd4aaf2f0f1186515b9d8d643cc5d916c1f7b556f9c0084a2cc30a42cf0f
MD5 f525a9c4c8c7e2529facec2e8219e9b6
BLAKE2b-256 19c76f5534dfd7954b75566d7ad211bf6f3a9d571982d21f11f999473d35acd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8ad0829de51fe615b96de336ccd5395447b1cbb09f37522a79d624645e90fe8
MD5 3b6d704ef2f3911e7502eabd5efb078f
BLAKE2b-256 a5a2f8b8f99707b253244f15004d46a1781ace46cf8b84b3de4eb951d3acdcdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e4a1699b002e3c41b1ef64b0d3f4d984cf964337812ae4058ea5ad9f9b36aa5b
MD5 51d993fd7563b0350f5a26cbdb77b59e
BLAKE2b-256 8af1bee76bf013ba42dc61a4a904fb01fd5bf6305af2848582eeee743616f534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e3aacc13cc7cc5d860f0f3b840724f293a35bd84981d9cfab0988c6d5ef2422a
MD5 e73fcc7e9efff2d8d06f168c66729aab
BLAKE2b-256 1f8e8fb3fc4a2d0657140cefc175d9b04437d3e0f27fed8ffc739522f756d16f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8d3984dd3cbae082e64c870e6946375380a8164e360f225249ed05879ab808d5
MD5 e08d6df251a43aeba2d8272ae0f679ae
BLAKE2b-256 df4a522ad05e5946aac2ca15ed51409698925dac436ac0e8a7b4ae638ab87ba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ec7140ef152b99e61844f770f6008aad8888b4a18a2bcde291a161900707935
MD5 3e61a1c8004adb0b92669136806b9f97
BLAKE2b-256 5333f4d04049599b531ad6316cd2bd0efafc33c7c1c09ca7cf5f67a89ffcaed2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3dfa6f36e65ea012e8db549440696a31606f6c6445da2e4e786b980a635f300c
MD5 110ee8396c8ac4416cdc108f63b6e5b5
BLAKE2b-256 f60d9dc3548edc51dbf5fe9b2a1cbc4054aacc7bc32e83ea9f627bd66b7704ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a12e68e99a7160afa428e4a6518f2c77c51ece715cd29512020687f6c17342a9
MD5 66115da44ee0f88526127daa4e9332cf
BLAKE2b-256 b534be6911f7a8798c4a9fd2571b6e8f7fbe80ea1351b94ff1c55bca06673132

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0945608ca2a6990f3d87e94bb1c9558e791d6b3b018c978626c6e92054c967d4
MD5 89597b4d037d54b24a9e77846c0d8682
BLAKE2b-256 80f7233411609717f24cb20ab37b76220ce9b07183ddf786b5a2efd6a48c66ed

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64e1d93f88959a5a628d59aaa24a3b5b5e0bff8c3a86f561b29b6b18ca9159e0
MD5 4d64c35fe6e00be3055573e12817db9d
BLAKE2b-256 3aa93c0170ffcb399151e719f919b5b67f16d5361050785c1313c8df20b7365b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a22312539c533858619f6f9fed3686f7c9dd11a6cb6d75f5ce853932e141ee46
MD5 be69bad7311088db4d21ca74555840fb
BLAKE2b-256 4cf7685c5ae2372931dcf5f66a51e446df01c9fc04d9dc026838b888a4dcb137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 977f415e38659b97c92d7b4420b990725bd2003e0dcc107a66b40afd3eb624ee
MD5 f1354b46825c7987e82f70761d8838c0
BLAKE2b-256 b03f4e83b845c0acb708d7f86fa91d4d8fe85bdfe2668aa15c2958876f34c8c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c1f201f072ebfd778c380aa77e3132aaafc459d5dd1c7addfdcbb4bca689cfd
MD5 c9ccf10ab1647de5f9f5265c3c667f1c
BLAKE2b-256 c24be5841644d2f70e7342449f77450cf1def8b24bfeb35f72819afe2e9e9d80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 244167fdc2b070cdd3460cfe430506a8968109cee094c3506a292f68e0af95fc
MD5 b177a9c803a46fc05fdef5e277c5eb60
BLAKE2b-256 44ad00c58a346bd14ae8e7472043e02d855d23758d3dddc4d27d6b3e2fc5cfdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ca6326720520213ec7201281397399b6ded739bd7ac06edbc096b8465f3c4556
MD5 f0f073806c367f8ffa9be3c9d7723c3d
BLAKE2b-256 3d335014a35075e76a2708056c5942ba949dfcb3be3e04be8ff64be634632688

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3608ae01dcaad2617ca261902d39997d0420d1def6ea2d46f70f64363e2cf8d
MD5 01055f14fe246977bdf71443cea8fb08
BLAKE2b-256 4366a10174db1bc8d9b4835d6d9fe73f95e22e1dae6c0c4e2db5b46f34ada794

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f930af7ee8fc47c216d54967ff76fa27e661d8b322305e66fe2e1b7dbf6a106
MD5 a095e86f6a4f0ef5e90a90d1d6e97e02
BLAKE2b-256 b521c3c26a8966bcc43ce55bd2bdd671196a344f43c5aecb7a9cfbe1f5e82782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 645596d477bf9b56bd79bedc1a9236df3ea8b6acddd530b4853cdb0e389f9f38
MD5 4b674ec755d9376a50025de82b6efc02
BLAKE2b-256 e60b6417b4149ce5cba06951ec28448248511a53ae90a6616b0b0cac683a1ff5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fa1751ddda83a34ffb51aa28bc2f0d1c98739440b99e38621867ad360d4d8bfc
MD5 3f600fd31c3ec74c8b306eb8e3ac6e15
BLAKE2b-256 a23953768754644fd6f8dec4c48b74de04311c4dc11642bed237d4ee9131c2ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1ace9d196172ae61a1b7c53d7c58c1152b06264572680bf7a880c6343b2c515
MD5 4675e54330f071b712ecc3009b15d0d9
BLAKE2b-256 4663b75544cfffd9d0d58f2fdb029338bf3f5ae45013d260c2ffd54ee3992f68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d8e7f8506b635f57e04568d1c33f7f5bf6734fa18fa2e9a84379f87101741b79
MD5 00b521dff19503606238546acd2b0051
BLAKE2b-256 ed2e372c5a2e8c82ae3809c7e7770f699127be8b0ba99e0a1fa7193f609b9319

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d38bfef344a6b8a88e7f700b14f84e64fcc0ed481f564608107b0f93dc8c039d
MD5 b9a82feb9b152f2366f1f48da54eacfe
BLAKE2b-256 36569c26753920044bf5ef0f391c20f638e58afc18c93f7c706d5611ed15b700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5700a17d14c615ea823259262899792b0c131e5d26e81f32193b4206fecc0c0
MD5 aae733a34c233c9c898ea867fe5cb264
BLAKE2b-256 98cc3a425f1310a9c1becc9bedcf6d3f0e88266e2c50d505b2e430ec2591c2b8

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58d47acf9673969e0fd76a05c49cd42c0bba756998bed65b4b74f398cf1fcbf2
MD5 63ea06c3501cdb0d06b7ccb0193da3a4
BLAKE2b-256 b4d2da6da07abf194b4a9693e125f2ac1814fea07ada3b484bb071a2dd80b818

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01390d2c2cddcd18efbdc0eed7947e499eb54ece5dec4bf9035fc9ee20c4a41b
MD5 f085b4e5d494af5e4b2db7c5c978f156
BLAKE2b-256 8f156ba9e9905b3bf2502fbd66adee005fa505b0e7bdacf94af925cc2e62da80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 df570d3fa7ffefd9b6d8cb230afb00c00339bd5a635a430db638199545128abb
MD5 616f2e0d623d021cb78b3ca727e0725b
BLAKE2b-256 5a556506f99ea8848237b2b6fdfa2a8b5fa920fc426bb011895ac9410e398d86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 83ea2a4713ac3e5f48eda252e992377649ce51051af1fd2f20a230dd18dc571a
MD5 02b133c0c537532f7e111861643113f2
BLAKE2b-256 84774d59b91de4b6957915712c9ff4e777382d14ddc74644880b4f3eea8d4bd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5e55cc5a32bd8e020503dd2772bfd9fcf0efa7a98bf4714d3a30e39cb522522
MD5 914d3a7e5e240649f2f7960ae08036d6
BLAKE2b-256 237df0babef15beeced283648c6aa7ea96edddfe0d8c16d0953b3121e58726fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fe67d165236b32bf47a8acf50628cde6d5f19c5524a8039af4489bf1abc61b5e
MD5 e5099b251309ae5d0de6660b33c038fb
BLAKE2b-256 95da2456eda92500e8b9cec455cb52aac37771ff9c31f8e2775d8c529484c5c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01b784b49bbe020fee440deea0f5c9689dcbe562669cb4aa10ecbc27f2910773
MD5 84a9d3d4a48e53e827ce313edb73ce37
BLAKE2b-256 667e4a12b475b9a414c32434634ff189f37f364279fee3680a75af79de57bd46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4318b74fa6b01306d8a06528d74874c2557d946f929a88032f44a6d5c125e24f
MD5 59f6059ef41d54c21f5544a793a0e586
BLAKE2b-256 64dd3b85b71988fb13ca131eb9cbc00c41a5ac6b94fe3ebf88abd7e3f74af6c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6306eff4136b1549068db53424bc716a6878b0df5f35c379e1af14f95ad0c5a4
MD5 e71a71c7bcdf68f51243361d25b06126
BLAKE2b-256 213dfcd8c5a239dbd428500be7b893674e082667c0a67b45a6e9000123c88432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ec83953ae8e6230ee2a3dfdc4693b9dcc084a004c44a224ee4b4b82a88eaf281
MD5 3d21b981a1cee84d8e860b38385a3638
BLAKE2b-256 b2a5374524d1aace848b1345c4d7e8800409e288e823035042d3599f553ab3f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a45419ef599c8d6e1b33053b9312b11f87778cfd06d28162e87ebb5803a91b3
MD5 d543603ce8861a85ac8bb48e89ce7a35
BLAKE2b-256 9908c3794932bbc44ae30f13d87305768d75c18be64137c1ba024826b96caba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b8478b44ad2b5a7eedab1092d9f95afd287684e0c7d4d71c53c7bbaa3c0bd276
MD5 9713a9cbf397e21fe63e594c4f78f2f4
BLAKE2b-256 bc6b6070e8c432bffd69f4110ad65ca1bd56b2e2ccd1844fc8ceebe28af36da7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cec0bcd04cfd9e4f9a9baf32b7f76c421e63d799d533ede1a64b4be2d50dea27
MD5 af9e6d7ee51dc2e060de0bd4a4ed7887
BLAKE2b-256 2c15147368af1a99dff8e81b44af1c6f901ef17d778ecf16f506717c95343efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 515fa1da32a27685e083401fa23a8210745df2af6d612261da6486aa40820dac
MD5 c3be235cb7a92791942998fa747fac0d
BLAKE2b-256 a7bf1859ad2ce07407ce2e22753c443649c16957467e13693a72b8b9fd7f38e5

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d88f7a2e6c71906deccb3a9a9501447a01acaa87f3caaf277fe9a6a5567e3b77
MD5 8f808613c8c8cb76ad9e76dc26fd2f13
BLAKE2b-256 66cc31e5ba4cdbbfcfd4ba3be14af49d0bc88797da4614394518c5711d761894

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ded08915b964f5c2d79978cce0be52fe1719ad64eb1f8ee239a240e80c56cfad
MD5 bc662bf4b7ea66dbf56db69cb3c70d28
BLAKE2b-256 cb6dcbfa98f72a4094dff8f2a61d97802e57848ee72bffe3529ece4e1333ff48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56a5c3da317377e0c4bcf5e8fb5559de9f20710fb969e36d939e7762a5b3b9a4
MD5 14b7eaed733915dc8a986a141f17d722
BLAKE2b-256 ff0698c9657f25d0f92917d8376cd470aacc8d02c2c609373fb66d438dd78174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10c926286e8f20ec6553295c6061df6d1924b2421d08ac8311d8c40ec481d107
MD5 8cb26825529e09dc35c2fb12dc05389f
BLAKE2b-256 77b6b222d2e0cdf9c4f61dd501f5e1d49db7fca002fb636b0f6d44cccc508aab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 158d8e0910ba85a51b15ddf0a56f55680875f805ae02a224c82a009dd1a71de1
MD5 690737597570d2c0cd4fdc0d2f18b4dd
BLAKE2b-256 57f918385f893defb39908e89a4f1091437dc323b892795d48d4aeecaaf106d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c8dc69da9aa2d2d4bffdb104fe6f992306013aa772b2f7317d706cdff0b2895c
MD5 cf159b3a7f5180bd099fdecceb1d3fc1
BLAKE2b-256 771954c6fb2549bb5e66acee0e32b6e282feaaba23baf65bf3e07fa01cf161b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da6ba6dfdde050807bd9d4ccc4ef78a57eec1e4892c92b6eb573bd3a9a578151
MD5 05b110e9d3729fce7fa6de9c58abeda5
BLAKE2b-256 eba0c6e6ebbb7bf51cf1dcba8c881423bedeffc5f6883f154d0d46dcbfdd57e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4adddda58089a163b650e289b2f3cf31639a12e3f8f79140debbe269c8c067ff
MD5 da28bbffaafec4fdd013d36fd1020b3f
BLAKE2b-256 af855ba88854a66967bebf782841adad0d6b2c523790eb50c578bed5ea2229f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fdd3cc0ddf3e8c741c2b1fa9c743e98cf285c3a3034fcec84ceb9e61e68e949d
MD5 04edecd7eca8121e4edc7d668b47da55
BLAKE2b-256 90a8eedcc02fd43358731ef1e55c842b63242d5196194dfd0b397a1f602c6660

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 40eb969e4958c22212d84dcf15ecf6604a57852fd9fe925d1efccc16fb4a9368
MD5 4d42bfd57b50b8b8ca35a84b0197b960
BLAKE2b-256 65c7b20094944e2978dc2c79f0f8097faab3af6c6243cf9034767857c0cabfe1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e843a1c019c05e9d783d3e6c464e828657895827d6a7c8f04769d8d39e3ea911
MD5 8370344b5cc3b9c3fbdcf19a0f5b7d8e
BLAKE2b-256 4b41832b3864c17def36cbb0d84ad4956e809fd3ecb3241b25f90d48864afad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 410c927cb9bc838d5f03c63f3a47a71f4a588f496e282fc41bdbb331abaacfb1
MD5 380b62b07b1aba832755d0883fe7e031
BLAKE2b-256 14febcf6b95aaba336e30b9ab3c2e172dc4b7173a017929e37705c595db50524

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.4.0-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2bbf2703a18d264ac25e050d959bce9a032eeb8d1bcc3d78a7f40ac700b2766
MD5 39a052fd0ff1fe441519d37259111608
BLAKE2b-256 e48406716a9d23724ec379873ebcc38752ee45037037845e7a5f1c5035b62a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b63afedf939cf5ae553d1dc7d27ac6ae34f8a5e8dfd17d4505195e0a032ebdcf
MD5 66f02e2ff7bf6e7b8bafe9d9c555ec15
BLAKE2b-256 0c9677ee81960318fbaeedeef61bbd4d7ff60806b1307db2fd487686634afad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4cf47b62b9e7d4f25ec9e2af2379fb21d29806b8d8afb465da3b9ff012e39d49
MD5 a62bedbd1aba426eb202c69978bc4d88
BLAKE2b-256 9a707e14d3a8cc2646a649d25601912aa5575eabad2b8e5f6cdbdb4c96ef0f7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4864089f7de1359997502609be4982fb79f4594e6ee6938627d17814b009c122
MD5 c30f3422bdb7a12c55aa0ec70b55a9dd
BLAKE2b-256 678e46d86e73a16b7ee40d76e51798e074c4ce2ffaeae0ee9d197c367261b56b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 930970be950cfb7afba6194a0fd18b72273635b8eae2e1fa62465c984ced6ff4
MD5 2eb3521cd4c156f81dd25677d3cc1975
BLAKE2b-256 fe4ab06e0f105d5e17523cdfd4c06ae0b88019431c09ce30f2d2d446e62aec32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 08a0fe33f31a9f41a5ae03272a72a1c192ce96248f642c698d0b20e0b13c36a5
MD5 d8f56fbc475d85b348ec45e351daa327
BLAKE2b-256 6638318b8c20ee4453bf90164eaf14f9c17c4235e90b162d980d8d5d303ebb70

See more details on using hashes here.

Supported by

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