Skip to main content

Drift-free IMU-based joint kinematics estimation (Weygers & Kok, 2020)

Project description

Drift-Free Joint Kinematics from Dual IMUs

High-performance Python/Cython implementation of the drift-free joint kinematics estimation method from Weygers & Kok (2020), "Drift-Free Inertial Sensor-Based Joint Kinematics for Long-Term Arbitrary Movements".

It includes:

  1. MAP-acc (optimization-based smoothing): Gauss-Newton optimizer for high-accuracy offline joint kinematics.
  2. MEKF-acc (Multiplicative Extended Kalman Filter): Online filtering.

Installation

pip install dfjimu

A C compiler is recommended for the fast Cython backend. If unavailable, the package falls back to pure Python automatically.

Development

# Install in editable mode
uv pip install -e .

# With Jupyter and matplotlib for running the example notebook
uv pip install -e ".[examples]"

# With dev tools (Cython, pytest)
uv pip install -e ".[dev]"

Usage Example

from dfjimu import mekf_acc, map_acc

# MEKF-acc (online filtering)
q1, q2 = mekf_acc(gyr1, gyr2, acc1, acc2, r1, r2, Fs, q_init)

# MAP-acc (optimization-based smoothing)
q1, q2 = map_acc(gyr1, gyr2, acc1, acc2, r1, r2, Fs, q_init,
                 cov_w, cov_i, cov_lnk)

See examples/demo.ipynb for a full walkthrough with plots.

Running Benchmarks

Evaluate accuracy and speed of the solvers on the dataset:

uv run tests/evaluate_package.py

Package Structure

  • dfjimu/: The Python package source.
    • map_acc() / MapAcc: MAP-acc optimizer (uses Cython).
    • mekf_acc() / MekfAcc: MEKF-acc filter (uses Cython).
    • _python/: Pure Python reference implementations for educational/debugging purposes.

Reference

Weygers, I., & Kok, M. (2020). Drift-Free Inertial Sensor-Based Joint Kinematics for Long-Term Arbitrary Movements. IEEE Sensors Journal, 20(14), 7969-7979.

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

dfjimu-0.2.0.tar.gz (365.7 kB view details)

Uploaded Source

Built Distributions

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

dfjimu-0.2.0-cp313-cp313-win_amd64.whl (515.2 kB view details)

Uploaded CPython 3.13Windows x86-64

dfjimu-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

dfjimu-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dfjimu-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (518.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dfjimu-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl (521.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

dfjimu-0.2.0-cp312-cp312-win_amd64.whl (516.9 kB view details)

Uploaded CPython 3.12Windows x86-64

dfjimu-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dfjimu-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dfjimu-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (520.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dfjimu-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl (523.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

dfjimu-0.2.0-cp311-cp311-win_amd64.whl (516.1 kB view details)

Uploaded CPython 3.11Windows x86-64

dfjimu-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dfjimu-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dfjimu-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (519.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dfjimu-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl (522.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

dfjimu-0.2.0-cp310-cp310-win_amd64.whl (516.6 kB view details)

Uploaded CPython 3.10Windows x86-64

dfjimu-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dfjimu-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dfjimu-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (520.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dfjimu-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (523.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file dfjimu-0.2.0.tar.gz.

File metadata

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

File hashes

Hashes for dfjimu-0.2.0.tar.gz
Algorithm Hash digest
SHA256 5d292587a8dae04f8f9d7232c871205d293975c35f72332d0b629a03edcef6f7
MD5 1c2478316faf6fb23a3a3a440dee9278
BLAKE2b-256 671b0ea56b93d63df6fe109f5de551cce03eb16a768457f2e36d733be959e1ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0.tar.gz:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dfjimu-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 515.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dfjimu-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ae83da06e492a6443c5fef94c9a6d6a9646a3b69d33fa0a2e0a90f881dd7949b
MD5 a8babe5d3fa48456f9cd03c6d255f409
BLAKE2b-256 2e7c394de21d359bfdab1a24744f6c319b65ffb0010dff1b29d64f637b84a988

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dfjimu-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f5311657962653c429141e82f23bd618021e14a5c54f0b64b2f5314f5bafbd3
MD5 ca5f439cf11b555d45afb3d2dc7f4224
BLAKE2b-256 10d97343f7405831491f0e28bc8e5ec0083bca67920a50e419b909aa227b1425

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dfjimu-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c85e003c30642a6c5ebb9965b0b5da6f9353de7c0e037c4446ca5d441da2a7b8
MD5 f5e2709aacc73bc2641a8827f49771a5
BLAKE2b-256 a9ded640b16612dbe569ea02e7f83c2390b58859c95530f1892994a64ddc4d3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dfjimu-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5738f662d6e83ebf5f5162efe0c6c21e95fbd1ea55ae86520fd1b2d51a805fbd
MD5 0dbf6fe7ae9f3b6385c34137c9db6dfd
BLAKE2b-256 526209f715abbe652afd2836911fff1e1c3701a58e13f3d5f82a38ec9c29b38c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dfjimu-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ea9989ce735dbd641f33b5840ad268543dacda08d76faf1d5930b3921335201f
MD5 da989a40ed821fcf74747685844cb653
BLAKE2b-256 18b3b515f7a4ec3c1ef3724fd30d8b00f99052fe482af88152bf7141f5420d41

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dfjimu-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 516.9 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 dfjimu-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 27ebde9ae26f2f34192a66eff374c10c260ef2c7985d569dddf695a12b1538e4
MD5 2d7641b71990e1fd9f530bebb4da82a4
BLAKE2b-256 3987422e4ab81a0cc5dc44fe5c930c56a6074b7cf92d8b4d66abca127b5b71e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dfjimu-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3f9b3f3ea89d5829224c9bb0c5072b653ce6c1b6fda92f97045ba9ff6bff56d
MD5 d4952b8f451fb27d8c8bbb39ff521a8c
BLAKE2b-256 9c887a91c0a91b360bda6d21cfc8832d75b744b8cd4f4cfda84bff5b6143b67e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dfjimu-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c648c5d8dd33af6fbfa16f7ee01caecedf40f7d56f2cbd7dc5e340f0d3591b8
MD5 e27e63d708b818bc2c3afd88f52f7349
BLAKE2b-256 32c20463491aa20e85d4529c96bb76008db31de43cde331b9a7879d576488090

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dfjimu-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 836ff34569fb80eab64c6c39a5802fa53e80f5a5163f734e6b0c17da6259d0b2
MD5 4bab52521f3f8c753c6409562db25ab9
BLAKE2b-256 db18708f2568e586e5fc142eaa56531a55d1a4814e30d62c971cd42080690e3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dfjimu-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a5a82a2989ee9e70ea9434ce880d4eb54f9b8d06b016d9272abf1d44a19934e8
MD5 3c58a8273b5bf32769de68d921d20288
BLAKE2b-256 215a251b2879b87d690272dbe9995328f82920739dc617d8a7ae765b97982941

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dfjimu-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 516.1 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 dfjimu-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7389d0888fcab3843d184b2e7d736aaa3eccc34114d3db1aa3840ea1ad8b084d
MD5 3c7f2a8f954ec514e252404fa2143834
BLAKE2b-256 229c980ae07d1888618c5510c07ee5b2766ac71095dffc243a9085eb49cc1e4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dfjimu-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b20f4e3000ec4d0acc7c0a6c5e6f766b6c112a15cd86bbaf47eac784fda24a0
MD5 b4b848a9116cd3c1203af03198fc51c8
BLAKE2b-256 1ae59470b2f793b8595a6039077ae66dc681d828d376f74cd4a24573979a5aa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dfjimu-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c936fcddf6e23c2059dd5911c9aa400af99175f8165479c3907666b567d17db2
MD5 1a1beb549ac31f5040b1600a55023916
BLAKE2b-256 bb8cfd71784e429f476280f91de82134bdae23273703a1dab8eadf2d53637bdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dfjimu-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a3c36ea9c52c23063a67a6eb15cd5024c820c03e43212b06dcd42e0be938a1c
MD5 cad93af8163c67dd1805c53bdc1bf751
BLAKE2b-256 3f8e78b08215261e16661dbb0e44dea83475aa49a3a13dc50fe4d9330a8ba58b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dfjimu-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b294185faa67b396b8f895577e65f982cf0e27d624007c96b470df2a70527625
MD5 43bed49d2b4d8f6a0944f5e9c0cf99d4
BLAKE2b-256 dfb65794a2a23feaa653d390e36d7956a9b1b613a5a81c7fdb7b48543eedbb3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dfjimu-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 516.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 dfjimu-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 66db0a3c6d7ee94842ea94968d5b32ababe06cce616bc0ecd90a9a2f59ca31b3
MD5 2332958c4f9436184b2015b6d5ed681e
BLAKE2b-256 bfd3049d9a80f15e584a82e27da1748e66f3be99646203e6427b5a78fa584dd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dfjimu-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7679ccfe96380b11458dc4165ae1207c6cfb268c92624e2c3041f4a61d33df2a
MD5 857074182c4be567a0989e2c65d859d0
BLAKE2b-256 1a7115c3321654e251ebf482a5e5aee12efe70d492f03d3642796b810156181d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dfjimu-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23e1518b08c34a5f6630ab1f1d398207964913727e2223e368a0b217326c9775
MD5 f314fc865d6ff22faf58f9ccc53d858d
BLAKE2b-256 a5ad968065a0babe9291cc3abc7562f3b9c2170937218945bfae6d44ec35e67a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dfjimu-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d20c46cdd585bd80f87af6d1bb4eb4b7dfb039a324e1382d88cda706b60c5641
MD5 991621530f774ad84af01489ca7e753b
BLAKE2b-256 3d10231050700d073f32f981ece4e18066c58dbf0da94b0b5a0828ecddd5d83b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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

File details

Details for the file dfjimu-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dfjimu-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf01bd6a555ec49ec954f039c488c19f3036d61710da5af169129305972c9ebd
MD5 d1cf48bc472fe3d1c8a63145850d7149
BLAKE2b-256 0dd26ced2f3b24207cfe8bfae68926311e4de3da62e633f54961b7c8646eb30c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dfjimu-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.yml on daniel-om-weber/dfjimu

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