Skip to main content

Python wrapper for RemoteCaptury - stream motion capture data from CapturyLive

Project description

RemoteCaptury Python Wrapper

A Pythonic wrapper for the RemoteCaptury library, providing an easy-to-use interface for streaming motion capture data from CapturyLive.

Features

  • Callback-based API: Register Python callbacks for pose data and actor status changes
  • Pythonic Interface: Clean, object-oriented API that feels natural in Python
  • Easy Installation: Install via pip with automatic C++ extension building

Installation

From Source

cd python
pip install .

Requirements

  • Python 3.6+
  • C++ compiler (g++ on Linux, MSVC on Windows)
  • CapturyLive server running

Quick Start

from remotecaptury import RemoteCaptury
import time

# Define callbacks
def on_pose(actor_id, pose):
    print(f"Received pose for actor {actor_id}")
    print(f"  Timestamp: {pose['timestamp']}")
    print(f"  Transforms: {len(pose['transforms'])}")

def on_actor(actor_id, mode):
    print(f"Actor {actor_id} status changed to {mode}")

# Create client and connect
rc = RemoteCaptury()
rc.connect("127.0.0.1", 2101)

# Register callbacks
rc.register_pose_callback(on_pose)
rc.register_actor_callback(on_actor)

# Start streaming
rc.start_streaming()

# Let it run for a while
time.sleep(10)

# Clean up
rc.stop_streaming()
rc.disconnect()

API Reference

RemoteCaptury Class

connect(host, port=2101)

Connect to a CapturyLive server.

Parameters:

  • host (str): IP address or hostname of the server
  • port (int): Port number (default: 2101)

Returns: bool - True if connected successfully

disconnect()

Disconnect from the server.

start_streaming(what=1)

Start streaming data from the server.

Parameters:

  • what (int): Bitmask of what to stream (default: 1 for poses)

Returns: bool - True if streaming started successfully

stop_streaming()

Stop streaming data.

Returns: bool - True if streaming stopped successfully

register_pose_callback(callback)

Register a callback function for new pose data.

Parameters:

  • callback (callable): Function with signature callback(actor_id: int, pose: dict)

The pose dictionary contains:

  • actor (int): Actor ID
  • timestamp (int): Timestamp in microseconds
  • transforms (list): List of transform dictionaries, each containing:
    • translation (list): [x, y, z] translation
    • rotation (list): [x, y, z] Euler angles
  • blendShapes (list, optional): Blend shape activations

Returns: bool - True if callback registered successfully

register_actor_callback(callback)

Register a callback function for actor status changes.

Parameters:

  • callback (callable): Function with signature callback(actor_id: int, mode: int)

Mode values:

  • 0: ACTOR_SCALING
  • 1: ACTOR_TRACKING
  • 2: ACTOR_STOPPED
  • 3: ACTOR_DELETED
  • 4: ACTOR_UNKNOWN

Returns: bool - True if callback registered successfully

Testing

A test script is included:

# Make sure CapturyLive is running
python test_remotecaptury.py

License

See the main RemoteCaptury license.

Contributing

This is a wrapper around the RemoteCaptury C++ library. For issues with the underlying library, please refer to the main repository.

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

remotecaptury-1.0.0.tar.gz (36.6 kB view details)

Uploaded Source

Built Distributions

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

remotecaptury-1.0.0-cp313-cp313-win_amd64.whl (48.1 kB view details)

Uploaded CPython 3.13Windows x86-64

remotecaptury-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (542.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

remotecaptury-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (41.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

remotecaptury-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl (46.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

remotecaptury-1.0.0-cp312-cp312-win_amd64.whl (48.1 kB view details)

Uploaded CPython 3.12Windows x86-64

remotecaptury-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (542.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

remotecaptury-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (41.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

remotecaptury-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl (46.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

remotecaptury-1.0.0-cp311-cp311-win_amd64.whl (48.1 kB view details)

Uploaded CPython 3.11Windows x86-64

remotecaptury-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (545.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

remotecaptury-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (41.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

remotecaptury-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl (46.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

remotecaptury-1.0.0-cp310-cp310-win_amd64.whl (48.1 kB view details)

Uploaded CPython 3.10Windows x86-64

remotecaptury-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (545.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

remotecaptury-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (41.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

remotecaptury-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl (46.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

remotecaptury-1.0.0-cp39-cp39-win_amd64.whl (48.2 kB view details)

Uploaded CPython 3.9Windows x86-64

remotecaptury-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (544.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

remotecaptury-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (41.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

remotecaptury-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl (46.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

remotecaptury-1.0.0-cp38-cp38-win_amd64.whl (48.2 kB view details)

Uploaded CPython 3.8Windows x86-64

remotecaptury-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (545.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

remotecaptury-1.0.0-cp38-cp38-macosx_11_0_arm64.whl (41.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

remotecaptury-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl (46.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file remotecaptury-1.0.0.tar.gz.

File metadata

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

File hashes

Hashes for remotecaptury-1.0.0.tar.gz
Algorithm Hash digest
SHA256 d0b8c16b1e300d9c271772c399c23b933686c97a37c385b33e215e8534097b64
MD5 7f31bb66802f1067ce137f248e3c63e9
BLAKE2b-256 a19cbec927cc782520f4283eae720bdb0e5cf77302308da0ffaa763c692b78b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0.tar.gz:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 54a29c0e23b10f526b611488e76ee47f4d5b8024d18729ab969a2cf11ff3daa1
MD5 890b5b2dcbca2b434f1ff3d4851b019a
BLAKE2b-256 d46c893e32ccb0a551a6d960e5a9290d34a1f0a1e8da47740ba17a3107347463

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp313-cp313-win_amd64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fa982980a4b3d8d172c517a2a932b7eccecad02b57fe328e8472e7b31ec4797
MD5 2c30c5bcef8cfe9360ff7452256f5d5b
BLAKE2b-256 5727c010f6cf93ad92d7172152cab0785e4ae42bc985f1364ceb11106f8cee86

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62e9598852dfb08d4977a31c722e0c26310b331285162bef354504b84a51a687
MD5 244e2b0e84d187df96ecd20ba7f999b5
BLAKE2b-256 9f3d34bb667a538973e28cb6c4e162064b481fb6a7822e08666963c8e3889721

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7481e4374c3641371592f0bc8341ad167fd4e1339a5d20c7a0fcd74aebf4ed9b
MD5 5a28dd513fc52814c09d7d7eb00b433b
BLAKE2b-256 f81ff9f673d0d3ca97f5f727e8a351528c52ff3ef0b3f98a03318d4abc13e678

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3b9e20a37e98e0014ad9f9dea70dd09dcaf9bbaf5ff36ecbf831cfa44ef9670b
MD5 e46a6928063b4547f04b5b7ca014167f
BLAKE2b-256 a50e802ea6927693a4d36ee640412bbb8b9beee7e1587be24e6637b0e1aac41b

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp312-cp312-win_amd64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a30b7482b7ddde5835dca85bb8e98f67f6f8b5352cac4d6e6d56e1f41aab30b1
MD5 2fa535b584afcf1ead9b845a80073ae6
BLAKE2b-256 66380d76da5b738039c767faf34ee0aedac47a669a04dfceebdd5828873683da

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 336bcfd9f3b2aa05d77ceb44ff908292230fe66918b2c606f46ff7f9fa5e659d
MD5 684655f5dd31361e9a3af350251b21db
BLAKE2b-256 ba822bb364f04f3a99d815664949c5fbd1337a096eceb5b28ce8cc74d2fced3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cd9d118c2a43c9d2a196ed412bd0c34316a858e96fa99d8424af1a66ad3c2282
MD5 5928210339e8ca61ed4baa7f63505bf4
BLAKE2b-256 55a8d63484b7e3a467d679ec17555935e7d3a3c47564795f2df7ac204ca2f72b

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8e958d4bd6fcaed76ee2d0ec8231b3a7c6f335ee89e5351e01a490616a88f585
MD5 c8425329d1889d5ec3ca15d1231293e9
BLAKE2b-256 4e8b5276dd34332757edcffec97404681b13043cd2c85ff70a1dea77b2802d4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp311-cp311-win_amd64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdbbf48f482f03dcc57601c4377b270f9a6db465e1a80d9245af9cfecc0ac39a
MD5 60e205e46143c57b885f0e210f47e673
BLAKE2b-256 04fe0d69a6ba942cdea61772ccbf8aec523260458694a8c00b8f60cc90dfc89f

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5687c31417978bc9f41404f78842cb293f0242d2bb053b682601f30d0b6974ba
MD5 a39520fa7624cf42d51022f3be2bafd7
BLAKE2b-256 ef16c0b7d2c9a15b4bf62cf281d628103d7f87e26ddc4fc2e3f6a811128032b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6786332f386087b33672540bd39eedee120d1271cdbee4cda64b67940a906bc1
MD5 727aad77675c1e4b753ef9a63d278258
BLAKE2b-256 598e56fbcf8ceebf2c46513515d9b88a302c1f5b374303d5067093eb2a186b10

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 98a63e9ab74c8c95d8f05ba679ce4eb0747ec3745495dada6251d2e87a46287e
MD5 e418039bb1c1d285b19d775bc40a9565
BLAKE2b-256 1c3cefdbe4419eebc19cdd6472f386adb2ccac784c2d95aa0b571eb7c3e0aa7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp310-cp310-win_amd64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45f04872d45a12dac2aaed228d1b8b599c57ce6d31e584a4a8791ffd5e76e8b8
MD5 edd693432fc1c2a47c1cd46cd21cc83a
BLAKE2b-256 592687ba967307e52a3807f1658ac351d86a4e13c307719af30337d3ddd23e7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef24cc2515475b4b623a20d3b0ea26b86b1ef6448e0df891463190d25978c38a
MD5 75ad86a2e82487569c8706049a6454b3
BLAKE2b-256 0dbea5c29491a56d925c0efa6b478e2b9b23b652faf64297bc4b128c67dc28eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56561f8e617200468cc80b3e8bf4392e27a0b1b2b54ba88381c579e3755cf1cd
MD5 cadcacabdfc7af6be1869ca1149abafd
BLAKE2b-256 b36a0f7756b95ee20be63ebcc58b8aacca5eed768958f2d52bb541f308d7b6f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 aaa99b171d716f81549c844eb72343e116909e2edb500b474116a0ba32b08fae
MD5 f7a10f9fcac2285676c74ab524613bde
BLAKE2b-256 c9efa3f287a21fd8c53ebb409e04d00ae2a951562232689fa98e8f0292c871c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp39-cp39-win_amd64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21423cb3b8a3b7ee55198d321176b8c80f22c11a4869f6ea8f5e23834cf9f29d
MD5 701300c8b29d21d8cc97c996f0d4fe76
BLAKE2b-256 a89f2faf52fbadcc20df829521427c96b6f6d99796ef5cd21d11b5c6de1d2820

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c9eb041ba03acf598b33bda4b1a26d937425fce0f5b7cf04b42a1920ad5121a
MD5 58ea7578a9ffda9a84b19cb5ce4664a3
BLAKE2b-256 9c920fd3f344d4afc504320000295a65c48999377a14c7cb2cd2caa7f06b5eda

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a692945512613853b1e474d09427ff1322db034c72aa858d6d64545f148dcd6a
MD5 40e09d28b59f8cf8aa05c59be6afa3af
BLAKE2b-256 f617787a1feb950497d8fd5756e30ef22d4f9eb3716034265a238b0494f5adb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f934a21e999d482d9f78d343519e2153c8e31df30031d6e4f24d94bcff6dd816
MD5 bf3df59ce9efea28c7ea28919462e297
BLAKE2b-256 fa244484c6311e8ac80d5220a6994fa5e478e18036717ae8acf6e6f0de40b3a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp38-cp38-win_amd64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 252fb964ac1e7eec7fc5a14e9478131c6758d99e6faf5aeeb3ad1886b86a8e90
MD5 573a07b6e6a74cca3e6ea820c2ac6e8c
BLAKE2b-256 a81824f2b9924eeca222c2fed02358a949c972f0bb41a805f594ff152c52602e

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8ac5a309a7d905bb67ff480f2113519f310192fa61ba0e6892cabca4c59e442
MD5 d11db15adc60215165baa12c01a87713
BLAKE2b-256 fdc59b350a466a1d60892fb0a71d14f8666218ea32d46e284d770ffa1947710b

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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

File details

Details for the file remotecaptury-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for remotecaptury-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e31d3a4b28aa7560cec33a8595dab19ab559afa7c480736f2c48a308a2b3f51e
MD5 c8d8a4bc5574330ea3b968716434213e
BLAKE2b-256 e3f136ef66a367635780dcf528a20e963ecc0f8654e82fcdddbde45d479cc12a

See more details on using hashes here.

Provenance

The following attestation bundles were made for remotecaptury-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: publish-pypi.yml on thecaptury/RemoteCaptury

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