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

Uploaded Source

Built Distributions

eppo_server_sdk-4.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (4.7 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

eppo_server_sdk-4.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (4.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

eppo_server_sdk-4.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (4.7 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

eppo_server_sdk-4.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (4.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

eppo_server_sdk-4.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.1.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.1.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl (4.7 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

eppo_server_sdk-4.1.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (4.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.1.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

eppo_server_sdk-4.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.1.0-cp312-cp312-musllinux_1_2_i686.whl (4.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

eppo_server_sdk-4.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (4.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (4.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

eppo_server_sdk-4.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

eppo_server_sdk-4.1.0-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.1.0-cp311-none-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

eppo_server_sdk-4.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.1.0-cp311-cp311-musllinux_1_2_i686.whl (4.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

eppo_server_sdk-4.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (4.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (4.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

eppo_server_sdk-4.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

eppo_server_sdk-4.1.0-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.1.0-cp310-none-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

eppo_server_sdk-4.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.1.0-cp310-cp310-musllinux_1_2_i686.whl (4.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

eppo_server_sdk-4.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (4.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

eppo_server_sdk-4.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

eppo_server_sdk-4.1.0-cp39-none-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

eppo_server_sdk-4.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.1.0-cp39-cp39-musllinux_1_2_i686.whl (4.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

eppo_server_sdk-4.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (4.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

eppo_server_sdk-4.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

eppo_server_sdk-4.1.0-cp38-none-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

eppo_server_sdk-4.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

eppo_server_sdk-4.1.0-cp38-cp38-musllinux_1_2_i686.whl (4.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

eppo_server_sdk-4.1.0-cp38-cp38-musllinux_1_2_armv7l.whl (4.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

eppo_server_sdk-4.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

eppo_server_sdk-4.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

eppo_server_sdk-4.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

eppo_server_sdk-4.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

eppo_server_sdk-4.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

eppo_server_sdk-4.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

eppo_server_sdk-4.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for eppo_server_sdk-4.1.0.tar.gz
Algorithm Hash digest
SHA256 2c987768452688860178499d761be89555b802300e5b535d0d11af5bac8e1f00
MD5 f77d0a73b0f8b4e187f1a61b9938d798
BLAKE2b-256 cfcea30e192a11e05b1a60758f7258998234321e77b69df73894e0af940a540a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f3d7f0ca6d429448f8df42b43dbe1913127493712f43ca404ec5e7c66ad7427
MD5 fd555242249221da6a90fdb498425d50
BLAKE2b-256 26fd07a93c4db8183f3c5790598d24534cc958f9c6d2a468a3e7df36cdbec099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b91a696363d667fdcc110491ce6cafd25d276ffbb769b6173403426012bd2af3
MD5 8ad061bc8950f383d4c3deae9f66965f
BLAKE2b-256 036a9660e21c85a111eabcddea95ffa06f70118de3ff57da47bbf2ae3c202e03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c364765ad6fe4339e56af7623deb86a25788533b39483b2aa61c77ddb86e7efc
MD5 1cfb46a3f3c2f16214d5370b6c284646
BLAKE2b-256 9056152682bf5b7db454247a48378e2b7b6a898b5c24d08177fa88f3c862af10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbbb9c2704ea42bfdc004659244ac352e891c0e2559179c144bbe4f5a4b7791a
MD5 aa0519493a917578db283c5a3eb11feb
BLAKE2b-256 19ce69aaeadda0ce9021e2e07662ffcfe576a9427f447610429c4d92c7312c24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 436a645c4aff216f832d291764431f6ff6c594e581c1e5008f10a7259236a2eb
MD5 d8a65f29f628077cf316f9586c46fda3
BLAKE2b-256 a39fdbed35700d6e1fd3e15cc32e50cd120da3011324f45d4fab3cc6532b8a34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 781740b245fec69c59525d7838c65d70aab2bab499870cbf18e28d7f6d68b7b2
MD5 e4e4a62aef908986baee1eb49d32e586
BLAKE2b-256 e5c0b483e95720f824550c54b074a494b31b566628f66e79a8b84b5af9a5e8ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5e7ee77991249819ab534dafe943ffcd365f045021899a92283b96408f2d458
MD5 a23e4a02318a5db7c0bff80f247eb098
BLAKE2b-256 858fe61908e814a258ecef60e07b6ef00646ab27dae70566b9ac7a320185934e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 776e307b31b3821516c5b12a5f61c5250c78f250097e27c7a2570cb844eb7229
MD5 01f59507efcd8a5c1f9b7426a21e7b1d
BLAKE2b-256 3f9b31592f39960a168f21b49d803f71ec1d6bd91a7a3dfee28d28ca8321403a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d2a6a87a77d0ba2a18fee53e6ac3fa2c82262fb173764e5cda8691801cfd985
MD5 7b851d884358ad5d8145738f0139c31a
BLAKE2b-256 82f48caa7ee1c4148f98d6950ffef29d1ca0b9d2d270e2b42c88c3706625900b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e8ef6a787ad9ca6d88f18653e865a09d2329b0d39b1fc70e858be92b469c016
MD5 4ba5581402d145477e43e611c8bdf3f2
BLAKE2b-256 72b01a1e7b597a0ba08d8a82c90a82890c0be4845671c71df67f93d30c21ae60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d0b4cb7a85406da6046e26022d427ecee822c6b9cad4e747c38275b4e1cde96
MD5 9502f03d662645c5aab913b9472bea65
BLAKE2b-256 39f2eae5d3310bdaf6f000d88d0b956661d8b3ee99784fcd7b69dea0bc8f878f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9a0648db37b71d8ce4944e3cfa94a39944ca8ffe61147bf38a5292942338fa9c
MD5 cc59fd3d6e540e9a0874d9435c8d087b
BLAKE2b-256 e77a64bbb0ac5900f83426496ca82a7ebe0b7207818a2a281c0d118bbc170807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3f1329f661fa0f934207dde96fad3298a580656b05e99e675b72b074f363639e
MD5 25049cee0a286ecffd80e4e3f17b5b6c
BLAKE2b-256 82dfaf6240bce578927a511dc156266ade761025275cc0c8894a3ede1078bba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8028fd7d23d8a5f5b71741893107ccfe4d055e6ac794d70109f497cb5f00609
MD5 e3ee1536e5ff08cd2537ede7efaeb399
BLAKE2b-256 baf006827db875c8a9b6ba56a0af4c22b1ae3eef58711cbe0ca6569ab713d7cb

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fbdf89a11f50ce5a097e878a3a717ec33fdcfaa99458bd7442665cced256685f
MD5 7aa88eb7fdd04386bfc7e08c2576acf3
BLAKE2b-256 f2ec84053341cc26f7d0cd3f7514de29f4cc3562406ceae52eaa66ff15844aa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3fc86e634d292782734a7d0b4e6a3bdd29e8feddf0c6d52ffd71802383f3ad02
MD5 c03b8509fa5eee96ff1ad02b751fcd2f
BLAKE2b-256 ec4564ebe9a6ed3b41e869824daef474b33c3dbc1ad5207ecc021cc3ac1db2d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e84e76362f958de4b2f7cafa17ebf0512b2a14d8dd97813084d1b8558327c61f
MD5 b93425ba7b5ccf8824c333cfa801dd60
BLAKE2b-256 f72e8b1a28a0b254bee4dbbe43ebab8be3f9317a68495df10128d8471b1b6ca5

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f51431d6f9a0016b0b3e2fd618d4958df9caddbdc0c0776463823d317c76e1d
MD5 b472af95ee70bd922ceebd954e4536f4
BLAKE2b-256 4802b85f8ad75585b7f312402b693a46719ec14547a49a9c82171754f5dc3037

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7da42c4b1c61de2a96972119e1f765dbe25770e312861baf8789072584a70b2
MD5 fe0c53e6b2406d1f63ee980ee0bde11c
BLAKE2b-256 520d1d46228c44424d356f7b4b9528c6ae447668e5b336172b695f58a7862881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc289410cc766a214c3c0a8876e7b29173ac4fc0d32ce5d4f3265383ad109ab1
MD5 04018bff6220d1756f1ce28e65bea8c1
BLAKE2b-256 252b2e5b56eb4d8eec009efee066d5fb04b9da795bca8926a69f5bd95e799b79

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0b64da41ddcdb01357f95477a208ccc39bdf7a4ae2bbb38498ecd010fecc0ae
MD5 474c1f1e6e078bd292ca75e36e1bf5ee
BLAKE2b-256 5404a2af96edce853203b4ff33ca17d6f63a91cdb26614c12a468366a96ecaf3

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12e937908238dae30a22ecd1063c9a7483d5ed9223ebf5483bf5b66b511b585a
MD5 36eca9b0de29ce7fbab32e7c5f96d27d
BLAKE2b-256 2ede6169e4d7151b7c216be0247ba1b926b166c8b1ab1f97cdd7b16182a76458

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d300a05a1e75b82be32793dbfbc47fb9939081604d47538092bccf557a40d243
MD5 d1b111a2c8f65fda28bded71af3e30f0
BLAKE2b-256 6d19cf2b428db780319b951b67e3c01019ea938640a263abb0a0716ff630b096

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 186ca805b81d329d2441051ee3a6248a46a77c3756be2082193bb222e88d849b
MD5 0e829c54813543f2393e81793d1037c3
BLAKE2b-256 c6a96438785893df856b5bdc981b3f556d00065ea002e4fd12bd560aa19106b6

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 09dc5362c9504fa4f694d1e9a9b6109f0de624e4c7506e757d32cc930b761f21
MD5 5cf343c2f1c89b39655feb9bba9d2e99
BLAKE2b-256 ab8081373539023fc1b1df008c86a0a2a003ceb4cec8f7e589495c27f5bd7577

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e159a5715ce660846ca066ee82a26081da7665f26c18a4d11ca6ccfe968267f4
MD5 b5a496f9da5b325f17b9c5bfa314a240
BLAKE2b-256 6198c19ad62df4a025473792a35c84fe6e31c7eeba74e1a27470db172e3c1cd2

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03debdfd6c49016125a3d044f1dd3f64115fb00d4946581e10785f6be6d4729c
MD5 00e3c187ed0e2c42f2689ec70710a3d9
BLAKE2b-256 64b356a51c5e6f2db9173ca02934f9234976c92487e2e0f8025691ab24238418

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ecbe3a456ce7ea089a4f222f32193b983706b04e116f8e598b1b17873cccbe5c
MD5 90d0b96115e5517cd9e24b1e308cb913
BLAKE2b-256 c0b302e9d1e73b9378e65fa6cc533a56be947a93911eddf5b2e0576a40e32330

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 e0f36a79f249fbfa431c8d6eda626ac9fe72955e43a6fde1520be935f7cf6fb0
MD5 055400a0997118fcc1f1341bfefc73c0
BLAKE2b-256 ac8cb8b16efe5d125175672e660345b150acc14d88d1f3cc98efe645ef53125b

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-cp312-none-win32.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 05bd57908abdd7ed5ca592c940db4c81f8ff2fe3a5e0e0af36087c11436f2198
MD5 dc5d8dcbaa283faec26ab3dc9ec227b5
BLAKE2b-256 07ed9652b787b84b3e0e6d3929283105cffb459c1ccad0f46b4de67042037973

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 736c3d231ce5bd98d35a4382421b4c08609cc66aad25e63f89b9ca99719706fb
MD5 001ef1d2c25a183d9cf56e42099cf84c
BLAKE2b-256 b2873c65f7c2f9c3bc587938ec4c28210e817cd036ca628e59de4764a5f18401

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bfefca92150fbde5d44bbcaac5fbb5044a7ab70bba467e94da37ca8874ff942c
MD5 92cd3fba0b432c414943d02beb4e5a56
BLAKE2b-256 aa59bb968f79b9b9cfa974c49a8ef2a1b09c7397b721eb1142a5d1c469020329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4015b70e0d6f89c30c1429e99dbaccb24f96944a416589eabdab806406885018
MD5 e685e8af1398ec1a4bb9761acdde6b53
BLAKE2b-256 e7632b3256cff7a7cc11543bb97c5e813269cfd4bc1e63ee23ccf7ecaa7ffad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41d4c13ec0d5a355fefaeff6c7f1921dcedef65818089f2c97f984a2f0f13460
MD5 a62d13f7cbee718dac27a77c7c225ef1
BLAKE2b-256 fa51dbe5c10889fd9c3445b71986f4db7d1b857c2549b3878a70a66fe60f8a93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3cbdd99c8760c8c8354fe95753223a8b3c678cdd4fa932115b2c976190cbad19
MD5 d15c07dc0de132c674c07074344cf25c
BLAKE2b-256 3d94949026bb9e481b424107f12e9b3d030a88b331e75b789c3b3791f8fe0550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f766d6c28a212964d30be228f6a0e0d1df219b4ca109127b36a5c3da58618969
MD5 3cf18394dfdbd6410ef017a6c63d960e
BLAKE2b-256 eda3500f47e9673dd9042c59d799d469a8c799b367924bfb9c15726b56a107d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37f5ccf81e045f7d782bfe9a0aaf01571664ca81a07ecca1c1f2fb506f0c246e
MD5 bde9ac9396090e2f82292cdff39cb172
BLAKE2b-256 744d650231661845e6510b5ccf675949c0843f90e1a52313b04595d8be13268b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f86ce7081b4a6ed800582b072977826544c3b3b1e6d95e7435e2b2af2510497
MD5 39e9dfc4ee0a7e3f3bb395f38c9be9f9
BLAKE2b-256 b9700806e62b5abc886852e73d238c84175ff9ccf9ff20b1dce70ce2c0f171f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 514fdfd12406710ab8866d135b8fbccf271e2378abe49fdbb73d01a318f9a891
MD5 66743c1b5cf84edf7c299c333c5dfc96
BLAKE2b-256 cd36d3d61e8f6c0ff081ffa57f4f9151a1499a0d556674ea41f502e9a3e5dbc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f693664fd02fba8f406d2031401ff7db9e5d5555ee74c75de97bc1be1666aec3
MD5 4ed042d9c5cd77e0a6ce714fcd8bcb4c
BLAKE2b-256 6502157114744575805aaad85001694401670333a0ba1058fb6d50312f18fbf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 27305d12c1daf9aecbba808dee8e498912a44e05fa35bd7859950f3c1cb3dc1b
MD5 f5d3bdf7076156e9d0480caa26dfebe4
BLAKE2b-256 18271adbf17fcf87437c77bbfdf70f719ca2385e1e029841f5ee2dc8c1a8b324

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 55c79a3cf4bf3d0de80a86ceae77d380ab145c588e7254160c6f9610c0c65f1a
MD5 16397cd24727dc6049f2afcb6ebe7ab2
BLAKE2b-256 479550f7723b51f40461c6388a60a3226997749849bdc2ebadba867543e12dce

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-cp311-none-win32.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 536c63b613445db3f664764b86f097829a6c1decdc58c630d3af57e660449c6c
MD5 f7eef4a44ffb517dba6af9cd640dd3f5
BLAKE2b-256 6e1b41a7076c70e0d06e817900e05b52b8f225ae5d231956f91b9f1f43473263

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37d3ebda12935fe2714d9189652799eb3f7c62e698b2bcb9841805898301346b
MD5 f24988ab6da55a9d47c543f726ff04ed
BLAKE2b-256 533bf08ca3e47ab39930d57569461d6e992b9f469fa4f4fdf9ac34816ebd30e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f7f330092ad7507c785b06a89d79e65646eee6ad3dd133f83184d8317d4aa970
MD5 17a3ca47d09c7bd9234e0ab78c309650
BLAKE2b-256 3b4eba98ca2db8328d855470ea6a67bcc0e55412dc5dc1dab9774a2e1cf09a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 347e458110ae61caa32eb08b64cae52b143b353ac8425573b7d1e7ee93c6ef78
MD5 3ab1169bb38df37f54e23d4b2ab9d3af
BLAKE2b-256 ae4119287ec0270e79b6252d67b43cd4d124930902d63cfeec01c8c97feb9fb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 435a9970354dd4edfe88fcc0f694e6f5f8704489c0652cc44ad52a51d548a5fa
MD5 69f21dc1fe70016f213d3ce4333cda0d
BLAKE2b-256 4eec9e0df9d95eae603ae6da3bb9a6b28ff4823042dd522a2abd62547c87bd6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3c85790859a92ea1b790148c3c5fd94100f0eabdae922093d87cac7b672e737
MD5 3bb5c79cae08f61893b39a103fa886d8
BLAKE2b-256 8ab4d7ded556387c83cb9d41bf224d4ef011add317f146385ce6923c30ed029a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8077280b60f408eeda22550c92670ec2af5872f41a438b1e56dd4c59fb7fabcc
MD5 9b194b6774d772fa0aff49a3a9cc323a
BLAKE2b-256 715f507662d067e1cce8f276029cec60da2866b770fee3943ef1ff3ce8bc8aa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6e96d6294f98904338fd504e670c953729ccebc9d71409c2bfdd3441b6f17e1
MD5 c6bc8e0586dbc8c6b05cb512f7e420ed
BLAKE2b-256 0bdc7b99377fc93d8ae664cf0c34a497566713394b0876eb479ccc31453aa652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d0f40d61bad227b816168387350207a7d5e02c47e4f41cb626a14cc36250952
MD5 1641a724ba004f4fd795c55a9dc8709b
BLAKE2b-256 89f9e27c9085ac60b561ad4d1d264f054e4bedc68af4ff5bf63fb03882229335

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 22b489e616de71008b23310469ff550209f07bd5aade0d2b05861f2691a21ff3
MD5 cc0d71fb81dc98bf335131d8d31372f9
BLAKE2b-256 2397d510b9b636f580621fc7f007d4242af9b55dab0fb4e91324c5aac1959e30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8caf81ce1d2f97d92a43cfa7719c1b63502798ac3165069c1fa596e8b06ecaf5
MD5 19ebb06069c3952bd2d95ac56b7b8630
BLAKE2b-256 3c82c6466a1e45e2feb43eadcb4a91c850552785192ebe9fbfd3912005aeb839

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d4bfe54929dd22bccf6b5708baacbe348ec88297af03c1c37e31e672eb031c0d
MD5 b9500f35cda3e93a81285dd32e87ab76
BLAKE2b-256 59c5319a759bab09ffcc26a165c2403f243f0781f8db0bc02a05d1083d5250b0

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 dd60b1b4486eeef230712b0403232ea2de7cef0ecbd394c8847812b5d2e329b0
MD5 5e254932f18c580d5023da14bcbe791b
BLAKE2b-256 461490b72b35562bb647fe7f03b5ca54a0e2b2085ef7c60dce7743821cbb232a

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-cp310-none-win32.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 58d72f336050f146073d9f00ecdb891d99f501e0315595ca78933a32046b6aa3
MD5 2563c6a352e21048e496eb6a4d149f36
BLAKE2b-256 119affd2545708de10969e9e8062f4745978e08491f8f6605da33d36b0bc4be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b5ead90def30ea0438bf6dd501483f00dc07cdb21fc539d1a38b7e89e980bc0
MD5 fec6fc54408dbd280a9fb7287112c178
BLAKE2b-256 9beee9e861844959c5fc4d1608a3fbb1052c6c23de30c6bcbff4edfd505f70cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 229596b2f981a9b742e8768faeea2e09d234a1cd97ac0c55f3e1b9c75ff3c8be
MD5 c94b9ee7945722865e8e902eed7f9b90
BLAKE2b-256 46d5d050e5db9cba166179feb489c36d3908d1f70c8d2c97fad7bfe1aaad6000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 75b4810c45dd43d58363e0eb324a9515f1d7d547648c454b0a2cb5bfd0c80f44
MD5 13b1c465873b11115445a2b299bb493e
BLAKE2b-256 770c6ffc3e61daf5fe0ff7114b7b6b332cbd9eb27c03e4b1dfd01805fd4c87d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e30a240d4facb39932d074a6415e47caa912ab16652b2885363a800ef35bc045
MD5 10e9268dd5533c32a9ac6b4f637eef92
BLAKE2b-256 6617df917b02d697981a22b030518f2173f8202ee42676dddd94637bf94f5e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40bdd9276df9de35aeb659d05ecb448ca5975d40060a7938749dd6059ee2ad26
MD5 90e96c746a5427766c1e4438b310ae6b
BLAKE2b-256 d1afba138ad3650a3e1d6f8c1432daf52e2330b8f8936311662262373572b875

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5bf2e6f21e35d03c706d457b7765265d8dfab6ae4fd6b3611633962bb083b9cc
MD5 e8cc09b3416ce84afbc799cd00c59e82
BLAKE2b-256 f862c69f2f47fa7a4b137505831c6265d0ca6b3e7f54b373da4298450123e767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3b36311dea335ab7d3a19832758bd8bbbeda39d108f119bba64d919f52d3643
MD5 946444d8d4e9da522f13e9206d69c1d9
BLAKE2b-256 8b0afbe11ba27fc5666bc12f6c6b4a5b16ed314314efb2cac812a2583c222e7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4971b4ca73f7a0b51e4a47088ed992c20bfc3aa414bb6a5d257cc2a63d813c28
MD5 7cf5d99b0f5abdd3345c2365d04e0607
BLAKE2b-256 8f9f78b609ec4979719b1a343f656525f4ce524408d11d631baccaeba3f1f7cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6eadcfab51731aeb6d0fd710f20beb5b6f7efa9c8f36d3e616d1a031ca5d4d81
MD5 ceb2bfc27e68a3ea6c8e55cf6c9d075e
BLAKE2b-256 a341e04eed5431bc69d1ce079b5bf558256414bea78c66c48cefd9c008dfa55a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 089b2a715815908ac82a5e2b4cfbb94da5886ad914d63f1eb549c72ce5e38275
MD5 1a31f50c2cdf1d2c262d65175fa59e45
BLAKE2b-256 8bb9dc6fb036f8f0c4a60d60eb13ec8569417f0b0340ab67ad38df4fb921dcac

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 233cefbd2cfe0ccda8e9f490e537aa3acad8ee0affc906738dfa528b9e64a4c0
MD5 cea09ea5187d354c94aa180b7923434c
BLAKE2b-256 101663562ff4db827a9cdfc572293228db2bb1e9ec5b48882674da038f655cdf

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-cp39-none-win32.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 418d51f776dc4f8ba8e4c5935ff8e05ff0f6c9057afe30c64afe0b56cc1867d2
MD5 a1e8a4a694da3b3dcdec0dc65734f2c2
BLAKE2b-256 b18049c18cbd4cc03df77f26e54f02714500409a1146dd0dbd268314c801e5f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce5cbbe0874f754ba6bbbae3269f1dde087de3e8e1a1b771f9440e23d885314b
MD5 b3dc3f508a51e6cbe1205a66b57d8a40
BLAKE2b-256 9ca58b697c6c627d4fda7b5d910d9270500f8a796cc2f4c061213fdb9cb109ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4cffbf1aa2ff11ba0098fc7c1167c37e458ee657fad23d9a599fdd67ab52c2ae
MD5 701fd56b93728f54951fe99b0decf727
BLAKE2b-256 47aba347e464c661586c88218d2653f030dfd3c626c0d044a5656ee9576e178f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 01c26ef26fe8e71118deb61115d5bbbc86a527a587e5fb4fb847d8f5852325d1
MD5 6e09126378c835f7c6a157d2c5d770d0
BLAKE2b-256 3600d018104b83b8556117407f0b8dd58182cf0d9dbc593e4d9a04dcfcb810c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 696c37503c3b35f97e0412c81b821c7d43cddb3d33a5c47ffa81945068673fdb
MD5 215f98c04c609c8e0b9779d8f398d144
BLAKE2b-256 3d9d665ce5d07ded71a54f61dacb320851382707d3eb1d1cc160f7593ef170dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 382f333dbf42e8fa49bd72b8c628aa001cd0aeec1d9c2de98dcd2012a083de96
MD5 2f0dcfa4ffcad63442e54e04a191d944
BLAKE2b-256 e31d68dbb711273b287bd9f122f1a464c3027ba6c69a682085140caba669614f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b5ef3eb0e3a8ccfb60628ef99e7b30defd1ea748f1e5204b0ae7a42d4f6c43e0
MD5 1c3b6144b33766449b100f5f659b45e6
BLAKE2b-256 fed206890ae7b174fa03a3e5227de257b35036c79c465594564514fec65ecaf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2886f7ceac1952fac0eaac0f03c57649a64fb05b702098a5353bcb1dbd554109
MD5 c9b26f7e79c0739c39e1a4b7f0097825
BLAKE2b-256 7a5ed3a2bddab282abacb05dacf2bea99b244308e865bbd6235f8e65e60a0068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b919d9eb867607d398557dc9fd75372a832fd2b453a665c8ca35e7968cb46e5e
MD5 8b475930d936ace54964100cb8bd81fb
BLAKE2b-256 fc295fce633f729fa71fdc52ca7fff739dd53c0625b0ae591329d9dc957056b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7d8925f9192bc6859cfc800d6ec3f6b5fc2b4ab570daa47133233161dfdb259
MD5 4f9c16b8eb04abb159975062c3deedde
BLAKE2b-256 38aea5cab365ed644c7dadeb806c9d512a897079f431f1b24341b7fc1eb1fb9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32ed213ebaac53933e560d0495cc1cd108d0ce04e6479aeb67e594c560ef6467
MD5 c9a345a7b77f57d950e52b481960aab9
BLAKE2b-256 0dcd6cdfa81021b8008b4d931a6a8ad66d23823eb3da24d0f08c1c603eb4369b

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 e4f9f70a7b9d8db2b087a8e83156642470df274f69a510e75d09f9d03bb46eb3
MD5 ab2069f2a3accb53de5f8fe366e775be
BLAKE2b-256 8834d31941f490fc314f96b73c5bbbd15d1a94bbc41c757f6fd2ed483eeb5fed

See more details on using hashes here.

File details

Details for the file eppo_server_sdk-4.1.0-cp38-none-win32.whl.

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 5c2ebf6cc6c5a87dc0f4d39175f7be59b29d0075ec2657682a5a59d0bf7ec597
MD5 36b427773a27025eb4294ee7e4ca3439
BLAKE2b-256 d0f27204b5b6def73be4ea3921fd2d2a7165846cf3ef09ac1e6baede966a4670

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 693b0611115b23de96afd1a57734593f2f9742627d292541254fb5f83e721b92
MD5 67c111a4f801d394fe089c59a2c08a42
BLAKE2b-256 2f172a80c4c1e95dc07b1a36a48b1fcbbb3230a8c8c6d2231a06ab2b45f301aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc14da083ecd81786f627a719bac5cb4ca3350a05e5987d33bbd8baa333874ae
MD5 57b25b8c10e0d89eb8def22279537444
BLAKE2b-256 587dce58aa775fb17cef6ee043fbf6d69d8f008cb28b8a06b3fb6228455b970a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d39193fa39067dcf8d2085c72e8f5137466a7483415ad1f487ef66fc4ab2d3f
MD5 be8b74f51cd2a2273677b11f837f8f78
BLAKE2b-256 b3565df7c782596ea2d90dce4c002c81273b0c40c1f5df2938bce3729c4315bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf896741bce207a745c2faf4daa3b26bcb7473fdaf2b9563916111733c318512
MD5 18c8c68d14978a075cdda81847a924de
BLAKE2b-256 46e09a3380c87194491eb1894de7f3eed59ea40dcf639727e5d67eb28c5b745e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07f2d2948b153e7656c5771b6cdf02481098584252be226f0012692fc86617f8
MD5 aa4e5d653841df693480004ea48ea480
BLAKE2b-256 e964d8c24b44e2b4be64883ac80c60bc2b250cab299ae77a8b7c94a333b35c8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 452a778d9895bd79506746d123aec09aae4f538b3f2b1c7a89450f13f554c08d
MD5 62dfc14b378d331e899973833e59e311
BLAKE2b-256 50a44eaea8704b710a16262fb81859e344a1f92ab74cfbb1daa9cc136eb7877c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a0560d1ce9e06a551137281075bebe31e9123b855b054173e89f811bcf65d4c
MD5 5c1b420ca6711d75068003db92a0b287
BLAKE2b-256 4972888ae52376e22196e7d370ca2e1f3358c77cf427f0c4bdf287dbcb6c44e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 de2fcbab8b49145f9e75f28d860885f6563b15a4d130cbf4a01c5ed8e140df57
MD5 206462f0cb68a3ed42bcf394b81b1253
BLAKE2b-256 6a0e303a2272d99018a079966126363ba5e5c8ce5e77c1c792f6b2529760d325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2cd4c8c74400072acfb52fc74ca908b4a903556f905006e02eb0117b9c6eb240
MD5 ac6344a9216325405582e2b963f8e719
BLAKE2b-256 50c060868903053b8e77ae32813a616c3263190d698f0e50db59e283f22c3f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eppo_server_sdk-4.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7571962ce37597edaefab87ac48200725c4c4ca853f08b1130890cec5d4a5b0
MD5 35a495bd0c25030d38a2b8318c3f8b1e
BLAKE2b-256 d7f28e9e98f3af7719f4029b82817fffc36d09ce23039abf5b145e7f53e8b2c4

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 Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page