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]
optim = egx.Egor([[0.0, 25.0]]).minimize(f_obj, max_iters=20, seed=42)
print(f"Optimization f={optim.result.y_opt} at {optim.result.x_opt}")  # Optimization f=[-15.12510323] at [18.93525454]
print(f"Status {optim.status.exit} in {optim.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.1.tar.gz (380.8 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.1-cp314-cp314-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

egobox-0.37.1-cp313-cp313-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.13Windows x86-64

egobox-0.37.1-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.1-cp313-cp313-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

egobox-0.37.1-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.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

egobox-0.37.1-cp312-cp312-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.12Windows x86-64

egobox-0.37.1-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.1-cp312-cp312-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

egobox-0.37.1-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.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

egobox-0.37.1-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.1-cp311-cp311-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

egobox-0.37.1-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.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

egobox-0.37.1-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.1-cp310-cp310-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

egobox-0.37.1-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.1-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.1-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.1-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.1-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.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for egobox-0.37.1.tar.gz
Algorithm Hash digest
SHA256 365bf129c157ea289a2b202f855739dc26be38773d51cdf2df107cae2a3db8eb
MD5 783a9013fb2dad15058be4f67ee3caa1
BLAKE2b-256 d58cda8581bc513bca70e86c6fcf9636eb037231fd7f179f972bec010a897058

See more details on using hashes here.

File details

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

File metadata

  • Download URL: egobox-0.37.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dd979154c23af7eafb308dfd3e1ac85778785d11525cbac565e52d1bcbb4be88
MD5 68abd5f7aec4fe751ad5b2a231feeecc
BLAKE2b-256 837dd77dcc2f0b1438fcdb3a8c37c348c6d808d34bd250188f3a1b5b19e2fd9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: egobox-0.37.1-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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a9e17f62bf1ae74385c87dcd85851462056fc9395cdc984cce165d91bb62ca1f
MD5 dca0911c9d47cdc12378e83844ab9d84
BLAKE2b-256 aac76a4af77a94a5b26c0d0b38e3d3691c5bf9c316b91de71e5ba959a599c0c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57c7797fa94aeef9c57989e67dd3ca029c8c460d575992d50e7771a5e5259b62
MD5 a357d5c861304199bedd50fb814a4315
BLAKE2b-256 b42353776275ab14b7e71f6905b62650edf4c47872d0d30b6ef00040a17020c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 50f70f9e3cd75c1fa181b393ee3e75f32c0f798db9ee8970d4736db72b1a644d
MD5 2712d8465c467ef61767257a58b9d7d1
BLAKE2b-256 ed37910a8030e4f91f39d4999c469dd86e8e0fb2faaabcadcfca1b1e79f27b5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: egobox-0.37.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3f9c3e4510415f93c12fc9df855c6e8557bb6d0322495d88c306de7962e3a541
MD5 c641b3785e83f7bb9e28d4d2358f714b
BLAKE2b-256 4dee9fd791fff1af0edd85998857666565ea7ba1678266c36af3aa6f918b01f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55148eb60c284698c209e96b98ea887df8a04930522f10d23148f7d310542d78
MD5 07c164ccf362612920b378339c49bd52
BLAKE2b-256 c63889cd0d8f62965e7e4d7b1e4d54eabe48776795dbf40a156c8c6e45c7a0a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef878bfd4201ef35ef786da7d5102ff81e5d0203f8fccc4ddfdd520868ba8e23
MD5 8fa96da9b5816e8a4b58e9ab87e0a058
BLAKE2b-256 be25932a7a1b97b6755cdd4702baaaa2792de6739518ded211bcf0d5905b87c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 886d824ad8c3fdbb7be2507859418a7b766d0e0baf4c53a85a03ac231e077f7d
MD5 ee9832c5412290750a8c123eefcdeb01
BLAKE2b-256 7d3c12afd45727f0b7fe0f41fcfae2579292750631ac5ce72357155eb5ba47d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0fad64633ab9e3663504673704106960025e25fd2069a761e61bb192e13d571
MD5 475922d0acd47a404558e7d0b5a28c28
BLAKE2b-256 2b0a5f2d9caeb014714ec95ed1e40c62c068a7db333c7fe04b121e91be091593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0114ad10059d89af6cb462bc1ff33c81ae5b4781f87406fff10db924caca3ee
MD5 d62c76cd2fd2396143f975574399bd8a
BLAKE2b-256 38c33b1a3d8919dd9d77fcc2a13a545fd8e99245ac814658bcfd4e4b537f1b78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f2e3c88e8a273ccbcee47342b505cc17116fcab4c67a0afae4d2699a5d1a92a
MD5 49b9c0063142682a1801701a6c100b57
BLAKE2b-256 5748d3cc9b5da03ee99e2b4c6693aa5e85eda191a0011dd9a4646f530f936f8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a4ba980dc5bf86feed3fddfb92108ef7cfc69ae71ec031c8c1e8045eabb74f8
MD5 b82e8b2bacb8e184a300128ee48e2dfe
BLAKE2b-256 fbf1bec3cd34493ebccd31b765478c102c56bcc8d98885a2222fbf9a9eb8b9b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f82d17bf3cbe56c0059db685e2326db83565f8b751c3bef300d71aee6516d4d2
MD5 fd697deb38fa909852e268578c29fef8
BLAKE2b-256 79bfcdc6b0894c91bec5c9da47bf1093366c69f1244cb40b3f585d739e6fb80a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f3ee2b92e06b8d6af43b1958e87d476126c9bd52ae120b9e2459ec899cd57725
MD5 11f86780c37bb3c6130541107abe8d23
BLAKE2b-256 9534d59dc142304b10b36750b0cd1ed52465a8c8e45c41e4ec31a771eb485bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 283f96a0400cb46adfa037549dc11b24a0c63c5021a4bf72986584730e869ac6
MD5 fac04895c8d54a97bda71700361fc769
BLAKE2b-256 2c0f42d68f965c11048dad970a99d55e20a02fda4b6e86dafa823d9a5ae994a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a4ceab3b0f0a80ecc5ab703e54c297a1ec9076353b7c0300cd7a7b29507f795
MD5 8e7a4331ef301cb8fead2cbf4c61ea50
BLAKE2b-256 57cfdd169fe52f04cab2bda32b8881d6f9dcc328db2349d6e2c2663d43a7603d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0aee91712b815b9709efee2c2dbe87209bb79c202d18bb478b2d5facfd3da1b
MD5 fbd813f21168dab4fe31e65fe07d1794
BLAKE2b-256 9a3b66382f37d3c37039e47e16fd490e0678914dbf0675fbe5ee8c341d58b8af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: egobox-0.37.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 699f4333014be285a34a6c0a73aaa6ece127ce3e7e7a94f19537b32567510d29
MD5 9f5f5bb076867be436278755929ee4a4
BLAKE2b-256 07bf5a7fe234e172758b62eb1ea072dd43a010b88071551aec316bbca2cb5fde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c2eb8f5479a18b431d46704b9fc8adea1dc467efae4739226dea7e17a74a39d
MD5 1827920c2a68b00ccdee7ceb5b0c53db
BLAKE2b-256 67fbac60af52405d5f17ba2b1390bcdd75ffd91e804d283f545f1a6c13316c33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 030c214d8a8ebfe1461bc1344a021b6f5aa5ae0505820b4db95c97e18bace6f6
MD5 01dfa0dd47b0e69221307941be9237fa
BLAKE2b-256 e33798525d1e1e64ae3a45e70039784e8b23c03d5a15171c93fe91178e8730dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4441f4b9f509ac68de6eddea79f440d28f13d7df50ce2ce6ac4ef6feaf6cdbe8
MD5 58aa22a78715f99a7f468bea8a930ed0
BLAKE2b-256 59cbdfbe32953240d6bde7602c4026c3947af3ccfa147fb0fcbe9f0cf1567d18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0075f0922a8ee8e4d2f9c6f1b74672129425da87947c206294b463cf93819590
MD5 70e93efd21d597181d15c24c7840bc2d
BLAKE2b-256 61399baac4f69c9342e310ee8f5bcf543f29aabd410d0426234d92d947e6b2f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cdada2f1078721a2720668457d67cfcb4e9dff85a891efe00dc8d874fcda4d6
MD5 1f7b307a5a5ba95e4db768dfefd9c881
BLAKE2b-256 72cf9679bcf626edd3451c8e4cc8487a35971be14a5aff95dc8b7dcffad19891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 110d7ab3a0380d6c80aa85b239bb58b26d8abb431be718db13e2c3b6c9a4af89
MD5 81e4c3473ee28fdab736e9c063299798
BLAKE2b-256 6bc3d1ea5eec6911f5cdd97092cb340248eaca149077dcb75dd9b6a3bf87dd58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cdd798034f141834c1ef166396bc48543007718ef3ebb56a3fa1ceb49e44d07f
MD5 ec9351cc01c0324201d2ae2e2158183a
BLAKE2b-256 635bd4e39854d2489587ad3076eca3285aa62544aab85f104b330107cab09575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d23984c2145e742942495a84ac6fc084f7109f2c7c0cd8ec2039c342278b2887
MD5 00e4affe2b6577badc6bc76f9c95bcf2
BLAKE2b-256 8d3707c9f11bb09050da9a1bcfdcaa2b27e293f36b86057895ec8a5a8016e9de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e4e41d91a0fc1bc9c04059d7b1a57bbd0b12929e81a450cc56e2a978e817953b
MD5 7b5ae5de5ccd4178f6c31d4e75ab2d37
BLAKE2b-256 ed09a4098cee0a0d5b5c60a7b7e4e1716a577f6fe041c463eea3fb12d42c3a04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52a5c18caf4f3eb8d76b412df8154f6096139aff37c6a7fdd5c4df3a20b920f6
MD5 cf4ca7a6be18e21c9f599bbdfaa9bd74
BLAKE2b-256 92e530d6832422eef15d71387515aa6cbaf09f9df4a3b32b4dc2e75eba63413f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3a55c94863c459175693a3c71b11e38b95f6328bac444a368ca234eb8478a9b
MD5 84b7b0558dda2df60304abffb26b81b8
BLAKE2b-256 cf862a5e7a4640f7189a652a0ad2a010ba264b4898157bf3909efa19b808d2dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e3708e306748b7b397d1dd5258dfd9190b70455daf0191016adfd3fc83590f41
MD5 defb12de8fc6b396e7763a3cfb6499fb
BLAKE2b-256 1e9042b6a0e2c5ac40874dca1e60b0a4300042a60792896e168da4efe20435b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: egobox-0.37.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c6b577572fb2f4acb372bb8837895cc75835c57eda236dec22ddf27d5a6ee5d2
MD5 38944d07df1612d4a2f58f4ee6726013
BLAKE2b-256 0933e7fa87a84a58959ddee3b75a3a6e60fd0f228cf2e523bfcf56f610422505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 201cb5346444a2d713191670237b55158b6df46400cabad7aedeffc4973154a7
MD5 74a8b2fe69c9359c858e36b05170ba19
BLAKE2b-256 b8f472aa2a6a74b73cfbcdb45129308af6d33a4c4a5d9ef0ee3c751919fdad49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8cc56d6db7b4b92c31f582b9e40e367c9f6082be4902acd7394c540ec78bfc9a
MD5 85c65a896cae8b1916eb8ba081c8cd48
BLAKE2b-256 75c8b7685902116222a27a488cac011e72d059fb68788f4b9049d43501eaec5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7bb6c48f311d6cd40fd9ae0cc6bd17b86fc2c96ac685f475ad3a844df3016dfb
MD5 7c7f4122d7bd03bd8ab11ec08e5c7d46
BLAKE2b-256 29171eba8149b9367b416224669e320e06d5154c641d24f5989c239e863d9bda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e95e02a88a40a12f1316484b70343279f9cff59eb7a5e19c2a2282acb68c3c39
MD5 a8cb0dfa2342fa3e7a76bcc84410c0ce
BLAKE2b-256 cab1e238fbb3dd106d7f6fedc20ca3b8be99f322819bc61a8877b42188ae39a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b3cd2d8c555d877ffa7035ae74d2a3b37e8b74f0084734d299115d3efda238d
MD5 582c3958a31efa006fa2fcc570a57800
BLAKE2b-256 f5dcdfdfd040e7e54ce8134201550dac133e28ecb6e8d74722aa93a50cff06c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e59c3df960fcc1747cc7849ff4f4fde2958c156a8d5af64b486a25bfe114b9b
MD5 957e083b1e2d9f1536477bd472bb89b1
BLAKE2b-256 b8b488654ad926f9b68fa1a976f9c8412665b76ab740a04a4035c2f017228c5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e9c06d3e363f979d1d70059017d869fb89eef26305b1384bbb07577c7b2b27a
MD5 35b17415c2f984f263c3e3d0efd8e811
BLAKE2b-256 964777576d7639fac9a74740bec276cba7d9830102771fb7449c6a2202169433

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dab20224150cfa8aa75e259fd3355f4fbf3354488aa0550ae311179adb5c2be9
MD5 85fad9cab0000f45b38ec303c3ff8d99
BLAKE2b-256 06ef79192f2c920f21eafb32f995f433a11cf8ccb63eaff404e38180b9feeee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40dbbcfc7510c20cc9ab40014637d0c4960667821cf7207975a1ac9a77ddf8c6
MD5 c4b29c5a47d8146597c7692ebc781d88
BLAKE2b-256 e570daeb0d5580347bc915649eb4da819b633301db084c8cf2f35147f1b3058c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3a83566a6c848e432738b0444ee36429bb86813b12bc7c979372fc2965a39f7
MD5 1a4bca00ded8c80ed6d083eb191e08ba
BLAKE2b-256 ce3f77db80928a2409af7d6681dd2c6f8c81dd4555c4b69d154a83cbd45f4956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 423f4a6c25d0e40d73a5eec195be8a9810289b9e162aa71f366e3a763854b5f9
MD5 9893deddcd50beadfd8a6e3eb71deb69
BLAKE2b-256 0254086fdf16ac65f1b880c981023e0db1830080a9dbf4ca1198bcd4ccc93016

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc8a09bbd6ff50a64d806041245a6fd6c2ea15698356fb92f8f5851184e2f2df
MD5 a1166c167ae7c9118128d211e0cf8d4e
BLAKE2b-256 e012b29b425f75059e7650adfc460f495f6075e738a86c84b71672632ae0e7b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: egobox-0.37.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f9117dbe257314d725478e2f421ec764fcc633088609ced3652b5920523fef08
MD5 17229d9d07c736d83190ccf06f7dc38e
BLAKE2b-256 afaddc52562dd969e05822d4fb471c533702496da92e1f7d25b42fefa43da7e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8845099c902e2ec6bb0926db0a43a57158d112dca9f5bfe4ca1fdb31c116e40
MD5 6b6f7333af4f5119f6f7c7d19ebf9964
BLAKE2b-256 e1db050aafc23482952a29f841a63a431993507b34e48f0c30e682b127666faa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 563a6f643f6f246c3af3da858750d225a9ab50c373bb9ff6d5a5287cfb4714ca
MD5 dfb5ece3523f383f64a1d5c48d0f69e0
BLAKE2b-256 8fde16ed54bb012d0a631b5bee525bb1b17d4bc6e99904f775913b513f8ffe28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad8f56b27f72604f95ab17472c248f87944b86304dc6185c6c8ff79aed77824d
MD5 0a5708b367e3f78736439e1ec7c081e1
BLAKE2b-256 5378f50ea0bcac68a9d4706933d4d391ac0daefec7e8c2f7d376ae7e4eb09ec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c58bc4007b595cc739f24338c969a52aa93c6744a9032382891b875f9a23cba5
MD5 c81ba691140b63cb68962108fc8542e4
BLAKE2b-256 029b844c4f25566f1a7db8d490f5c913cbe2d92c8d899de17a75972bda26ebc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e96739bf120b4b7c6bdf7dd13311340f622aaf7368a695d6e8c7ab07cd61755b
MD5 a66ea4d94f9dacf8acf2981efeddeb7e
BLAKE2b-256 2ff88cc42e654a1cc3f68a47b88c89c330cbaec26ad95b6736030a568b43c080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 563eafb8a4954a40ed3dfb3b935e36726da3c869cd3f65f0fa50ea68e12b079a
MD5 f6addf5b88b82ad8f0959fdb9f5fa765
BLAKE2b-256 092f283d0e548c5e4c89bece804114500a0202a939fd2b04b14a47f7f69a347b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a61122d7aec39b85cf8819d98017f61b9c2ea0619dea9ec66b423935559de2b
MD5 9d71718ed506d5aa4e4787bd7247fa0c
BLAKE2b-256 e81c47216c5bf4045cd5b2cf3ecb34920d8074062bc67dd7af258df317451694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eddd994be4fc66a93edcdbd55f71c18239b76cb4b8ab8e32cbd50951c379bb5e
MD5 acbc99695a21f8c2ad88921a184aaa74
BLAKE2b-256 4261f4d3292719aab10624582dd53e0ce6e12805a1d69759d1134757b0b9b9fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dbed6963235379c4dee310aaa63e590a02b61047a3f4af82e539e33909f0ae7d
MD5 7f4d74fd2a79ece79c58116d1df6fa1b
BLAKE2b-256 cc2f577de1ccbae5cf053bc104efc23e446c82d3360e4e45c5d7a17e5a38b98a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.37.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 739a43719f9e2a67e4b504e3482b9a460aaeb9d8f0eafc0cc6860732bd89e679
MD5 82c7e1cae75e117e01e1c179c846f1fd
BLAKE2b-256 c3bea678e2c2c99d721cd18cc10d39113a66dfcd5b79346444876a1b17209036

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