Skip to main content

Python bindings for WujiHandCpp

Project description

wujihandpy

License: MIT Release

Wuji Hand SDK: C++ core with Python bindings, for controlling and communicating with Wuji Hand. WujihandPy is the Python binding of WujihandCpp, providing an easy-to-use Python API for Wujihand dexterous-hand devices. Supports synchronous, asynchronous, unchecked operations and real-time control.

Get started with Quick Start. For detailed documentation, please refer to SDK Tutorial on Wuji Docs Center.

Repository Structure

├── src/                          # Python binding source code and C++ headers
│   ├── wujihandpy/               # Python package with type stubs
│   │   ├── __init__.py
│   │   └── _core/
│   ├── main.cpp
│   └── *.hpp
├── example/                      # Usage examples
│   ├── joint/                    # read / write / realtime / async / multithread / disconnect / glove donning / handedness-based connect
│   │   ├── 1.read.py
│   │   ├── 2.write.py
│   │   ├── 3.realtime.py
│   │   ├── 4.async.py
│   │   ├── 5.multithread.py
│   │   ├── 6.disconnect.py
│   │   ├── 7.glove_donning.py
│   │   └── 8.connect_by_side.py
│   ├── tactile/                  # Tactile sensing glove
│   │   └── basic.py
│   └── joint_with_tactile.py     # Drive both subsystems together
├── wujihandcpp/                  # Underlying C++ SDK implementation
│   ├── include/                  # C++ header files
│   │   └── wujihandcpp/
│   ├── src/                      # C++ source files
│   └── tests/
├── .github/
│   └── workflows/                # CI/CD automation
├── pyproject.toml
├── CMakeLists.txt
└── README.md

Quick Start

Installation

pip install wujihandpy

Linux USB permission:

echo 'SUBSYSTEM=="usb", ATTR{idVendor}=="0483", MODE="0666"' | \
sudo tee /etc/udev/rules.d/95-wujihand.rules && \
sudo udevadm control --reload-rules && sudo udevadm trigger

Basic Usage

import wujihandpy

hand = wujihandpy.Hand()

# Read all joint positions
positions = hand.read_joint_actual_position()

# Write target position to a joint
hand.finger(1).joint(0).write_joint_target_position(0.8)

Appendix

Performance and Optimization

While ensuring usability, WujihandPy has been optimized for performance and efficiency as much as possible.

We recommend prioritizing bulk read/write to maximize performance.

For scenarios that require smooth joint position control, be sure to use realtime_controller.

References

Contact

For any questions, please contact support@wuji.tech.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

wujihandpy-1.8.0-cp314-cp314t-win_arm64.whl (965.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

wujihandpy-1.8.0-cp314-cp314t-win_amd64.whl (815.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

wujihandpy-1.8.0-cp314-cp314t-manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

wujihandpy-1.8.0-cp314-cp314t-manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

wujihandpy-1.8.0-cp314-cp314-win_arm64.whl (951.9 kB view details)

Uploaded CPython 3.14Windows ARM64

wujihandpy-1.8.0-cp314-cp314-win_amd64.whl (783.3 kB view details)

Uploaded CPython 3.14Windows x86-64

wujihandpy-1.8.0-cp314-cp314-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

wujihandpy-1.8.0-cp314-cp314-manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

wujihandpy-1.8.0-cp313-cp313-win_arm64.whl (924.5 kB view details)

Uploaded CPython 3.13Windows ARM64

wujihandpy-1.8.0-cp313-cp313-win_amd64.whl (761.5 kB view details)

Uploaded CPython 3.13Windows x86-64

wujihandpy-1.8.0-cp313-cp313-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

wujihandpy-1.8.0-cp313-cp313-manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

wujihandpy-1.8.0-cp312-cp312-win_arm64.whl (924.4 kB view details)

Uploaded CPython 3.12Windows ARM64

wujihandpy-1.8.0-cp312-cp312-win_amd64.whl (761.6 kB view details)

Uploaded CPython 3.12Windows x86-64

wujihandpy-1.8.0-cp312-cp312-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

wujihandpy-1.8.0-cp312-cp312-manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

wujihandpy-1.8.0-cp311-cp311-win_arm64.whl (922.5 kB view details)

Uploaded CPython 3.11Windows ARM64

wujihandpy-1.8.0-cp311-cp311-win_amd64.whl (758.7 kB view details)

Uploaded CPython 3.11Windows x86-64

wujihandpy-1.8.0-cp311-cp311-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

wujihandpy-1.8.0-cp311-cp311-manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

wujihandpy-1.8.0-cp310-cp310-win_arm64.whl (920.8 kB view details)

Uploaded CPython 3.10Windows ARM64

wujihandpy-1.8.0-cp310-cp310-win_amd64.whl (755.6 kB view details)

Uploaded CPython 3.10Windows x86-64

wujihandpy-1.8.0-cp310-cp310-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

wujihandpy-1.8.0-cp310-cp310-manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

wujihandpy-1.8.0-cp39-cp39-win_arm64.whl (922.2 kB view details)

Uploaded CPython 3.9Windows ARM64

wujihandpy-1.8.0-cp39-cp39-win_amd64.whl (768.4 kB view details)

Uploaded CPython 3.9Windows x86-64

wujihandpy-1.8.0-cp39-cp39-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

wujihandpy-1.8.0-cp39-cp39-manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

File details

Details for the file wujihandpy-1.8.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: wujihandpy-1.8.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 965.3 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wujihandpy-1.8.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 504e0729b9907f972a1c853ed1be1cd0fba6748704cc428d7283bf3a4a99dd78
MD5 c86eaabcbfa2ddbc71ca597f5a421f11
BLAKE2b-256 47a59b90de231a6b60e6ed2531a45e1dabc7e546b8c65f852381f765a7d143f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp314-cp314t-win_arm64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: wujihandpy-1.8.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 815.7 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wujihandpy-1.8.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8c5f89cbbc80b37e70af706e15419dad316d0250a507bbf88474b9a5e59d5e67
MD5 b6cd8b5844f4ef4bbf1256cf98a17d6b
BLAKE2b-256 ea0bcf88f18cebe6d29a81637153165988f4dc00e986ba87b8e1bbe920ff7e1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wujihandpy-1.8.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e04b5f14739ea3db7f7df89ee0d29dbf222c617a29f25e04427ab47ce5dc86bf
MD5 8b918461a6e4b818bc845dd32737459d
BLAKE2b-256 db79d3a66bca940914c961f55e0b07248707af3bff3e3c84b96d2af032401540

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wujihandpy-1.8.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 95f802ff6258294c2e0511784d55d3e2db81ea1fa559bf5bf8bcb5e1aa830267
MD5 a55ab2cf89d8e87d6631b4844e82b60f
BLAKE2b-256 19559d5b2a751cd33dbbf143fe4a8ad5a925f49b43ac0ba26f273b5e5910fa53

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: wujihandpy-1.8.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 951.9 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wujihandpy-1.8.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 5bb65451ac3294c86cad60ab05385ef2c54f7d61c87b49d162e00cf66240275b
MD5 2da1400fa4c7ebe61cd0fffea0f8ed98
BLAKE2b-256 a95d13a1bcf84698f2bcbeab098691b5baea6470b5144a783960709f02be6506

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp314-cp314-win_arm64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: wujihandpy-1.8.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 783.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wujihandpy-1.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 66c1b1f47c91ca870bc664001acc47a4d71f3b9f80769897db16cabb30ba642b
MD5 c088cb8636ae2696e9d090e18dd55d1d
BLAKE2b-256 ca5121216462b32e76f10a447e8091d993a3e8ee84b339bf9c4f35e117412d04

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wujihandpy-1.8.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c7f6f761b6f2a8ac3e2c199c13c285ebcab40a9feb8b018cfea1a6997eb5c75
MD5 7c5a2ad946f7aef54ee8b92cf4081f21
BLAKE2b-256 f0f8a0216b2746f53d6c780c64e7c474b54a5d94e7fca7045d57399bdad354a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wujihandpy-1.8.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b0831a26435ad0c4810a355e343d57052c69c34c6565c73c52d180ffdbce1d1f
MD5 5a24c35edb56b4dea1c65f24f3ed5482
BLAKE2b-256 adf878f9477bccbe26ce130796c31d14f9323f5787a14e3efc9326b4ec7c733d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: wujihandpy-1.8.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 924.5 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wujihandpy-1.8.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 09f174583b36fc2d9aff0ebe40c3288ea58709214935c710f35f5c8c39ff1d07
MD5 4f51b0a744d786e30565ae5200c76588
BLAKE2b-256 73d346d68d465a5b37950def4db7e00bad21bbf7bddfb329507acf6fbaee22d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp313-cp313-win_arm64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: wujihandpy-1.8.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 761.5 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 wujihandpy-1.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 79960f6ba9a64ff17847c99ed352a2826413583e2e2d58b25ca3bc699b237c87
MD5 fdbededfbccf12445dc707a8f8d8c4a7
BLAKE2b-256 4f7690ed6edd44365abb76a8ae4cc97a891e590e378803c69789323609036813

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wujihandpy-1.8.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f94a4fb77806460358625384cd8bb6259b26e08c4054596373b1ab57cf119b75
MD5 b62a586561510b4fde3848bfd2b0258f
BLAKE2b-256 5e01ac12610614487c0a9477ed5e11c0f77f4983a08fc5add8e308c9def646f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wujihandpy-1.8.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 237728638104ef86c3630aec97ededf7ab6cf800dc2b796f4f0443d0677a1434
MD5 6793cf07b39554e3fb726102d13df3b3
BLAKE2b-256 469d21bdc6e00e11385af042704f18c6cd544a74c2941a7e51214b37c2a5a462

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: wujihandpy-1.8.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 924.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wujihandpy-1.8.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a7c8f7d68e59db7d3bcc08852decf1b025df1e809a1536bb79360d58be897d57
MD5 8fb64ae2a5af8bd1ad293857b6b6b5d2
BLAKE2b-256 b06a16d9c4ea819c1ce218a39b03a8c49916d4ce3e13107314989250b7adf910

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp312-cp312-win_arm64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: wujihandpy-1.8.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 761.6 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 wujihandpy-1.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0d19c05881ed15108897f48b62bb768641ea6cccb815aa977d39a088eb271d83
MD5 39c9d7b56f080a0583cf659b1e16e0b9
BLAKE2b-256 ffaa8f20c64db7d886b4defa47b02667cf72cf2c474993d72ac3c47a1991fa36

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wujihandpy-1.8.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7f15fecec5f2dbeb2e50896377716498d604859c5717f115d8b23d526a3e93c
MD5 47b142d6376a552af235801b959f8a4a
BLAKE2b-256 a2dff709a9cfc0a4b8e95ab84de20f88e64d46b0d17d3ef3d4d338ebc7bc4618

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wujihandpy-1.8.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 338898dac860d374fe64c34e07a92fad250fde30aa6c19460a2de7d0b870b668
MD5 d000df0cfde47a69f51055c73aea6d9a
BLAKE2b-256 72790b17b72cb4101900b3ba1fc5922bd11eddac874b769517cd9203391d9ef7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: wujihandpy-1.8.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 922.5 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wujihandpy-1.8.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 46a660fa16ab38e5dc81bc65b78127906ea789284bca41f673fcf8e90ffdcf28
MD5 eb78e06cadc9cc408c6b607413099004
BLAKE2b-256 debfe2fba59c856ca00b43d0016d7bb5d309ba7b0ae23fd8d7d7e66a17d33c38

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp311-cp311-win_arm64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: wujihandpy-1.8.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 758.7 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 wujihandpy-1.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4c9784c01b8b315e0a264871c3c2239e60c511f28273e3f65f5781b280d03aa2
MD5 7d9f093a452a24c75fd3b7c223dfb071
BLAKE2b-256 85beacbb383c588483f72064b24f1a3464d1c73a2f7453154133cafc855c9041

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wujihandpy-1.8.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec8ddeab6542a1a1988fdc5160b727de0191df308890b105894228a7028cafe6
MD5 d6f4413a7368f825ca666c3a87ac0541
BLAKE2b-256 7f2b84dd3b275da588a7c344def522c15d9d289b4f61b8e6b439b48ad6bc01c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wujihandpy-1.8.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e407255ba9c6488704048f806aab3cadac12129a098fc2c43e7932bd33967552
MD5 00292aed33d7b6523a6a000457bf1816
BLAKE2b-256 c469b11d3e80e4b45f1616dd4f1228d61e1a1f1da02b6cfd9010e3701795e319

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: wujihandpy-1.8.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 920.8 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wujihandpy-1.8.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 959a5da0d2d63b0682867684d15f4939a710c7626d4310d4f6348fa711200265
MD5 436c2cef508be2ce674ded65108fe2e9
BLAKE2b-256 440ff25b597c6bbd30f8ba7129dd5a90ac226a9ccc00df0bbe7398fc65215212

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp310-cp310-win_arm64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: wujihandpy-1.8.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 755.6 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 wujihandpy-1.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d6a3943dff884a539196b9672c8f56913b28acd7bb5ac05b74275029fe02cc56
MD5 5481fa724c900ae33d8bae0da53c55b3
BLAKE2b-256 405c758ad1f4e53b32b9896886da7e11789c59860c6a0e7a6ed59b13ca2b1fa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wujihandpy-1.8.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e7d93695027bb1cfce821eb037116073378daec7334f91584b4cc0eb5e08026e
MD5 0faea1ccf9e1efe2f82ea4b5791dfc9d
BLAKE2b-256 dcbc28add8dbf0d926705933c2cd4dc133e60cde8e5ccdf2b75450f506413ed5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wujihandpy-1.8.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 90f23926d621d25b0b4989d650c1096850d062a265288ab75a8c7b01a2bf14c8
MD5 215a0ff5eee4f8ed497b535705c86feb
BLAKE2b-256 cd9f3f4ecc1aa3c6c6fbc7c62880c2db5fabf3041b204259a3145b53c9f6c2ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: wujihandpy-1.8.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 922.2 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wujihandpy-1.8.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 f126029221123dd955438a9f452894413759189689c1ad96b99bc14c1b76c2d8
MD5 21f3d4aa2ce1ecb41ec5527ff0324390
BLAKE2b-256 63d7902295e07377933ec0af640fb4dfc4c0a9f7e181fa5a3ebf623ea8c7694b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp39-cp39-win_arm64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: wujihandpy-1.8.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 768.4 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 wujihandpy-1.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1410167c6d819e6c55d89ffdec83066baa7e8a89eab78b5fc508df32952800a2
MD5 e32ba738b873f9e31dd462cb62967c54
BLAKE2b-256 532cc52f8d73bc7273eef472d31a8e396281139cedf5b14c59e97683632fe5e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp39-cp39-win_amd64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wujihandpy-1.8.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 695176da6c6fbab16a994fd44110beab570a62c706cbf96352751c5c345b09c0
MD5 444866fa111440832b8eb431df28ac05
BLAKE2b-256 36d3c6cb37ab7bd61515f2b8988b4758fe20d2e45730120e13c7e7ca063946fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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

File details

Details for the file wujihandpy-1.8.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wujihandpy-1.8.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a4db176ec28d628c987a9fe72124c995136870dc0f3436ddb4e426bf45cff84
MD5 0854f3f0f1ce73528c4ed246a7585b60
BLAKE2b-256 0601c5b57165eaa889cd85877ddf8d318bc3b27b6aee5408510ffd7f418223c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wujihandpy-1.8.0-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: release.yml on wuji-technology/wujihandpy

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