Skip to main content

A python binding for egobox crates

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]
res = egx.Egor([[0.0, 25.0]], seed=42).minimize(f_obj, max_iters=20)
print(f"Optimization f={res.y_opt} at {res.x_opt}")  # Optimization f=[-15.12510323] at [18.93525454]

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13Windows x86-64

egobox-0.31.0-cp313-cp313-win32.whl (3.4 MB view details)

Uploaded CPython 3.13Windows x86

egobox-0.31.0-cp313-cp313-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

egobox-0.31.0-cp313-cp313-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

egobox-0.31.0-cp313-cp313-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

egobox-0.31.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

egobox-0.31.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

egobox-0.31.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

egobox-0.31.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

egobox-0.31.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13macOS 11.0+ ARM64

egobox-0.31.0-cp313-cp313-macosx_10_12_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

egobox-0.31.0-cp312-cp312-win32.whl (3.4 MB view details)

Uploaded CPython 3.12Windows x86

egobox-0.31.0-cp312-cp312-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

egobox-0.31.0-cp312-cp312-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

egobox-0.31.0-cp312-cp312-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

egobox-0.31.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

egobox-0.31.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

egobox-0.31.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

egobox-0.31.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

egobox-0.31.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12macOS 11.0+ ARM64

egobox-0.31.0-cp312-cp312-macosx_10_12_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

egobox-0.31.0-cp311-cp311-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.11Windows x86-64

egobox-0.31.0-cp311-cp311-win32.whl (3.4 MB view details)

Uploaded CPython 3.11Windows x86

egobox-0.31.0-cp311-cp311-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

egobox-0.31.0-cp311-cp311-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

egobox-0.31.0-cp311-cp311-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

egobox-0.31.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

egobox-0.31.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

egobox-0.31.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

egobox-0.31.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

egobox-0.31.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11macOS 11.0+ ARM64

egobox-0.31.0-cp311-cp311-macosx_10_12_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

egobox-0.31.0-cp310-cp310-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.10Windows x86-64

egobox-0.31.0-cp310-cp310-win32.whl (3.4 MB view details)

Uploaded CPython 3.10Windows x86

egobox-0.31.0-cp310-cp310-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

egobox-0.31.0-cp310-cp310-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

egobox-0.31.0-cp310-cp310-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

egobox-0.31.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

egobox-0.31.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

egobox-0.31.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

egobox-0.31.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

egobox-0.31.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

egobox-0.31.0-cp39-cp39-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.9Windows x86-64

egobox-0.31.0-cp39-cp39-win32.whl (3.4 MB view details)

Uploaded CPython 3.9Windows x86

egobox-0.31.0-cp39-cp39-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

egobox-0.31.0-cp39-cp39-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

egobox-0.31.0-cp39-cp39-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

egobox-0.31.0-cp39-cp39-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

egobox-0.31.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

egobox-0.31.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

egobox-0.31.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

egobox-0.31.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

egobox-0.31.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

egobox-0.31.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for egobox-0.31.0.tar.gz
Algorithm Hash digest
SHA256 4693f44f5764c19ed6c4e8f306bb62680f1635d378dd95ffe70442257a6b5a75
MD5 10285dd314550aa4cde3d037aa310643
BLAKE2b-256 8d4ae7d482023a528e35dbb5996c89fc6d200e888c8bb58352f6cf126a1e834f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: egobox-0.31.0-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.9.1

File hashes

Hashes for egobox-0.31.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 708cc813557c8314d6ad025bfe08d2007954e9cbb9aa1711e896c56de8ccab86
MD5 62947a6a5d88ae7af766a6c693b314bc
BLAKE2b-256 1254f9ab78b5fabdd4e8c6043c92febfd06261cebe8279e1597f65fdf52818cb

See more details on using hashes here.

File details

Details for the file egobox-0.31.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: egobox-0.31.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for egobox-0.31.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0156586b503965326a9088b5711d9603e6580db9f7aa5460cfb55995f04a43af
MD5 97e9a915f38a881641665800d855e434
BLAKE2b-256 0a957d7e6c3226d52ed157f4d2813455bc116d57f713a0f6605a3aa178274370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f042c49b932ae0e96c532be7ec3b06e0a009b66306fd4a8847bb609808ab91c4
MD5 4c85b75248644bb968ec531ea612b8cb
BLAKE2b-256 c24803020f172e01dbaa01913d358346a9c3d6e84692484d2230b630647fffb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6d6a060771696e70b939a56df53cc06eed4293f753376d9e30e7b484ffd70e8
MD5 cd093b3d5ce9e3702d5ab739902b37a9
BLAKE2b-256 517403c14d952963cc9edd4f162b18a1849539e330d99a2b767ccef2ede5e262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f1ccce8cad42cba3a6b1190862cba01f0dc2e2ec98dc09667a0b4ebbae412a03
MD5 21485f37c8a3cf2655d409d5f73e24ae
BLAKE2b-256 0f6b09f771f1192311f90334003573cb79d2ba40e840c7b3fc2b2e1e4142e6b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12a8d40af2222e6b7e0b72c694ac4916ff4e69e786f51fbf4d67d939972d82c3
MD5 c5221328cb741658e5c30ca05039079f
BLAKE2b-256 f22d1348f22b8824b7e20fd1290cac53c88741136a60a737f9f163bdec843763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c4550d5e049529bc98be45a0b7fd97fc6e5995229085942d5c005d8569453c6
MD5 fb04260cd885c37383d2b98b5d430012
BLAKE2b-256 bede97b2d437a354ea3f8fef3bcacb0012650bf98db1422bcfe48200dadb38e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c2dbc95d288bb4adcb259982c82ca7b2ce61d82c32362a2eea38af7564d522f
MD5 4323886ea4cc499daf752b5640611359
BLAKE2b-256 34c76e4861b9be39781c7f35ebdbd5d1310110a530ad793cca50039a50876ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e4d17dcbb10a4ced53e44f68bd23bfe7ebe5ee1ed4bb43e138ff4cd1e827bd6
MD5 c175b80fd1a3d3f4f3c7cfbd653fae4f
BLAKE2b-256 732df5936f1eae076dc834f0711043f37942d1a3acb3b82601bc87792729edb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c30679982c910f72e265d31faf59e722fd6e07bb45d8e9c985d3bc9deaa23460
MD5 bbf665df6938cc496a23e9279ad0fc1f
BLAKE2b-256 0b3319fd52273160a0bc7e0d3121a4bb1db56ee688ec4f8d5fcaa24d5e77570c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6849c87da0eee131295b89d98a0b9f9962343176cd243fdf9b00dae0f01e249
MD5 091f304b75e1566f46ac088803ce959e
BLAKE2b-256 35dc27aa00e1a0d7109cda86ced8a7048f79824c937dd8b7e9e8f53e118db49f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49e11c47c8a43e38ff75a829c588729aaa869b110bb1837fd771b028111e2924
MD5 65be9729779274e46fbece0c665ad017
BLAKE2b-256 ef27f0552603df3fc48ec4232af758dae4e45642f90024abce39e46d1cc212f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6a19b1b7838f141b1d0e7923839dad6a277eaccf2efc14109edcce20cbf882a
MD5 9bf11e89abf9990314e5288d807eb5d5
BLAKE2b-256 abb75096e80c7d53d9ed0f8e235ceea00784004efad1d5d5b9a9b6a2b05e57e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f7f5c70afaf9aeaac03e8f41cd2846837e587be6a7c19b1e71f4e606fefe6b31
MD5 d88dd62f1882fdb78ce1d24391c01976
BLAKE2b-256 0309d5140ef3363fa7934f11cf593bdcea356e3f8bebf29da32b5c3152311e87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: egobox-0.31.0-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.9.1

File hashes

Hashes for egobox-0.31.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4ff93a16dcfc4b04247cf8c64cc6ea87ade5ddf58fb441cf42447ea7e2de9f8b
MD5 91779bf4ffc5b2ab07da3c6dda73802b
BLAKE2b-256 d7c17f5f027abc1a65685d76adc19522f76fb42d4844ff16bf21e8c874b4f803

See more details on using hashes here.

File details

Details for the file egobox-0.31.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: egobox-0.31.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for egobox-0.31.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a634dfa5aa9f583b12b3981a33b3bb6ed9df07b88e7257a62083d190a8b65f06
MD5 faa656c0410ad27e48e33c8541227269
BLAKE2b-256 c1ec7cf172a42c3b827af32226344df538539c6ee9c6102f84cda41d8019228b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e13217ed9e1d3602c909bf6ec158a795de45366a004629daedf06e64b0f2c800
MD5 c383422a0c17242c3923be1af272ca44
BLAKE2b-256 99aaeb15b2d8d0e9a250d026c78b2dccc332b4e438d66385e67fbc07b8a39c46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ad6200463d8eb71e945d90f022a84553ea2112335f95dffc2a15592cea3f786
MD5 43f66689af5bfb46cd0348d3679c98d9
BLAKE2b-256 149f01568291dc754679a6bf8253637f79f2eb49b46e816cb04d1e3341250b2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96fc50260ff1d47719a05d1e5fce1b40ef55a665ba12889347a38670fc090d46
MD5 22272ac2fe3ec94b04efafc881bb63a5
BLAKE2b-256 4a80a6d6d184eaf8b430e6df8854317a487931f2c75d8c9f12a3986fd9262121

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 647c2432730e542f10b4ce3621e3ce4ba6bf4be79ba6241522151b9d5aa29ec4
MD5 f8e68ab478e90d2deabaf38dddc95588
BLAKE2b-256 1934a4b8f993cb7375b1b33227b1020eda8069e0f0b32d5b469b17bfb0c90100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55301e56a82b3dc2107a427b92cd68e84ff0082252c6814e28cc615ba26e63aa
MD5 8093698428ee2958fbb8b16881959b5c
BLAKE2b-256 b57e9389510782bc0bc5ce45b382322b8131f4cf3040c5cc02814e67ee91d8cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1212013cd4c07458d6c4595d71059a552ce111ae8b0cbbab80bbc4006138fef3
MD5 6143eeadf3d8de60930c7106fa13c988
BLAKE2b-256 4be21176dcc954e8068f305f80f025e0fae29314bc232f798dd97a46cae434cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 51e1e8a73471f392e7656eaa78fd694658e1a7432991a806dae92f3e6ba5efc3
MD5 21a0330f71a2f39d933723511e4fdd98
BLAKE2b-256 6b6ec6cb8839a9b2980dd57036b6f81334fedbca2a15765f526d286f98fc4b1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7bf1e75394694b11f2f0bb623c7508ad8b26413cffb3be13e8909793dcf9468
MD5 1c29aa8b6c0de5fa7c4ac4dd3539a57a
BLAKE2b-256 b8ead0af5a2a68f8efdb65dab315cd3bffaf2ff0de643fceb306f3c163c75f0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25729b8c4be99967d598440f0de4d03fde7c54401e8e4ceffe2dfbf87a25f9e3
MD5 25625870b210096de0719cc42390c567
BLAKE2b-256 6633f0b79b9fc3a2dd8c110ed93aed33fbfa0288f0202aa160e692ddfa73919e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39036ac3e1389383aaa04b6d5f8b1e26ca2e04a6ffd789708dadffe7785449be
MD5 9b5d567ae99f5eaa058d054a10261ed1
BLAKE2b-256 45e186baea42f5f3650ef245cb5a61b7aad265c66ef4b675f5a746e0a9ee6c4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a35cf08c44dc8b192cdbba6417f100b5eea78b73fd9348a511960333f35c21a
MD5 414d2fcd9bf3ceadcda0e8d70468dc9b
BLAKE2b-256 83746e8daa0c1358b67586cc9c0d99800a31df9fbc932851331ff50a0759e5f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ed13f1fbce93bf21740bbd5e80f023b488ed0ec69a3d056ae3f12b4c31f6a8a
MD5 2f9ee71a2633dc5e554e84a8330bab55
BLAKE2b-256 d34ca3672e1f466380412ea6f2efba6b1f0af350588398f451d6669d770abef3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for egobox-0.31.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 31c701e8fea90d7b71fa4f3b666fbf64a4fea6e8f47586dc7b34ca5ab33ad21f
MD5 9c4b1ad30a6927a2ff73c3de8e6c511b
BLAKE2b-256 2a3cabe7355dcccdde59b58c37806a2808f4aaa01a09652ca386a5f442110fbf

See more details on using hashes here.

File details

Details for the file egobox-0.31.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: egobox-0.31.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for egobox-0.31.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b3be32c50effc20d019e641ff4e02f6354a3c027b723f9f9093ae681f384d184
MD5 06a9cc3cf79eb1f1b5f59642e5e0fb4b
BLAKE2b-256 f4ad4b10c0f832dcd6f64a3b7319aa02f359ab5ef3ebfd14b528afe9a436f5d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4979a368911b7c21a49b1de057aae11e33f6ee3dee757a725969887a77c3bfd
MD5 beb2f391c996591a0876832b61e7b183
BLAKE2b-256 da00b2ecb543316e6c6436c1ec4a762db953bc5aa12706cde824607b1048ede1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e7e1f81bb60cd8601d7c2fbfc3578b8f3531b6ddb51c49e5340e9edfca4a94e9
MD5 ef84606dc3718a9d372f3acf98f8a256
BLAKE2b-256 686c809f40d5526a84dc31c4c6252fd7a28e73bd3535535849270f1fbdbf58e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0a45c2eea82b6ede631d9ab576ef08ab7c08037c197af04a356ca6102808d1cc
MD5 12f085f1e244a20d1e5297ad2ab44972
BLAKE2b-256 191a5978576df5c2ff1d5dc7afcf8d0a6eb099300617db4f69b4504dc4fdc04b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b8d5d3edc85db538df25864ca327e0cecd03720ef4f057136b795cb3f1f8438
MD5 d155c1118defb60024218e0a1b7b18bb
BLAKE2b-256 7901edb9874782c42beac301089c8cc8f05395f417f14a8eca7f99ff365c1169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89a108ef6d48abd5b4d60b5c9deb8a25a0b868ae6c5948642710737a42c41902
MD5 72408f84884f6803790c18f4bbb4557f
BLAKE2b-256 217ce75de195b39fe3c30602fa521eb78970a9ef27fac657869cd9c784464f0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6923684f322126cef40dde8c291f4438ec0799a048aa2b7f42d0d7fb313da2aa
MD5 62f92b70887d54d0435778dc2fe0057a
BLAKE2b-256 57efe11c7e9f7b94c8368cf4f2aff382e17b1173b338b7478f4e8494ea962f07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b57531ef3b4f80d74e8039ac9a03ff686133f5846c4c06f956fab38eef96d68e
MD5 2c921782c0792d24e9fbf8b19f8f5857
BLAKE2b-256 f0084a12a430b41bdc531f792b18558aed9352a164a003f5bb69fde9a02a3107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45eb0ca6663a800524d03fa9270d0fb1f163f23aff9aa49c579847f0ea6a5277
MD5 bbe8296008597256b3fa59d7523ba970
BLAKE2b-256 b53993f262808a02252b1945fe7b177d40415fd6e42ef76c75122dce4924f9d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c6811f0b0992be8f743d40a3dd6afad49575ef0065850c0daf2e0a925c6df23
MD5 eae60caf8c717cbbcc616eb070f5aade
BLAKE2b-256 441ba684178374ef48b47c36485999ec62213725b0f39bb84d73caa4eb5ccb04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8d433c06fb676ad3a553c28833e08ebfa1872c771d2fd05f651bbdb65b0cd37
MD5 c7f4ebc1dc30dda5af88850849f8a462
BLAKE2b-256 163b953a1c9fdad9f2d3c9d3428d2ee1d77e4498ed90175579252e2c4de85b94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c208c9cc8acc9c3c5feb082e7f4f4bc34cd1d16b5fa8622ffdbfccd9099c9280
MD5 4979c3e9ca656ca3ad543ec376a72871
BLAKE2b-256 571632bdf01bcb22fb25c7d94169a19b2df20c1fb2f5c0fdefc2b184bbc515ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2c8b7eb9b8ba1a156208a7a2aa3b4e463a1443ad84d6e6d355ff30340fbd3fb
MD5 457deca1d06c12558ab9390fe8a2a2a9
BLAKE2b-256 7ea555ae9fc53dc9638e865a5f3145e34dd2a418c514df6b3fb0299978bf965e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for egobox-0.31.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8b81e1866fd69e15cece836d38327d8ed9af1aeb4ea3c5da7ecb64a7f58bf181
MD5 bfa5a0479b1b31f263c7f630d1935c86
BLAKE2b-256 2635b1a5ee2186afc3752c3fda8a52a4b796a6b85162f198b60d0dc8a5b63a88

See more details on using hashes here.

File details

Details for the file egobox-0.31.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: egobox-0.31.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for egobox-0.31.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f44e05c823054c596dbd3ebb6f21a62cbf816fec58dcd2e22bc97433011d158b
MD5 0cc49b52662a28c17123827f82fdaacd
BLAKE2b-256 c7c25a6fe17383be81ec48fe0eeaa3b0e6ab76f183c96881309ad46f9cfc5a9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d0b04123b45732e55072cc097a616b09e3874b56cdce7d582271f2177017077
MD5 c32ba03ef2e447a459fbcb45533fedc4
BLAKE2b-256 1923dd3f1bd40deb8ba4954a5b14164f878d905a30074a6bf9d3f71a92532fcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 268b8beaf794c8af6b882890206f788bd3ef181c68340afddc5c6b2b923e9639
MD5 31d10def54d3156e4470d5382ea2b3fb
BLAKE2b-256 6f36eb1755d5052d3e3f400fc95cf0fe9f86be631991505bfca8e7631fbe5d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c9967c95e4b79dbe2641c88eeee8fa3e1e4b88d96a1ff7acb5c03ee862aa038c
MD5 b9c47f84fd2c06d0a8814d5638c18a67
BLAKE2b-256 31861e226216b972ead813ccb74e0bf81f46db2fad54b597403e3df458921a7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8268fc2f7798e4f505c9d8085de28cbece2f3a6cb786dadf3b2e3e8bf13c5c20
MD5 4d2ee7daf66b5a724649e215fe963012
BLAKE2b-256 e42aa0f613a2011b3ee11f795d302ec75aa0781ca65adc88fcdfa1369ae480f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3408853e5e3aca564a9b9ea3c432347d9f7c7447c03f25abe9120179c19425d
MD5 22b7bd91b680f66753ebf85a10c1c3f7
BLAKE2b-256 e0665c6dd91694b0e67f4bff4a2420b01cb27a725ec050c8132f0ff955c7ec67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ecc5b98fb7f7b2b34764b84dec967a156dc611d97cff2e9f339ca92a10409173
MD5 7d64d78c9e3b466d3828548b8cb7c2a1
BLAKE2b-256 ddde7620ae5cbcbf7954a83ffa9553ff530391e5e70fe5161ea42387ffd3f93e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6a738e3f2d77db91953419e3a43521defcfd9faf2686c0633a2e7a389f6b916
MD5 6873507bb50da28cb2a6a148d0fdc77f
BLAKE2b-256 addc407e5d7c0de95e27d5b74cd982c414f18c8efb8e3869d9162310fbe282eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 68a79c890d8ff4503fa32856105c66a4e317a5e7be732c79d647d940f61748fc
MD5 67e80070cdc27a18354395ed3f42fff6
BLAKE2b-256 aab5deac22d260cc90ff52bebd7497d93f84881843a71534aecaa6d659eeb2e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 588a41fcbebf6095e9fe227b6d801c970e13230bcc4824cc64146c17f7621bb1
MD5 c2f10549dbd165d87cdf9a41e47c5e68
BLAKE2b-256 00a9f83cb6d0bda2926918c3ede23582efc6510e95fe2204c2eb114799f11117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for egobox-0.31.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66d625c8714c21b1b4fe6aab5ecce836a424619e861b888cc44063e94fe67703
MD5 697aed1257567e46e1c1a9c78b650736
BLAKE2b-256 e540230fd207bf49abd7937f4ff67b8d2357e397f296569f04b8107ae13e002d

See more details on using hashes here.

File details

Details for the file egobox-0.31.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: egobox-0.31.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for egobox-0.31.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f396a49dfda48e549431d8b207d7b4b6b39f1838c0fa38b045c5fa0dc85d7686
MD5 b014326f8badd46aedcc6b21a8d72bd6
BLAKE2b-256 6cbd93cd58a17756c97332af2655652a2addf703fbd5a25ba3310f55cf1bea9a

See more details on using hashes here.

File details

Details for the file egobox-0.31.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: egobox-0.31.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for egobox-0.31.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5deaa9b2ed931a7b49440154b50a89e444581cbd12212f335281c2dd143da59a
MD5 33fc374aa92251d08526e052df341fa6
BLAKE2b-256 5ad3b4a050106598b0ae45cac7ef041c888833e6be447e43d3fc2c3deda830f2

See more details on using hashes here.

File details

Details for the file egobox-0.31.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for egobox-0.31.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7430bc62dea9f60465aa852827fc3e54573c8c32fcf8153043eaa97468bf6389
MD5 60cedaa3ded6e8cca86f38c2fcc5d8c5
BLAKE2b-256 fef117427d30b2199af2fba37aca18553c1a15691fc6e9b8115860019b6bdd0e

See more details on using hashes here.

File details

Details for the file egobox-0.31.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for egobox-0.31.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d433f2499a80a16fb0604cb99d8a93d55a0f612330ed8e5f11905658c8ea095
MD5 4c094beda0fcec47221f106ca98eaa6e
BLAKE2b-256 bdfd3e7593bee6044d7da6375b7db82fb98b2915b9cd5d6995382e986ffd0b56

See more details on using hashes here.

File details

Details for the file egobox-0.31.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for egobox-0.31.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4fd7616ee24abe75b8cf46d445e6a0c97504665d7fbd4ea8d96a3ef1c25291a9
MD5 b7dfe2a1f1b8323d5352231a9af19f02
BLAKE2b-256 18df2033ae63552147e823a9d034409b51911ee91245a77d9566070acb6050ae

See more details on using hashes here.

File details

Details for the file egobox-0.31.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for egobox-0.31.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbbfdd0a521da6be39367cd76ef276dff0c3d7a0a9bdaf0a314404b1022cc1cf
MD5 0e2e067f6f730106a9e1049d11416ff4
BLAKE2b-256 f206419494b5c372cfd2fe28a8b75f0a2f58cb4fc344e63ef976878ae3048f6e

See more details on using hashes here.

File details

Details for the file egobox-0.31.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for egobox-0.31.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f5a987a66c3c7bc6d84f8797f9bdc750e0d89548a65c259c0e581ae07fb5e36
MD5 97a1c82c96e0707871099ca3b974338a
BLAKE2b-256 d9b5da79a22935bf17452815917dd9ec5086cd2486b73c3d5b42996baa0f9f62

See more details on using hashes here.

File details

Details for the file egobox-0.31.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for egobox-0.31.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e81b7a9f42aff0506d932566f1036ca0d38d32f1a49760f18ba4292e2992bc24
MD5 5f507fa194abb229c9da5fb04154e7b6
BLAKE2b-256 f6957abb022ea5883f5e22918b91f4520426d517ead872d3ba211dc46041d550

See more details on using hashes here.

File details

Details for the file egobox-0.31.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for egobox-0.31.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b221d1571b90dfa314432c9bccb550761dd57159afe7f482a9702b53cefda72
MD5 268938df2cfdc610da73ebeb383bcda9
BLAKE2b-256 e031b2d25ea48d075e573ae4bf248989ddce84edaf7892495adad1ec0bcc7239

See more details on using hashes here.

File details

Details for the file egobox-0.31.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for egobox-0.31.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9f7d5a5a8fdf191e8a6502dd65d6decb7436b74aa17c609c2c6c5436637df18
MD5 39a784785f86dcccd5bf8749f279f619
BLAKE2b-256 c7e76ec1e3fc0a2e4f17f72a815022f72252ccf3fba7227711d9f018267418e6

See more details on using hashes here.

File details

Details for the file egobox-0.31.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for egobox-0.31.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6b044d9ebe26048b15686b43fbe5d5477e15e8dcb668c9ae3cdb237f24e6e0e
MD5 f31cf4a1dee2c07c015927fe447cbe58
BLAKE2b-256 3c93631259105d423989c50f8db32238c7d92d300411e9243d075479eed0e43a

See more details on using hashes here.

File details

Details for the file egobox-0.31.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for egobox-0.31.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1cfb97d57d6f7fceff540a7b975fe9ddc04a3e15d212394ed959c078a9ae322
MD5 67502615b54a708fd60475acc3d139e5
BLAKE2b-256 d07c26a7c87d046fcee847898957b5bbb4dc15d306609ec72c046ee0c374c2ff

See more details on using hashes here.

Supported by

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