Skip to main content

No project description provided

Project description

EGObox - Efficient Global Optimization toolbox

pytests DOI

egobox package is the Python binding of the optimizer named Egor and the surrogate model Gpx, mixture of Gaussian processes, from the EGObox libraries written in Rust.

Installation

pip install egobox

Egor optimizer

import numpy as np
import egobox as egx

# Objective function
def f_obj(x: np.ndarray) -> np.ndarray:
    return (x - 3.5) * np.sin((x - 3.5) / (np.pi))

# Minimize f_opt in [0, 25]
result, status = egx.Egor([[0.0, 25.0]]).minimize(f_obj, max_iters=20, seed=42)
print(f"Optimization f={res.y_opt} at {res.x_opt}")  # Optimization f=[-15.12510323] at [18.93525454]
print(f"Status {status.exit} in {status.elapsed_time}s")  # ExitStatus.SOLVER_CONVERGED in 0.021s

Gpx surrogate model

import numpy as np
import matplotlib.pyplot as plt
import egobox as egx

# Training
xtrain = np.array([0.0, 1.0, 2.0, 3.0, 4.0])
ytrain = np.array([0.0, 1.0, 1.5, 0.9, 1.0])
gpx = egx.Gpx.builder().fit(xtrain, ytrain)

# Prediction
xtest = np.linspace(0, 4, 100).reshape((-1, 1))
ytest = gpx.predict(xtest)

# Plot
plt.plot(xtest, ytest)
plt.plot(xtrain, ytrain, "o")
plt.show()

See the tutorial notebooks and examples folder for more information on the usage of the optimizer and mixture of Gaussian processes surrogate model.

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

egobox-0.37.0.tar.gz (379.5 kB view details)

Uploaded Source

Built Distributions

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

egobox-0.37.0-cp314-cp314-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.14Windows x86-64

egobox-0.37.0-cp314-cp314-win32.whl (3.3 MB view details)

Uploaded CPython 3.14Windows x86

egobox-0.37.0-cp314-cp314-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

egobox-0.37.0-cp314-cp314-macosx_10_12_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

egobox-0.37.0-cp313-cp313-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.13Windows x86-64

egobox-0.37.0-cp313-cp313-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

egobox-0.37.0-cp313-cp313-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

egobox-0.37.0-cp313-cp313-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

egobox-0.37.0-cp313-cp313-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

egobox-0.37.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

egobox-0.37.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

egobox-0.37.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

egobox-0.37.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

egobox-0.37.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

egobox-0.37.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

egobox-0.37.0-cp313-cp313-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

egobox-0.37.0-cp313-cp313-macosx_10_12_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

egobox-0.37.0-cp312-cp312-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.12Windows x86-64

egobox-0.37.0-cp312-cp312-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

egobox-0.37.0-cp312-cp312-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

egobox-0.37.0-cp312-cp312-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

egobox-0.37.0-cp312-cp312-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

egobox-0.37.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

egobox-0.37.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

egobox-0.37.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

egobox-0.37.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

egobox-0.37.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

egobox-0.37.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

egobox-0.37.0-cp312-cp312-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

egobox-0.37.0-cp312-cp312-macosx_10_12_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

egobox-0.37.0-cp311-cp311-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.11Windows x86-64

egobox-0.37.0-cp311-cp311-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

egobox-0.37.0-cp311-cp311-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

egobox-0.37.0-cp311-cp311-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

egobox-0.37.0-cp311-cp311-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

egobox-0.37.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

egobox-0.37.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

egobox-0.37.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

egobox-0.37.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

egobox-0.37.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

egobox-0.37.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

egobox-0.37.0-cp311-cp311-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

egobox-0.37.0-cp311-cp311-macosx_10_12_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

egobox-0.37.0-cp310-cp310-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.10Windows x86-64

egobox-0.37.0-cp310-cp310-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

egobox-0.37.0-cp310-cp310-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

egobox-0.37.0-cp310-cp310-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

egobox-0.37.0-cp310-cp310-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

egobox-0.37.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

egobox-0.37.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

egobox-0.37.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

egobox-0.37.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

egobox-0.37.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

egobox-0.37.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

Details for the file egobox-0.37.0.tar.gz.

File metadata

  • Download URL: egobox-0.37.0.tar.gz
  • Upload date:
  • Size: 379.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for egobox-0.37.0.tar.gz
Algorithm Hash digest
SHA256 29afdcadde1e1ecfa6ac0ba6f50b1e48cd4a33006c2abda2f83d3b3af7b70bf8
MD5 d92fe7afa39d734a1abb6c23c11ad8d2
BLAKE2b-256 f7aef05b69261cd88b0f560fe8820d1ea98e3fa299061aee0060fcde8366cd6f

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: egobox-0.37.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for egobox-0.37.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e5941185eed8be968fe960d290ae9cf9fa510eed69261b606c760ded3052c14d
MD5 3788398e5a38f251f9259ab1fdd6999d
BLAKE2b-256 9aac86b0c54e32b0eccc960c1ac6bb223fa50cb58bb20b74dc13025d95a8f3d7

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: egobox-0.37.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for egobox-0.37.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 658a36da0fee7048110d3f19f23de4f7363bd6c31bda2ecc8065c084c5a47082
MD5 23e0b70ab915a1bb557f7db0f5345fe8
BLAKE2b-256 a8c96dbffbb4ab0e04db150358609f1bb844fb3a0613751fda47f883ed9d66a0

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 faf25318aa0cb825699fe3f93518e2274f49c02e05fba1df131f1bda8f67079b
MD5 d1f75483326debc7bea70858945c89f5
BLAKE2b-256 c86098c0bbeb38295e35af131bc8d4825ed9fc4f63e38c56b2b6869c065d18ab

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b4e09b0f55399e3e66dad74731838464cfcc6bf73689c4096ad0b4bbe8728940
MD5 bf7af6c97c20a6ee443cf799de36d8a7
BLAKE2b-256 ac283d246524e8e47fb3170c4918ed1714c78201e9e55150d80c17b005c45d99

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: egobox-0.37.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for egobox-0.37.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ba5d8a2356f7c5cb61b02283ad21f682695a0bedd43f805ca7ab528c6ef27e03
MD5 da3ee1870a628ac97ec96da692ec5e28
BLAKE2b-256 0f9f4123afbdba7f3160f43297aa77761f1039f018891591885f3976a81f3c01

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f77ef0f36d124fbc7775a4a9dd8c48cf35789acd3e887db1f92bb94236c1321f
MD5 317832a475936b806d2f3a8a6bb26b08
BLAKE2b-256 44f5ee390f299f7e3c966c27c842594285dad65afb63bbe6172eab5decab9d1c

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 72cc8fec1284d27a3835c2fbd1266b57fe68efa42868464aba2d9489b62d322b
MD5 7c13c1dada70f4c793ef3bef07e75031
BLAKE2b-256 aa0272ac3a48866287d16262ea9bcfdafc6c45cd658b7678ea09db3ef3408c83

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39f7a9476cd2a323b40fa9789a6c1133b92e0c6ef98ed10e1577b69416f68d8c
MD5 332a45ce9310e6cda0803269509e5c59
BLAKE2b-256 ea5453c742acdc5ddc99ed20923d80533fecef9b62b7750c9aebc3c19fd7961f

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc1ca714f7ce1e0cca8ea44149228655819adcc001afbc2a909309ba31c19545
MD5 d7118ecc2b63ad9e93fc078876e16852
BLAKE2b-256 6d2616ae14bdd6a827488cdda20d38c8ddb36e5eb76cca73ce641b8b62b03f09

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69998b151d27bdbb649c110574b53875bc0cf08a4fa3b976bb26846976836010
MD5 0dfc9f1033bb8e40202c710474290250
BLAKE2b-256 76e305094400c81bbff6fa504ba415d5069226ffd315519d06c221028dba58c7

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21d6eeafaa6e93391503aa4bc97f3b1407f5f1c29c6425beddaf6fa43a45e7b3
MD5 dd6cbe4de782f177b37ebc16aa7afb84
BLAKE2b-256 1035aaf9de02782aa4fdbe9b021d1ca764200505d46fc486b047f1ccebe83ee6

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f2de975681bc5d5e5610e9716fe1116c54a0653cec43f844c5bb407533403393
MD5 065c74247dc6002de26e3e6cc9340806
BLAKE2b-256 a41f27e07bf7d55e69430717787d4c494614e6a781628e76e44afe71a30e2768

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f8f989b9929e0d3dfe4dca2cb29c42875fadc5e17aa462b3491d5d5456a05720
MD5 f5c0756fc68c6d4bb3944919d47c9d3b
BLAKE2b-256 88498a82958ffe13043c1dadf7219637dc09388b3081df8a6f220c9228205448

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b71cb1cd118990ef8e94ed3480e8d1406476d539288bd2bd93b7f33d5bc4d4e0
MD5 7f9117bd158005464146dd065d1997fd
BLAKE2b-256 23abf89c5cab4feaa30cf099899e08eceaaf3b51e51ecfe5ed5e92313d2547ed

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9d3339f2ba8517cc5fc72d936dea63a63c7df66674e0a2d546cec950e5c5be0
MD5 6860ca2299a83352f2b1bc5122cd9e7e
BLAKE2b-256 3a67c6311ba2c788234c1c210df7f9e775739f4925c049c587aee506583d33b1

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1a06463e60c0a3a11d1ddf2cbeac5dd34ceb01dfd7fe2e67d627992ccbb04de
MD5 55da0a25badce7ffdd070805183668d3
BLAKE2b-256 bb704f71345ea1e6f31c5b41db10fe675a81d5a78829dfbac12604f9da172ddc

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 36fad2e31fdfbe30f0d738a10f16ce33622abc6cba1ec77ab9739f486e68aabd
MD5 603606efdba9ebc0a6e3be17b00f2acd
BLAKE2b-256 f92a06e8c03a61c8d5b6d6e6cb8f65ef99557f3e5094c962469c8ad91ee9620a

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: egobox-0.37.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for egobox-0.37.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2de3fe5dcb30936b152b268321a36c383e0d871e46b64673aafe07ebec7525e9
MD5 2bfce8358f36f061b2542cbb1ac4e815
BLAKE2b-256 78e1511292297fa090ac9d00ba44744f72bd109889e6625b5e4ce7eef9231549

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 264e19b51140b2688bb3e8c77a8163be090097a284772bf567451d9488f3308e
MD5 693fd4268157015186e757636b4be1d3
BLAKE2b-256 c0a93ba161a4375e18a49cf23454cd56d0cea5fa65c7c48f1f929622ba9c7e2b

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d0e98770900e04dffd8cb9904b3b42ad3fbc6fb95332d30dc25fbddb37174754
MD5 ec564a425283527b42d3c30c3f991211
BLAKE2b-256 3d5533f2315e1611969ce56b53182fa0c830a06e5bef5923f07aa4b97fec8fbc

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5634aa65d36325f39552c03c4cdba1ac15affa4b50f62e293383e0ec3f615f20
MD5 845fc173cf5fb21818d27f3413263911
BLAKE2b-256 b7854f547c37544e6bf95a364b4c4b1e463ea77159d1ebd736e0c716cc6dd6ce

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31c43009d85f4b81fc9fd630a64fc33be721cc533af139d6b863df0d13cfec50
MD5 80e5b9cc5b099f8409b2e7237186b554
BLAKE2b-256 81aedae8f646c44f06f253d88e7738a5780c1a3fc6f8d6ddfafb6d646d250a45

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cdc590b8ea8b8e93b7a95068eafed9171ae516f030889c1ce9adcc213784daf
MD5 8898506cdb0c2e009cb1732623e2cdd7
BLAKE2b-256 f738e2b6c7afe0afb15809b80250c5379a0f8dfb299e607bbb2ef0160f1db97d

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 451546dddf223bd9706b5b5f52e59fa78337b33432a458828b59839dd9cd8158
MD5 8ae065d1e93c0e1494dfdc00fdab0fbd
BLAKE2b-256 8decffb1cc413032a6c280b1bee4d0a9a65995fcc96f2001b66206dcb6302590

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0afcc74c7359adf8ad2da4fd3265414ce83d67037bda07693da1498319017ec4
MD5 0eab9694d582de7d5da818c8aa005165
BLAKE2b-256 8d57f7edb2b679f958c942407e29414dc8a4dee0186a237c5cc30e31ec3e8103

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 44ff56a6b4c034d620f60514469ea663a62cb1dc6539c68e84d4fd9c6f5fcb12
MD5 668eb2fbedb8c9873cf497f3dab255e5
BLAKE2b-256 ecd8480a20688907f2b1d34f9c0071dab24cbad2883d8f726c166cef6599b2e6

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c17c1b862807dfd4ac50d666966bc7f7e5e0cec4bbaeb64c4e0d06bb7051f16
MD5 e47d5cc630d421aed0852da93b45e4f8
BLAKE2b-256 de5dfd52ca08df0d686670789cc02bc98bdce61b777c5506f96ce77a077233fd

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 083fccf90a51ccfe0fef596c54121921e90b57bcac6cc74b064b36824dc89d77
MD5 087c9eaa077026e74855a16e630b1bb4
BLAKE2b-256 d7ec36fb0ca11143d10f3fa77712f75b170d73b20dcb64b84416db161e73e6ad

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34e463991675c54ff4000367afc3a4b5da2415044dcf146f47ae872441f2d837
MD5 09031258e9dbadf6c6a88305199412aa
BLAKE2b-256 7c4f6c24f479ceb5aa99b90e7d1d9049cba4020de00eb5fd7a05d2478e5a5dcf

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8572129b74fd8cd072098dc251a21900f5d6dd5fda8d15a022d8a67f1701b804
MD5 726911ab3b8d1ca7484f5359cdd60cc8
BLAKE2b-256 78143c4f5067ea51bbfd75fdda65d15fc1de65955f412615f96a83390945b9f9

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: egobox-0.37.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for egobox-0.37.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3cdd5520e04c3d52f9fdbfd3a6bbe32b4fc20c8e44ea5c4300bbd4a3ef9c1ea4
MD5 fb427e0fbf3322bb387535345f6cb11b
BLAKE2b-256 06dce2ca6a0ebe2c2fb5ea237fde44cca06cf09f30285b08e19cb8d2f7867f22

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0962f6f7d94cb58255a69984426f806367fe3069f2863a64c3927648fffd7b13
MD5 2196511ee1d8f09adb7f270ffb2563fe
BLAKE2b-256 90da163e36a5b00c674d842deb453e5fc7174adc57a54048451b1a30990aecc0

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d120522384c52d8373ea9a54600aed234a770f56927b4f63b0dba3ce9e609f96
MD5 b3b9a9c16709475d59d17d27a7b69109
BLAKE2b-256 863533eee8ac5a7a9107710e63f1b58a94f41205972e6cedc3a41e0f3a24946b

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 21fe052bb1069c592435e93ec75f2cc5e2a2758bfcc7126979ecfdfcfff91fc3
MD5 c8a342989ff979c3c488a60a9513dd0e
BLAKE2b-256 8b833d732049ac1d77feb797f41fbbd48dad8c6404fba1efb12c6c396cc10682

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9a4b6de98accf13bc9404a38e5be544a1e4f67b8af43cef0615fdebb9d822ba
MD5 fb59caff735e0c7024d02c124e0e1423
BLAKE2b-256 dc78dda50a9511055272bf0184e0ae7806c0ef0b87f383d582caf8546addaefc

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95a92710fb15b6db3b4c77f245424d081d669c61e6a3ffa5f3ae85f894af9bae
MD5 e12aaa2c7f4d13f3cf9492b6cc2c4fe6
BLAKE2b-256 21939cbc7b92c37227be3aef15eb852e40045800e40f08d4b42f13a468c2e52c

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b341f99cccb1220bf67463a32b1cbad383ed13a572be382d88f28489c50cea0e
MD5 4db9f1aa28814c983a3111ed5260c119
BLAKE2b-256 c88152a46ef323ef1bb1761d560f86d62d1a3282d85a8d36362088680adf0baf

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 578ce1260a6817c307e20f3cacc967aab95d11b265a30605bf7a92a38dc53e12
MD5 d9707fcdd04422984d6690442660e7c0
BLAKE2b-256 9e648f4b6dfb563ee44e92478c12056350090ad73d52ac452323a5724c3af1fc

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 726658c1176cdf69934a36d41cf8ca74a29abdaa54fd86852109a4a65d7c5599
MD5 88fa66c2267017f6e758f8dda9fefab5
BLAKE2b-256 c83c37787a4273b0b9f60db5dea6fc68e30c813f12717c37c66486471f327144

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2efa9c9d0cf8e38cd2882af8509736262385524ddf7f59e8a089e5750ec90b08
MD5 d1c27566182fd156518f206399db6ed3
BLAKE2b-256 16503bc2ae4d5e6152e47ac03088f933544b163cae0e000c63a4e9e3c9ace5c8

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa45544ffc5ea9f3750cf698273cac94f2693b60726818d14b0b954ab0a4a79b
MD5 3481c9e483e699cd9eeea9bc94304c80
BLAKE2b-256 9b435e8c63a72546cf8a3658b13b7c8773e6af1922a723344f59a82e2e3f20a5

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6451affc296835255358ad309339616c649a309df0d4b03c1e5509c79ee8ca72
MD5 a9f2c3c01d05decb810105fdb196482a
BLAKE2b-256 e897e78ed46ea1617e66cf32ad8f708e4556d9247a9c417609bc28e66a85a7fa

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 19b261ad6a3cf26310dc39b85dc285d52bb64a324a44b367ef5b1cd3cda3ceba
MD5 8d161ced0fc2c76e49870b01f2c929e6
BLAKE2b-256 24784bc1601bf9d46e0cb4b295e2ae798f5e5ab82c4a005b1564b6987b119c13

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: egobox-0.37.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for egobox-0.37.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4e463baae87d66553ce18a07dded823ac945eb6ea991629098a42d484016b5dd
MD5 bd4e1c8055b703dc6dde086340e400dc
BLAKE2b-256 e0fa9f5ebc78cabbee9af34deb359f48abc1b6602954bacf188d20bd7054c5b8

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76a1447629edce8d1344cfeeddb766e89b416c829c5e0cea926db6c78b123eef
MD5 faa6d23ae4cdc2afe7371bd68fc27127
BLAKE2b-256 33eac10650d8ea7432ac78f054e420b56178866b11fefce3e1c9e8734c0c39d5

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a2bf540f99949d6e7f9f9373e210951313eca40feef9c0f628a8de41d7c852af
MD5 9f5baa42d7c1d44dbc06fd6f99898635
BLAKE2b-256 dd527cde1f7823209315c293f2ea44f04d1df93d987a8727b5f364170a824e01

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1e9d36a803525e6b2aebe6e059a97742713d3c3862a75d256b29ee078de00dc4
MD5 4d5050d52651c886ccccf66f0d3b484b
BLAKE2b-256 bde33922e369b03c58b5e699bd3ef33bf6fb6a903dd0c16ee7cb8852f3642933

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 057f7077eec118c7d55bb3917f03fb10c937d930a38bd7604903ea433a298a85
MD5 20571c6839df08527e5850de858c8eee
BLAKE2b-256 9c874d704d20fa640c3dd3e359e1ae059b53478ac54a10542e4876e98d81555c

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46b6bfa0cf6ed90d20f4680d72a08e5cf5336cf96c7d9a04cce42f609b60a4d8
MD5 870f895c7be5a7fa52a9feab30d8541a
BLAKE2b-256 9d8141ba28afa8e46021d8ce4ed1f98b26b605c27cbc82053d336e2c9c76604a

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 332f0d37213565db17878cff046bc8faf528c187e48b3c860311adf53f242ffc
MD5 6a300c941dd66a497fad18a1595496ca
BLAKE2b-256 2d290e4fd3970e27e8e2b50e55d7512833c4f2a65b8c6e3c8cb5ddb944766f0e

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63643547f2a495b891e2d6cc9f81c7e613105c5fbd8b2d20e2f497f42a838e4b
MD5 48861e42d3b69d6f9fdc221c81a90d79
BLAKE2b-256 70365005c1cdb7ab1ce06b411b9023c4b152b925fe38d38465028ae517d0eb5c

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 44d7cac30dfa64386bbca4a20e175a913642f1b0fae0e07e44a9769a19402bc3
MD5 8aaf6c5bd52dfc7f3ed1aefe23fbe8a7
BLAKE2b-256 bb3c481c9e7454f4b7bcf63f5cdc3c244284a08bec0e1ba745acbd2e9d0140e0

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 001d4063842fa72698de3f5be9b9adcb2b707bf33ebdb0d8cceaa0285a917a80
MD5 a6975cf5d0a18c08a16ddf6301bf62d1
BLAKE2b-256 28ecebd7f8bbed8fffb709c266717c5c88940813e5dedb0d616d2b07c5ac1713

See more details on using hashes here.

File details

Details for the file egobox-0.37.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for egobox-0.37.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8d20bac7bc37d0e50ac8575b72acb1665dcc7584ef078829ae20e531f329b54
MD5 eff2749d0c32871e27a88b3749fe6bb5
BLAKE2b-256 ad8ff8d2d403fc085a36d26efb76db44f1e639e1b2afdb0ced5a5aa46b3cd7e2

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