Skip to main content

OneBatchPAM: A Fast and Frugal K-Medoids Algorithm

Project description

OneBatchPAM

CI Python 3.9-3.12 PyPI

Implementation of OneBatchPAM: A Fast and Frugal K-Medoids Algorithm (AAAI 2025)

Install the package:

pip install git+https://github.com/antoinedemathelin/onebatch.git

Minimal examples

From data:

import numpy as np
from onebatch import OneBatchPAM

X = np.random.RandomState(0).randn(10000, 2).astype(np.float32)

km = OneBatchPAM(
    n_medoids=9,
    distance="euclidean",
    batch_size="auto",
    weighting=True,
    max_iter=100,
    tol=1e-6,
    n_jobs=None,
    random_state=0,
)

# Option 1: fit + attributes
km.fit(X)
medoids = km.medoid_indices_
labels = km.predict(X)  # or use km.labels_

# Option 2: fit_predict returns medoid indices
medoids2 = km.fit_predict(X)

From pre-computed distance matrix:

import numpy as np
from sklearn.metrics import pairwise_distances
from onebatch import OneBatchPAM

X = np.random.RandomState(0).randn(10000, 2).astype(np.float32)

# Build a (n_samples, m) distance matrix to m candidate points
m = 1000
cand_idx = np.random.choice(X.shape[0], size=m, replace=False)
K = pairwise_distances(X, X[cand_idx], metric="euclidean")

km = OneBatchPAM(
    n_medoids=9,
    distance="precomputed",
    weighting=True,
    max_iter=100,
    tol=1e-6,
    random_state=0,
)

km.fit(K)
medoids = km.medoid_indices_
# Labels are available after fit via km.labels_
# Note: predict() is intended for feature-space distances; for precomputed, prefer km.labels_

For visualization:

import matplotlib.pyplot as plt

plt.scatter(X[:, 0], X[:, 1], c=labels, cmap="tab10", s=3, alpha=0.4)
plt.plot(X[medoids, 0], X[medoids, 1], "ko", markersize=12, markeredgewidth=2, markerfacecolor="none")
plt.show()

OneBatchPAM example

API notes

  • n_jobs: number of parallel jobs for sklearn.metrics.pairwise_distances.
  • random_state: int or numpy.random.Generator controlling sampling and initialization.
  • fit_predict: returns medoid indices (not labels). After fit, labels are in labels_.
  • distance != 'precomputed': batch_size controls candidate columns; 'auto' uses a heuristic.
  • distance == 'precomputed': pass a distance matrix of shape (n_samples, m) where each column contains distances to a candidate point. batch_size is ignored in this mode.

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

onebatch-0.1.0.tar.gz (171.9 kB view details)

Uploaded Source

Built Distributions

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

onebatch-0.1.0-cp312-cp312-win_amd64.whl (245.3 kB view details)

Uploaded CPython 3.12Windows x86-64

onebatch-0.1.0-cp312-cp312-win32.whl (232.3 kB view details)

Uploaded CPython 3.12Windows x86

onebatch-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (637.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

onebatch-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (613.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

onebatch-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (252.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

onebatch-0.1.0-cp311-cp311-win_amd64.whl (244.2 kB view details)

Uploaded CPython 3.11Windows x86-64

onebatch-0.1.0-cp311-cp311-win32.whl (231.4 kB view details)

Uploaded CPython 3.11Windows x86

onebatch-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (640.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

onebatch-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (634.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

onebatch-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (252.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

onebatch-0.1.0-cp310-cp310-win_amd64.whl (244.6 kB view details)

Uploaded CPython 3.10Windows x86-64

onebatch-0.1.0-cp310-cp310-win32.whl (231.6 kB view details)

Uploaded CPython 3.10Windows x86

onebatch-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (613.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

onebatch-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (611.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

onebatch-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (252.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

onebatch-0.1.0-cp39-cp39-win_amd64.whl (244.9 kB view details)

Uploaded CPython 3.9Windows x86-64

onebatch-0.1.0-cp39-cp39-win32.whl (231.9 kB view details)

Uploaded CPython 3.9Windows x86

onebatch-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (613.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

onebatch-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (610.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

onebatch-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (253.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file onebatch-0.1.0.tar.gz.

File metadata

  • Download URL: onebatch-0.1.0.tar.gz
  • Upload date:
  • Size: 171.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for onebatch-0.1.0.tar.gz
Algorithm Hash digest
SHA256 fe60a257227c95b72ee44dd04a0cb14e47bdb78ffafdc0e9561f961f248be899
MD5 1d8401b434487876048ff158b62ca7ea
BLAKE2b-256 b2b830ae5795174763ce5f2e25170477f18fcfe7034ff6196d9155792edb1c9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0.tar.gz:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: onebatch-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 245.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for onebatch-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ef0949c8b8bc36ad32a5b8a48821dbce4ceb6b478468ae1255fd9b9f2a3b6d78
MD5 a508081ee8336f64fd6347550e84fc3a
BLAKE2b-256 47d91c3e916a69593123a51f807c3c41afb52ec8ef39fe9f4f0c7733c097554e

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: onebatch-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 232.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for onebatch-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cb3350d66b8b83b8ec15088fa172bdabdcb4d400290f7d83858b7c961036518c
MD5 8f63849c3784bdd18d522894f4530064
BLAKE2b-256 85ab203111f2c94bca6ea81b1309cc33ef238491d6d6d218fc87b89f93c0708f

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp312-cp312-win32.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for onebatch-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 540b48c8c8f55cf04c7961a708973c717015b5ebcc4ceaa5179564c93a0f0ab7
MD5 0965ba8f13d0dcf2db62acb776f45277
BLAKE2b-256 489c853a75987b15a376ab7cb379f5b87cf3100e467fad0e653e9688c0f35926

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for onebatch-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39713a097dc518e7444b4a089c869fdd41ae36f7e3cd7508fa7adf04671c931e
MD5 98f9b034287118014b040be1455414a6
BLAKE2b-256 277e49d1bf67019248f1f7455f1709a6f2b5b03ee621dfd8806d1ada78a12783

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for onebatch-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d5811d3f199fcb46ab31f33185d591a44aed2d6cf076a7235a527b47e7af200
MD5 793c393ed621673ac8ac7fd6caf4a51a
BLAKE2b-256 1da3a8492c3ef005d006d26c09a0fc0b779b54e802d1b7d751a580f7d676f5cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: onebatch-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 244.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for onebatch-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7f76dd15394db8d3db40f94c314238404706f085f643495bd1848127bc92301c
MD5 f6ff78cb06fd4695ddf27412c74f01ae
BLAKE2b-256 4378ed31dc2bec1b3ef687fa9a6ab99ee191946cc77267d6f8da78d26253dfb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: onebatch-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 231.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for onebatch-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2e1f42727e876a900bbe70d5798da283e4e9e14b14afbd1d98cae5b57186b2d0
MD5 0dad2207800d3c5855d9af98307fb952
BLAKE2b-256 7f0eb4d1db10a281bec3ca43a831dfebda66e3f48a1f21ee19da9f1b09740215

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp311-cp311-win32.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for onebatch-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5ecf6c36463ba7f3a2619124ab950e6f6f484005857664c99c4ab18745a5719
MD5 79bef37c1fc3c2dab2b0f99127f1ed57
BLAKE2b-256 30fe1f4c15082200da87eecb1253637ef6ecc53c71ae44206b71c1693f11966e

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for onebatch-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 da28728ae3120b351bf55a172543476853040cb9c0ff57e18ffdda3d201a24a3
MD5 e0cc5571c39c26fe3557b50a30f09491
BLAKE2b-256 c26a8282d9c1a7f62f2ac8950111bd66dd49a4580cf8fa0ddd30870ef41e137f

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for onebatch-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 722a43a0ed4475d5685cecb899368ef4ee33565085c53d489f0c066e90fdd5d2
MD5 c0736d1d0947f5b94d1d62496691b5c6
BLAKE2b-256 671f89a0e10c62d767998c494156c89eaa4f72702f6b61097a7f26cd50871e59

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: onebatch-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 244.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for onebatch-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6e25916c5e9e5df7f7cd2b0c3e8b4374ac8b17364d347024b51764b6d3d17faa
MD5 c6de08f7e548f5ea19142c34996d053c
BLAKE2b-256 b8562f987f754a8aadb16a5ed80b362eda29a43d935357f27540f05965d501c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: onebatch-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 231.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for onebatch-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ce4e1036b7db23175e497b1351339b137ad52f40bbf60fd35c937960e4b9bf09
MD5 42a4e2b4fdbfd2e767bd833cac882f68
BLAKE2b-256 d25291f94f46637ee5c159de58d13b359eb3b136a0b4a7704e8ff7df633da3f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp310-cp310-win32.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for onebatch-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a0a8abe96dbdfa61d5b462265c9ea8345356fa5d369c2649166a0307c5100d8
MD5 e22f2f999597625104ba415e74a481d4
BLAKE2b-256 cdabb1d6b23e83f5f05fb40dc5c9489f74392bdab88ffbea559a19f5cb6b0369

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for onebatch-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5dbf47de4a1fb7ffc070c211094ccbf7063d6ab7a0793a68e47974572c42c6b5
MD5 cfa3750939785e9826b9d3ec29ff8309
BLAKE2b-256 ca6151f2414816c7d21089cd6fe44a19e8cd02de06633c0ceb75021444fcaa05

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for onebatch-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e95796a4d359d1711d9270713fcfff26cb4f16ec43ef7495f11be31a755f557
MD5 814a51a9f5d85f41199dc4f3cb21ce1e
BLAKE2b-256 a9d8dc0ce8a66a4364b0c7e61ebfd97387f36cdca6070fb9dd4f7560bba8cd76

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: onebatch-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 244.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for onebatch-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 356eeb59a52a64c07bbdaa3f4bfa80ed711fd59036e40b964197847b5466cd3f
MD5 9f9baccb98bdc98f5dc08a6c2a2bca4b
BLAKE2b-256 9974e0bfa945bc512d93396baed04754bb142dea444fe5b0e56b9ed13af7bc01

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp39-cp39-win_amd64.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: onebatch-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 231.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for onebatch-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 eba90c4c68cb75b06de8189554f83e007a26fcdec64df19fc9db19c44ca97062
MD5 71594bd26e57a39e193a6072aa1ee661
BLAKE2b-256 d625e3c4917ebd29f55cf2c6afddc4715b4be5ef66a5cad246dbce9e82808341

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp39-cp39-win32.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for onebatch-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6567b41f921524cb6bbb22f15c886c553cc8eb2d42eba6be8030df7f85f53786
MD5 03a59e474aa380547c05e13ee8115c76
BLAKE2b-256 bd83c912ba12314ea3c295cc5d7c6ede3e3bced566529acadf53e3b251aa725f

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for onebatch-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bedd5a2d2b4c3cb63776e48a86513df1cc6daef6464586e77d4d65fc2286f970
MD5 e8de40938b45773b82e9daecb1c1b122
BLAKE2b-256 6299d11c7a2aafba31bac0ed3cbb1ba9adcd7be0f3792f4d93bcea0cf4b2ecd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onebatch-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for onebatch-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c00a813a44ca36a36bbdd2a880cc66b9b00f4a2089f412a93d0853c8582a1b2d
MD5 02d2224cf4e44679dd3ca1d0c37252cd
BLAKE2b-256 4da30682e75da825a0841f4d7dab27e709cd1e3de171f8efce38d8bf2b5fcbcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for onebatch-0.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish.yml on antoinedemathelin/onebatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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