Skip to main content

Python bindings for the sqzc3d C/C++ library.

Project description

squeezc3d — sqzc3d

English | 简体中文

CI

squeezc3d, aka sqzc3d, is a high-performance C3D loading library focused on fast chunk materialization and predictable array semantics.

  • Chunk-first: contiguous (T, P, 3) points + explicit valid masks.
  • Clear selector/index-space contracts (labels, type-groups).
  • Optional modes: streaming reads and .sqzc3d bundles for cached/low-memory workflows.

Quick summary:

  • Want arrays for analysis/simulation: pip install sqzc3d then sqzc3d.read("trial.c3d").
  • Want confidence before switching from ezc3d: read docs/en/user_guide_correctness_compatibility.md and run python samples/verify/verify.py stress.

Links:

Install — Python

pip install sqzc3d

Quickstart — Python Easy

import sqzc3d as sq

v = sq.read("trial.c3d")  # default: points=ALL, analogs=ALL
print(v.meta["n_frames"], v.meta["n_points"], v.meta["n_analogs"])

pts = v.points              # (T, P, 3) float64
pts_valid = v.points_valid  # (T, P) uint8

# By label (single marker / channel)
ank = v.point["LANK"]              # (T, 3)
ank_valid = v.point_valid["LANK"]  # (T,)

emg1 = v.analog["EMG1"]              # (N,)
emg1_valid = v.analog_valid["EMG1"]  # (N,)

Quickstart — C

#include "sqzc3d.h"

#include <stdio.h>

int main(int argc, char** argv) {
  const char* path = argv[1];  // assumes argv[1] is a valid path

  sqzc3d_dec_t* dec = NULL;
  if (sqzc3d_open_file(&dec, path, NULL) != sqzc3d_STATUS_SUCCESS) return 1;

  sqzc3d_build_opt_t opt;
  sqzc3d_default_build_opt(&opt);

  sqzc3d_chunk_t* chunk = NULL;
  if (sqzc3d_build_chunks(dec, &opt, &chunk) != sqzc3d_STATUS_SUCCESS) {
    (void)sqzc3d_close_dec(dec);
    return 2;
  }

  printf("frames=%d points=%d\\n", chunk->n_frames, chunk->n_points);
  printf("first x=%f\\n", (double)chunk->points_xyz[0]);

  (void)sqzc3d_free_chunk(chunk);
  (void)sqzc3d_close_dec(dec);
  return 0;
}

Benchmark summary — materialize

speedup_x = ezc3d / sqzc3d (higher is better for sqzc3d).

Case Language load_ms speedup_x peak_rss_mb speedup_x
PFERD (117.96 MB) C++ 11.4x 5.5x
PFERD (117.96 MB) Python 14.8x 6.6x
DOG (4.23 MB) C++ 9.0x 3.5x
DOG (4.23 MB) Python 13.0x 2.9x

Full methodology and results: docs/en/benchmarks.md.

Acknowledgements

squeezc3d builds upon ezc3d for C3D parsing and parameter tree handling. Thanks to the ezc3d authors and the Pyomeca community.

Generative AI usage

Parts of this repository (code/tests/docs) were developed with the assistance of generative AI tools. All changes are reviewed by maintainers; please report issues if you spot inconsistencies.

License

squeezc3d (abbrev sqzc3d) is released under MIT. ezc3d upstream license is MIT.

License & third-party notices

See LICENSE and NOTICE for dependency/license notes, DEPENDENCIES.md for build requirements.

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

sqzc3d-0.4.0.tar.gz (176.8 kB view details)

Uploaded Source

Built Distributions

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

sqzc3d-0.4.0-cp313-cp313-win_amd64.whl (308.1 kB view details)

Uploaded CPython 3.13Windows x86-64

sqzc3d-0.4.0-cp313-cp313-win32.whl (269.2 kB view details)

Uploaded CPython 3.13Windows x86

sqzc3d-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (558.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sqzc3d-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (601.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

sqzc3d-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (330.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sqzc3d-0.4.0-cp312-cp312-win_amd64.whl (308.1 kB view details)

Uploaded CPython 3.12Windows x86-64

sqzc3d-0.4.0-cp312-cp312-win32.whl (269.2 kB view details)

Uploaded CPython 3.12Windows x86

sqzc3d-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (559.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sqzc3d-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (601.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

sqzc3d-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (330.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sqzc3d-0.4.0-cp311-cp311-win_amd64.whl (306.8 kB view details)

Uploaded CPython 3.11Windows x86-64

sqzc3d-0.4.0-cp311-cp311-win32.whl (268.0 kB view details)

Uploaded CPython 3.11Windows x86

sqzc3d-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (556.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sqzc3d-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (599.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

sqzc3d-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (328.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sqzc3d-0.4.0-cp310-cp310-win_amd64.whl (306.1 kB view details)

Uploaded CPython 3.10Windows x86-64

sqzc3d-0.4.0-cp310-cp310-win32.whl (267.0 kB view details)

Uploaded CPython 3.10Windows x86

sqzc3d-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (555.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sqzc3d-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (599.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

sqzc3d-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (327.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sqzc3d-0.4.0-cp39-cp39-win_amd64.whl (308.0 kB view details)

Uploaded CPython 3.9Windows x86-64

sqzc3d-0.4.0-cp39-cp39-win32.whl (267.3 kB view details)

Uploaded CPython 3.9Windows x86

sqzc3d-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (555.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sqzc3d-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (599.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

sqzc3d-0.4.0-cp39-cp39-macosx_11_0_arm64.whl (327.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file sqzc3d-0.4.0.tar.gz.

File metadata

  • Download URL: sqzc3d-0.4.0.tar.gz
  • Upload date:
  • Size: 176.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqzc3d-0.4.0.tar.gz
Algorithm Hash digest
SHA256 ebe30e8670694cc9e0ac4f270679c38bb5390963723018d7a8aebc802a7d6388
MD5 9e9f3da1f763bae96c3aebe01b5d7908
BLAKE2b-256 8b5ee5af22f956c5b0f7f2acadc54e2c9370ba299eaf300e399120d9795c0094

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0.tar.gz:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sqzc3d-0.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 308.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqzc3d-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 426ea0d63a2fb8d406264a89d54f5c6d30c90aa52af7faad4ca8723b2f914f4c
MD5 b45bcf2e4bed11248b354b2577d85f62
BLAKE2b-256 c14abbaaa3bc8c5c10b6538e418bbadccedf607a7da62cd92aa349d78fd038f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp313-cp313-win_amd64.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: sqzc3d-0.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 269.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqzc3d-0.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1793247dd33589306479787d4cc5d8b0295a1295d499b4875f8a9c2d6175dd9d
MD5 ce1d62f4d2b346c26e151be8b31da0d4
BLAKE2b-256 91c6d78d40200cbad2eeecad5e5415fb87e218d57de8f901e96f0262f31f52e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp313-cp313-win32.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sqzc3d-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ef477428d79c1dbd84bd8c1b4bd358a53ad6b653baf49ebd3390816030cfc3b
MD5 32e6756117e43240e2a0558316a42371
BLAKE2b-256 dfdda2a4441b35852970c6c0b0e369eb56ad6ec4998573bf0cbefe238519412a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sqzc3d-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c00d55be2091dd29755c9792a220871c9e0a9d9bcc4afe4d33c699a7fd45010c
MD5 f4461867b80109b5222d96a8d1875332
BLAKE2b-256 cb67e2e30ea66e0062ba4f073873e7a098d12f78317f465543f83cc97a301339

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqzc3d-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93a2a3af69be67c27da34323cdfe27d42d8a4a753e0d5840dab8a13a0974d1dd
MD5 be474633dc57c1ca081173e5327e5dc8
BLAKE2b-256 5f2b029640c6b4a3c81ca0f1215066ccbc89d3e9b78d1e2d8b005d3b50090d87

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sqzc3d-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 308.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqzc3d-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8a70d276fb0b615f0c2372ca86bbc9e9c3812ce842530d24dfdb8400f3554093
MD5 4edb47fefa3a0fca1cf07b5b8d7ae782
BLAKE2b-256 9fb6632c01db409f2789a0d8e807a893d182726b71b0edbea82b8950e137d2e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp312-cp312-win_amd64.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: sqzc3d-0.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 269.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqzc3d-0.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 257bef3c0f5757a823be1306e4a4595469b24f2d5d063cdee8bcd55e5094b107
MD5 4d71c782d9c2f1afc074fa9a0688f7a6
BLAKE2b-256 8c422e7c49de98e09e91297ca12f13048cd68598abf86e71ce5e699a409ae15f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp312-cp312-win32.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sqzc3d-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60f6de0a51a7b127da30030ffdb984d2df4c59b186a6f1105f1700ba75d5ab5a
MD5 4c83fd744c0cdfa227eaf2607cbe0c27
BLAKE2b-256 4bf90d43e7d2d7a595603d3d976059ef147284b2f959ab974f66162a4be97cce

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sqzc3d-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d40dbf08dfb6e859e785a7abee95badfe44e0ac504fa5e6c8e1c2f8c729aaf58
MD5 295f933429c75c2178f93f98a9fa712a
BLAKE2b-256 b725ed6951848c8d87509caec93d7b0d28dca3b4f7184893e1bf081d0edfea58

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqzc3d-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d9435f8eae62bcd0dbe16ac30568382472b5e4b4c3d040de68c42049cce0f98
MD5 4c19c1fe310b5277344d7e55a3a278cb
BLAKE2b-256 3e2253709b0663f476983dd4f9aa11c461ff547d39fb97b5108d858898ece394

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sqzc3d-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 306.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqzc3d-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 74561f3c65cab01789fb1301a48781eafafd7e298cf6819772b11b29a86e6f0d
MD5 571a7d2064bbdd6f8e261a72259f89b3
BLAKE2b-256 43b696080e1f8247958a5433fb8c944a63772a127bfacc202274ca5e3b8393d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp311-cp311-win_amd64.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: sqzc3d-0.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 268.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqzc3d-0.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 abb9df36197dc111a7c1f0020f72ed6512cd10caa53595b2f433f4716bc01b08
MD5 c1896c56c4624af1ad8cd9439dd8c8ab
BLAKE2b-256 90e4f163f98f9928f380d0e6d5685221bb82f5f332c648a91c8ed1f19e345ae1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp311-cp311-win32.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sqzc3d-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1e6fbd778c62533e4dbd5e400623a751510d44ab62e0f19bcd3885e144a5eca
MD5 ee33561bd70a5b21cb2eb69cdc219752
BLAKE2b-256 3d41a07c3754cf5fa031b56d2f80896e86f2e2b610d770119ed91d40ea1193ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sqzc3d-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7bd59fdcc605ac061a07e9f3e6d61d4471b0f1ebe205aaa2a1193250fe343900
MD5 44e3bc7b9f6a2cf1b09e4cbcabc7acbb
BLAKE2b-256 2eec52e19d2c7dcff3d39837335a3c958ef1ae025965a7b681ba9da3e9d59733

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqzc3d-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31b58071d942afd0b28c3d27a59eb080fbf3c0d83bc0ee9c08fd6847d38e5283
MD5 5c90dadb3604d1e1019b5094509ccba7
BLAKE2b-256 8cfbf94fabdc693222a3ed11cc585954435b1106441de431c1b6f4b9a03dc823

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sqzc3d-0.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 306.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqzc3d-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f13600ff12302c109de8aa7cf2e528c330bca14b8601270731ef0c25a13a8f28
MD5 4e10eae2cd0fcbb6c14674f48f9f6540
BLAKE2b-256 28b546c66001db739f28a2193f75b7769abc11ceb70a9836861bd5e86f3635bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp310-cp310-win_amd64.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: sqzc3d-0.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 267.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqzc3d-0.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9256b4c73517b9e4ecbc417f298958fc759c08438de4726c5decd60e4c62e52c
MD5 acd9280df870425416beacca9051e55c
BLAKE2b-256 52b9690a07cdc4cab9fb816e59fe52917f3577d1ffde2af66259c82d358e3220

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp310-cp310-win32.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sqzc3d-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b91565255835a4ae9e9cfcf779ae8640a6ca2dce8c2da1a990d38b1edd10f936
MD5 18d4066a31d2a13f37c6cc835c9ec384
BLAKE2b-256 4bb49ca22f69d83db15b9ca13cb10135eef5fb4100e3702b37e45a970e985a37

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sqzc3d-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dd72bc88aac409fafe385a750ed1c5ec400faa9b9b082220f5211d37401da23f
MD5 f8c97438651cafd0be146ede6dc31f2e
BLAKE2b-256 d1fbafa2326318eeba9771a6b5da5c3d1b65e6a98b433c31e9ef0398b53bf2ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqzc3d-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7541f05561433b3769c73618deebb86f4cca1cb2d9ae660b91019abf017831d
MD5 11ab60491ed8171ad6b10e0955604e92
BLAKE2b-256 04270e1d15dc97953a94b7982c4ddf0feeff6f3712fa7a9cc443f8630f22503a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: sqzc3d-0.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 308.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqzc3d-0.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3e3ca4c53aeafa7a3ec5814e104a25023b7a6e366de52e58cdba816b42daeeeb
MD5 140bb09a3841681e38ea95afc7f9f939
BLAKE2b-256 f28b2fcd5828af39b89c35fbdea2e259df8be7e8453b33c9193aa03b26e5e56f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp39-cp39-win_amd64.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: sqzc3d-0.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 267.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sqzc3d-0.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e25765b862b05423bb0d120e3667a2f9e749b7e63ffb3f49a7dce5414d3d098f
MD5 e6a24d2f007eb5f6850bd536c60c318f
BLAKE2b-256 c414b581e9b69199998a204f02c4a05b7599fa5b56849199ae46695276d8c88b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp39-cp39-win32.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sqzc3d-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 565baed4714c7d9526734b839303172518dce5f10abd8c1c1870be54c8b5368f
MD5 9b43aca2d5cac5f127fdbab2a01139ee
BLAKE2b-256 ea2c09fbfb97d6951e62451afe9c2aa278efa1d8b77d76c68fe4d99b483a7597

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sqzc3d-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7dd73f8b2436c7692238a6548ffe9f92b1336675392c81c53c1f58c543e9d0f5
MD5 49fb0cd5f012960dc096bba45ea39992
BLAKE2b-256 329215b55bad456c957976b4b96090816a9ddc4f2530a2eaa858ff28c03e2485

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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

File details

Details for the file sqzc3d-0.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqzc3d-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9c480ef3ca7885eff57755dcd6958b2ca8333ec58afef32c3a61e7652883ad8
MD5 05fcb62cef18168a7668d98b1dd237d4
BLAKE2b-256 f524844bfe9b2e4e0a4a2a122e524a8323d3f489ee026f017fa6526a92b594bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqzc3d-0.4.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: pypi.yml on lshdlut/squeezc3d

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