SpaceWire / RMAP TCP client bindings for Python
Project description
pyspw_rmap
pyspw_rmap provides Python bindings and CLI tooling for the spw_rmap SpaceWire/RMAP helper library. It exposes the same TCP client that the C++ API uses, so you can connect to a SpaceWire-over-TCP bridge, describe a target node, and issue synchronous read/write transactions from pure Python.
Installation
The package is published as a scikit-build-core wheel, so CMake, Ninja (or another generator), and a C/C++ compiler must be available. Once the build prerequisites are satisfied, install it like any other PyPI package:
python -m pip install pyspw_rmap
Command-line helpers are included automatically and become available as spwrmap and spwrmap_speedtest.
Quick start
from pyspw_rmap import TargetNode, SpwRmapTCPNode
target = TargetNode(
logical_address=0x32,
target_spacewire_address=[0x06, 0x02],
reply_address=[0x01, 0x03],
)
node = SpwRmapTCPNode(ip_address="192.168.1.100", port="10030")
node.write(target, 0x44A200D4, [0, 0, 0, 1])
data = node.read(target, 0x44A200D0, 4)
print(list(data))
TargetNoderepresents the destination node (logical address, hop list, and return path).SpwRmapTCPNodeowns the SpaceWire-over-TCP connection and performs the request/reply handshake.- Calls are synchronous: they block until a reply frame is parsed or the default timeout elapses. Catch the raised exception to handle transport or timeout errors explicitly.
Destroy the node (or let it go out of scope) to close the TCP connection. For deterministic teardown, wrap it in a context manager as shown in examples/spwrmap_example.py so connect() and cleanup stay paired.
Building from source
If you prefer installing from a checkout, clone the main repository and let pip build the wheel locally:
python -m pip install .
The build steps mirror the ones documented in the root README.md. The pyspw_rmap wheel bundles the Python module, the C++ extension, and the CLI entry points, so no extra copy steps are required after pip finishes.
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyspw_rmap-0.3.0.tar.gz.
File metadata
- Download URL: pyspw_rmap-0.3.0.tar.gz
- Upload date:
- Size: 48.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53c2e14c6bc73541f83ae36bf88720f41d802699db04b604289686a798f6d49c
|
|
| MD5 |
2be5c6497c2774022f73f27f3221484c
|
|
| BLAKE2b-256 |
859f028f834e3d4ebf15d79aaa85eb1b41d86e641322dc00ae914f274fc1e01a
|
Provenance
The following attestation bundles were made for pyspw_rmap-0.3.0.tar.gz:
Publisher:
publish.yml on gen740/spw_rmap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyspw_rmap-0.3.0.tar.gz -
Subject digest:
53c2e14c6bc73541f83ae36bf88720f41d802699db04b604289686a798f6d49c - Sigstore transparency entry: 798001294
- Sigstore integration time:
-
Permalink:
gen740/spw_rmap@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gen740
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyspw_rmap-0.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyspw_rmap-0.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 403.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06118fb82a82e45e443cde2535b5d82fd4996612412b4a9f5141f9f5180432b1
|
|
| MD5 |
3560c1e9ba017caa14cc7c789c17fd70
|
|
| BLAKE2b-256 |
52ee4ad2842f5a8b2755a62a3217041c1dcc9f350690ecf0754041223574899b
|
Provenance
The following attestation bundles were made for pyspw_rmap-0.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on gen740/spw_rmap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyspw_rmap-0.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
06118fb82a82e45e443cde2535b5d82fd4996612412b4a9f5141f9f5180432b1 - Sigstore transparency entry: 798001347
- Sigstore integration time:
-
Permalink:
gen740/spw_rmap@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gen740
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyspw_rmap-0.3.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyspw_rmap-0.3.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 380.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56eaf2c71c94ed5ed9162eb6ee6d2e7002594584d22b1d1cce6cb01d046b2413
|
|
| MD5 |
8eaf1f89155f82b553a88f750deaa7a8
|
|
| BLAKE2b-256 |
dbea36ad81e18a91b3c629de8c1b97b5f09858b3afdfb62d5844b7e2e5413381
|
Provenance
The following attestation bundles were made for pyspw_rmap-0.3.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on gen740/spw_rmap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyspw_rmap-0.3.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
56eaf2c71c94ed5ed9162eb6ee6d2e7002594584d22b1d1cce6cb01d046b2413 - Sigstore transparency entry: 798001330
- Sigstore integration time:
-
Permalink:
gen740/spw_rmap@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gen740
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyspw_rmap-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyspw_rmap-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 316.1 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73b8e65355f19c3ad3bb94f29129802db56da0d9906e2d80b98894fb9ae166d4
|
|
| MD5 |
8a0d9cdf68b5570e2ebb9faa2854d835
|
|
| BLAKE2b-256 |
ee2b08d32f603492c1097c1d73f51fdb0f40429061dc3accb5a1bdc902c4e69c
|
Provenance
The following attestation bundles were made for pyspw_rmap-0.3.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
publish.yml on gen740/spw_rmap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyspw_rmap-0.3.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
73b8e65355f19c3ad3bb94f29129802db56da0d9906e2d80b98894fb9ae166d4 - Sigstore transparency entry: 798001336
- Sigstore integration time:
-
Permalink:
gen740/spw_rmap@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gen740
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyspw_rmap-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyspw_rmap-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 402.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5302bcd14891a47e954e5e563d5168c650f49921c0b6c0e321a682c43957511e
|
|
| MD5 |
559b824b5bf9c85eb1711b12acc7f6f8
|
|
| BLAKE2b-256 |
074603f860f08e3c41e1fa759cd209cb54fb461a5aafd30f15e55a1cf2413751
|
Provenance
The following attestation bundles were made for pyspw_rmap-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on gen740/spw_rmap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyspw_rmap-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
5302bcd14891a47e954e5e563d5168c650f49921c0b6c0e321a682c43957511e - Sigstore transparency entry: 798001369
- Sigstore integration time:
-
Permalink:
gen740/spw_rmap@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gen740
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyspw_rmap-0.3.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyspw_rmap-0.3.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 379.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1daa4c7d3a30cca930fe4d0a796ca9f81bb488222e6cff0dc56546e9b5437dd
|
|
| MD5 |
ac61e416a34019b05a41b29b93c1d777
|
|
| BLAKE2b-256 |
72c22ed5dc9f5e8a55b197b3dbb80efa3b3a9bad3eb38defec969be22bf2ea6c
|
Provenance
The following attestation bundles were made for pyspw_rmap-0.3.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on gen740/spw_rmap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyspw_rmap-0.3.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
d1daa4c7d3a30cca930fe4d0a796ca9f81bb488222e6cff0dc56546e9b5437dd - Sigstore transparency entry: 798001377
- Sigstore integration time:
-
Permalink:
gen740/spw_rmap@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gen740
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyspw_rmap-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyspw_rmap-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 315.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c731f159d722d8af57c4614908df79e80b13987ce5540cce75f7e1e179c7831
|
|
| MD5 |
231a0fed229929d507935e18c5e3c795
|
|
| BLAKE2b-256 |
775f0043374f0ac4d11b31245aa2785012c5df47b1207d55cccae786417d6c33
|
Provenance
The following attestation bundles were made for pyspw_rmap-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish.yml on gen740/spw_rmap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyspw_rmap-0.3.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
3c731f159d722d8af57c4614908df79e80b13987ce5540cce75f7e1e179c7831 - Sigstore transparency entry: 798001390
- Sigstore integration time:
-
Permalink:
gen740/spw_rmap@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gen740
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyspw_rmap-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyspw_rmap-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 402.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73e773fb5ac1898bff395e09dfc153df28c0c9d817a06e3569148d7e12f34736
|
|
| MD5 |
146d8a8db30d6aec70e5d8e80303eec1
|
|
| BLAKE2b-256 |
39217df69bcc73cb8acc0d4b967d385238d22a2e3bd3c9666db07149ab2aa5bf
|
Provenance
The following attestation bundles were made for pyspw_rmap-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on gen740/spw_rmap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyspw_rmap-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
73e773fb5ac1898bff395e09dfc153df28c0c9d817a06e3569148d7e12f34736 - Sigstore transparency entry: 798001324
- Sigstore integration time:
-
Permalink:
gen740/spw_rmap@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gen740
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyspw_rmap-0.3.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyspw_rmap-0.3.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 379.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
993fd9f0b8634815e39dc49e329f3677c8aba0efe7191429d85b62e60ef0a50d
|
|
| MD5 |
8874819f40e397afef8bb8c609a80c8f
|
|
| BLAKE2b-256 |
5bd7475d851698c6140ea233a8c5125275e581da6d3ef54267a8ce7a7f506f0f
|
Provenance
The following attestation bundles were made for pyspw_rmap-0.3.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on gen740/spw_rmap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyspw_rmap-0.3.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
993fd9f0b8634815e39dc49e329f3677c8aba0efe7191429d85b62e60ef0a50d - Sigstore transparency entry: 798001383
- Sigstore integration time:
-
Permalink:
gen740/spw_rmap@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gen740
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyspw_rmap-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyspw_rmap-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 315.8 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
236c5a45d4b6782ce46fb2f91b7ba9549c20a80d7d361d45608e772ee0fbfe70
|
|
| MD5 |
574f78c4062af8e054c610c1acb24e84
|
|
| BLAKE2b-256 |
73926e7e1d87bad96231487cbe1121fc3cdd4615ed9e69e62f74aca6c7fd5a6c
|
Provenance
The following attestation bundles were made for pyspw_rmap-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish.yml on gen740/spw_rmap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyspw_rmap-0.3.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
236c5a45d4b6782ce46fb2f91b7ba9549c20a80d7d361d45608e772ee0fbfe70 - Sigstore transparency entry: 798001299
- Sigstore integration time:
-
Permalink:
gen740/spw_rmap@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gen740
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyspw_rmap-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyspw_rmap-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 401.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1128a4531f59bf8968c651793bc40114240e3095eed7728fbe8d1e1453efdc48
|
|
| MD5 |
9fa9b0206967b3d7da0cce2069abc9bd
|
|
| BLAKE2b-256 |
634aac11242589672b413ec431b6d0aae2f9c367f12b867fbb18bc8f40a2d4d7
|
Provenance
The following attestation bundles were made for pyspw_rmap-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on gen740/spw_rmap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyspw_rmap-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
1128a4531f59bf8968c651793bc40114240e3095eed7728fbe8d1e1453efdc48 - Sigstore transparency entry: 798001308
- Sigstore integration time:
-
Permalink:
gen740/spw_rmap@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gen740
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyspw_rmap-0.3.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyspw_rmap-0.3.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 378.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
853fef25a4471989198e697aa3edeb17a33e28e81de0f3198d00f83b520c2978
|
|
| MD5 |
1282fceb5462b2694691935098e70c72
|
|
| BLAKE2b-256 |
d0474c517165c534b05e53d7d9646b1ef69ce4d0ca662ec5598a89b766745de9
|
Provenance
The following attestation bundles were made for pyspw_rmap-0.3.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on gen740/spw_rmap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyspw_rmap-0.3.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
853fef25a4471989198e697aa3edeb17a33e28e81de0f3198d00f83b520c2978 - Sigstore transparency entry: 798001345
- Sigstore integration time:
-
Permalink:
gen740/spw_rmap@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gen740
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyspw_rmap-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyspw_rmap-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 315.3 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39cbebd2974d1df519ff2c8eb73ffa8e7af84fded91c86a40210b5c85f59323d
|
|
| MD5 |
d34577de595a289b109256b359ad6c8c
|
|
| BLAKE2b-256 |
0556e862e1cf5f181cdb4fc0135b9f24306085fa9111523ee0ba8172b494558e
|
Provenance
The following attestation bundles were made for pyspw_rmap-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish.yml on gen740/spw_rmap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyspw_rmap-0.3.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
39cbebd2974d1df519ff2c8eb73ffa8e7af84fded91c86a40210b5c85f59323d - Sigstore transparency entry: 798001361
- Sigstore integration time:
-
Permalink:
gen740/spw_rmap@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gen740
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyspw_rmap-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyspw_rmap-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 400.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9004abac967193d6da92a2a3f4f2534f92769e365ce3798c52bf52119f7da798
|
|
| MD5 |
7bca88fd2315917c7d347f60b4090afc
|
|
| BLAKE2b-256 |
c76346a5a4212efddf703f4442aaf120f119a84ddc41cbd7113ea36592164dcf
|
Provenance
The following attestation bundles were made for pyspw_rmap-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on gen740/spw_rmap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyspw_rmap-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
9004abac967193d6da92a2a3f4f2534f92769e365ce3798c52bf52119f7da798 - Sigstore transparency entry: 798001355
- Sigstore integration time:
-
Permalink:
gen740/spw_rmap@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gen740
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyspw_rmap-0.3.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyspw_rmap-0.3.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 377.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b0d581d5ffd9a195f5aca2e2d12b5f6c05c93b72eee740023250d4192002d74
|
|
| MD5 |
8853827077070c0f3022ea4aa05c31df
|
|
| BLAKE2b-256 |
b57b45677c311b255f6aebdf88d1e65d3e7992f14e33f216a5c319e95a565ed8
|
Provenance
The following attestation bundles were made for pyspw_rmap-0.3.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on gen740/spw_rmap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyspw_rmap-0.3.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
9b0d581d5ffd9a195f5aca2e2d12b5f6c05c93b72eee740023250d4192002d74 - Sigstore transparency entry: 798001314
- Sigstore integration time:
-
Permalink:
gen740/spw_rmap@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gen740
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyspw_rmap-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyspw_rmap-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 313.9 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47a8b87f9c16f5e6b213d9ad95eb79f4bf2caa5009f7b263a284ac2399defb82
|
|
| MD5 |
8fc146ff5d988d548a5f69672108b57a
|
|
| BLAKE2b-256 |
de89ea19707b4c3f1a27a577f0eaec4f9e8a60ed7af1fffe3e59805d5762cd31
|
Provenance
The following attestation bundles were made for pyspw_rmap-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
publish.yml on gen740/spw_rmap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyspw_rmap-0.3.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
47a8b87f9c16f5e6b213d9ad95eb79f4bf2caa5009f7b263a284ac2399defb82 - Sigstore transparency entry: 798001342
- Sigstore integration time:
-
Permalink:
gen740/spw_rmap@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/gen740
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80d0be2892cb9c0b266b8c7b428f5d3d9a1b2102 -
Trigger Event:
release
-
Statement type: