Skip to main content

Cython code for reading binary files from RPG cloud radar.

Project description

rpgPy

PyPI version

RpgPy is a Python / Cython software for

  • Reading RPG cloud radar Level 0 and Level 1 binary files
  • Calculating spectral moments from RPG Level 0 data
  • Converting RPG binary data to netCDF4 format

Installation

From PyPI

python3 -m pip install rpgpy

From source

git clone  https://github.com/actris-cloudnet/rpgpy/
cd rpgpy/
python3 -m venv venv
source venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install .
python3 setup.py build_ext --inplace

NOTE: A C-compiler is required because the Cython code is compiled locally during installation. If you get an error about missing Python.h, you need to install the missing header files with $ apt install python3-dev (or similar).

Quickstart

Converting RPG binary files into netCDF4

>>> from rpgpy import rpg2nc
>>> rpg2nc('rpg-data.LV1', 'rpg-file.nc')

This writes a compressed netCDF4 file and works with both Level 0 and Level 1 data.

Several RPG files can be concatenated into singe netCDF file using wildcard. With Level 0 data, this can lead to a very large file.

>>> rpg2nc('/path/to/files/*.LV0', 'huge-file.nc')

API reference of rpg2nc

Converting multiple files individually

Multiple RPG files can be converted into corresponding individual netCDF4 files using rpg2nc_multi.

>>> from rpgpy import rpg2nc_multi
>>> filenames = rpg2nc_multi(file_directory='/path/to/files')

Default functionality is that every file with an extension .LV0, .lv0, .LV1 or .lv1 in every subdirectory of the specified path will be converted.

API reference of rpg2nc_multi

Creating custom Level 1 netCDF4 file

rpgpy can estimate spectral moments from Level 0 data. The estimation is based on the most prominent peak of each time / range point.

>>> from rpgpy import spectra2nc
>>> spectra2nc('rpg-data.LV0', 'level1.nc')

This calculates spectral moments from Level 0 data and writes the results in a netCDF4 file.

API reference of spectra2nc

Reading RPG binary file

If you don't need the netCDF4 file:

>>> from rpgpy import read_rpg
>>> header, data = read_rpg('rpg-data.LV1')

API reference of read_rpg

Calculating spectral moments

>>> from rpgpy import read_rpg, spectra2moments
>>> header, data = read_rpg('rpg-data.LV0')
>>> moments = spectra2moments(data, header)

This works only with Level 0 data.

API reference of spectra2moments

API reference

Index

rpg2nc

Convert RPG cloud radar file(s) into single netCDF file.

rpg2nc(path_to_files, output_file, **kwargs)

Positional arguments:

Name Type Description
path_to_files str | pathlib.Path Filename of single file, or multiple files identified using a wildcard, e.g., /foo/bar/*.LV0.
output_file str | pathlib.Path Output file name.

Keyword arguments:

Name Type Default value Description
global_attr dict None Additional global attributes.

rpg2nc_multi

Convert RPG cloud radar files into several corresponding netCDF files.

filenames = rpg2nc_multi(**kwargs)

Default functionality:

  • Input files are searched recursively starting from the current working directory
  • Files with the suffix .LV0, .lv0, .LV1 or .lv1 suffix are converted
  • netCDF4 files are written to the current working directory

Keyword arguments:

Name Type Default value Description
file_directory str | pathlib.Path current working directory Root path of the search.
output_directory str | pathlib.Path current working directory Path name where the netCDF4 files are written.
include_lv0 bool True If False, excludes Level 0 files.
recursive bool True If False, does not search input files recursively.
base_name str None Optional filename prefix for the converted files.
global_attr dict None Additional global attributes.

Returns:

Type Description
list Full paths of the successfully created netCDF files.

spectra2nc

Calculate moments from RPG Level 0 spectra and write a netCDF4 file.

spectra2nc(input_file, output_file, **kwargs)

Positional arguments:

Name Type Description
input_file str | pathlib.Path Filename of RGP Level 0 file.
output_file str | pathlib.Path Output file name.

Keyword arguments:

Name Type Default value Description
global_attr dict None Additional global attributes.
n_points_min int 4 Minimum number of points in a proper spectral line.

read_rpg

Read RPG cloud radar binary file.

header, data = read_rpg(filename, **kwargs)

Positional arguments:

Name Type Description
filename str | pathlib.Path Filename of RPG cloud radar Level 1 or Level 0 binary file.

Keyword arguments:

Name Type Default value Description
rpg_names bool True If True, uses RPG manual names in the returned dictionary, else uses more human-readable names.

Returns:

Type Description
tuple 2-element tuple containing header and data dictionary.

spectra2moments

Calculate spectral moments from Level 0 spectral data. A call to read_rpg is required before using this function.

moments = spectra2moments(data, header, **kwargs)

Positional arguments:

Name Type Description
data dict Level 0 data dictionary from read_rpg.
header dict Level 0 header dictionary from read_rpg.

Keyword arguments:

Name Type Default value Description
spec_var str "TotSpec" Spectral variable to be analyzed: "TotSpec" or "HSpec".
fill_value float -999.0 Value for the clear sky data points.
n_points_min int 4 Minimum number of points in a proper spectral line.

Returns:

Type Description
dict Dictionary containing Ze (reflectivity), MeanVel (mean velocity), SpecWidth (spectral width), Skewn (skewness) and Kurt (kurtosis), which are 2D numpy arrays (time x range).

Development

Install test-dependencies and pre-commit hooks:

python3 -m pip install -e .[test,dev]
pre-commit install

Compile Cython (repeat if you change .pyx files):

python3 setup.py build_ext --inplace

Tests

Run unit tests:

pytest

Run end-to-end tests:

for f in tests/e2e/*/*runner.py; do $f; done

Force pre-commit checks of all files:

pre-commit run --all

Performance

For reading RPG binary files, depending on the radar settings, RpgPy is roughly 20-30 times faster than equivalent native Python or Matlab implementations.

License

MIT

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

rpgpy-0.15.13.tar.gz (218.0 kB view details)

Uploaded Source

Built Distributions

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

rpgpy-0.15.13-pp311-pypy311_pp73-win_amd64.whl (333.6 kB view details)

Uploaded PyPyWindows x86-64

rpgpy-0.15.13-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (375.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rpgpy-0.15.13-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rpgpy-0.15.13-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (370.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rpgpy-0.15.13-pp311-pypy311_pp73-macosx_11_0_arm64.whl (348.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rpgpy-0.15.13-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (343.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

rpgpy-0.15.13-pp310-pypy310_pp73-win_amd64.whl (333.3 kB view details)

Uploaded PyPyWindows x86-64

rpgpy-0.15.13-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (372.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rpgpy-0.15.13-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rpgpy-0.15.13-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (367.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rpgpy-0.15.13-pp310-pypy310_pp73-macosx_11_0_arm64.whl (345.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rpgpy-0.15.13-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (340.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

rpgpy-0.15.13-cp313-cp313-win_amd64.whl (343.2 kB view details)

Uploaded CPython 3.13Windows x86-64

rpgpy-0.15.13-cp313-cp313-win32.whl (323.8 kB view details)

Uploaded CPython 3.13Windows x86

rpgpy-0.15.13-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rpgpy-0.15.13-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rpgpy-0.15.13-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rpgpy-0.15.13-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

rpgpy-0.15.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rpgpy-0.15.13-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rpgpy-0.15.13-cp313-cp313-macosx_11_0_arm64.whl (365.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rpgpy-0.15.13-cp313-cp313-macosx_10_13_x86_64.whl (364.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

rpgpy-0.15.13-cp312-cp312-win_amd64.whl (343.4 kB view details)

Uploaded CPython 3.12Windows x86-64

rpgpy-0.15.13-cp312-cp312-win32.whl (323.9 kB view details)

Uploaded CPython 3.12Windows x86

rpgpy-0.15.13-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rpgpy-0.15.13-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rpgpy-0.15.13-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rpgpy-0.15.13-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

rpgpy-0.15.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rpgpy-0.15.13-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rpgpy-0.15.13-cp312-cp312-macosx_11_0_arm64.whl (366.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rpgpy-0.15.13-cp312-cp312-macosx_10_13_x86_64.whl (365.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

rpgpy-0.15.13-cp311-cp311-win_amd64.whl (343.7 kB view details)

Uploaded CPython 3.11Windows x86-64

rpgpy-0.15.13-cp311-cp311-win32.whl (326.9 kB view details)

Uploaded CPython 3.11Windows x86

rpgpy-0.15.13-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rpgpy-0.15.13-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rpgpy-0.15.13-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rpgpy-0.15.13-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

rpgpy-0.15.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rpgpy-0.15.13-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rpgpy-0.15.13-cp311-cp311-macosx_11_0_arm64.whl (367.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rpgpy-0.15.13-cp311-cp311-macosx_10_9_x86_64.whl (365.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rpgpy-0.15.13-cp310-cp310-win_amd64.whl (343.9 kB view details)

Uploaded CPython 3.10Windows x86-64

rpgpy-0.15.13-cp310-cp310-win32.whl (327.5 kB view details)

Uploaded CPython 3.10Windows x86

rpgpy-0.15.13-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rpgpy-0.15.13-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rpgpy-0.15.13-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rpgpy-0.15.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rpgpy-0.15.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rpgpy-0.15.13-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rpgpy-0.15.13-cp310-cp310-macosx_11_0_arm64.whl (364.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rpgpy-0.15.13-cp310-cp310-macosx_10_9_x86_64.whl (362.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file rpgpy-0.15.13.tar.gz.

File metadata

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

File hashes

Hashes for rpgpy-0.15.13.tar.gz
Algorithm Hash digest
SHA256 51c02b5beb91300f6a1cb896350a6f6b42daa04acd06f115e5df0df2cda43af7
MD5 5c2428884d5a8fbef89cb5008280fb66
BLAKE2b-256 158a819e32a06e37c253f64f03048899763385555d074db5ce10e7b630db9814

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13.tar.gz:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 10bc108881818d86041c1cf172dfc0dfdf73dd8cca59ad365ed06044ac620118
MD5 b3e87750ab4b4544e625ffd1dce3a188
BLAKE2b-256 df4e72ce2f25fe26860f9c64e3da572e98b3a0edf7563b350c886976080171fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-pp311-pypy311_pp73-win_amd64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 431baa5f5c493383ca363c62bbf615b0b5c4751ebc9e5ab613b12cba946f3a2a
MD5 3d013eb1a1e3f02dac052dd1336e5a63
BLAKE2b-256 5e232434d4e77678357808685ae4bf8954678cb16a0f01b78770f09026b06199

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a00d6ec2b6bde3dae3c8775ff30e482e6e4aa681cc58e50507f451e8c3d8fd2
MD5 b55bf6d0df511c467eeccbe17665916d
BLAKE2b-256 a13bc95d4838e0492f428b1884c0c37a24ec33ca1750e90b2df58c0a92e65b5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 52f3afc0d1da0711ae183276a81f112dc528925b5ea61a5f45c744f4df567b0c
MD5 a2f1e8c9baf69c48cfb52a99979758f0
BLAKE2b-256 fd21522acbf73df01858e0f0565218df4a46583f1e830350996d127d1b4b8e31

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07a8c179f43d617a3667dae0c3681cb77a8ce373c38c0ba6711594eb0b0a8b5b
MD5 f3f52fddf8bdd3b69c3b659c4e9150e0
BLAKE2b-256 c9409aa2ff17d6c8f51af48ebcf7455f163cdcd51cb8e19acf0f6cf73bdedd98

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 20ba341b73fc93dd32c7e35f236cf3a8ce0fdb57cabf421db0a3cb6aec6e6db5
MD5 e2df90ee03e3f23dc08443d38b64ff62
BLAKE2b-256 54d70b7905bd21c3ec56ddce6cbc257c39826ea6829b92bc43e1c2014764d8c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d62ff8cfd8543c43311f74aaad64f889db785f5511b0b99cbd134cea11a42b60
MD5 b04808915fa5ec8a8c83ca254a0f833a
BLAKE2b-256 6bb11ebcf1afd8708aaa065a82163bf1bb7256909a3d6f45621b9e80475a9584

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-pp310-pypy310_pp73-win_amd64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58106ca55983ff628e0a9cdfc7a4444df301774d3024599a6fb2dd909663ec13
MD5 0d15aa96a9a81cd4e293165ed75c07b5
BLAKE2b-256 fd88adc7a993d65facb51eff7019a146b9753da2a2181937588895bd4586169e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ad76f2368dde7b2c71837b85abaa9c6eb8181a4734f45c67a1c9c4b934df106
MD5 34d85596512887cd33315cb76ccba215
BLAKE2b-256 fba5ca69a993e96c5aad58baa18637f35d6a7482fa7259b567b9c45379cc46be

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1d7bcbb716806fa4db97e103c271ac201adf6b80b0fa6fe1bcc457552aaa9ba
MD5 11b2b0f2970a5e241fcb942abf107274
BLAKE2b-256 7bd887a6ae3db5954d079a47e147c0cfa5e0daefcf73a6946a247be95ebbd7f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f005e0ea0ef0ec73d4f79899a6bd0d7700bee28d950cee766fc618c93167e0b2
MD5 0b744fc5845a2c691574fa6fceb0fc76
BLAKE2b-256 db210079c50f7b3d10cbcc8c4e1da2f53be43ebfa6eea8c911de9806e39a4c2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 52d3475ae5160925b558957b4823b23437df941f42fea73775e05ce9e2a8bf3b
MD5 9aa9a87890cdc1db2f5f81bdd5b0e038
BLAKE2b-256 2c3c322214aec07605e9af64f2420d42cd9f0b1e4b04de069af58d7c0bb47c12

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rpgpy-0.15.13-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 343.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 rpgpy-0.15.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8cd990761c4ff52864ca38f97c688a5a98ad9e6014de1a533cdd729f7408efac
MD5 97ebfcd1a163cba327644e3310fe2f95
BLAKE2b-256 b7f5dc83deb652043447f48077ccba50491154ed85c50a6cd7d3c705d46eb1d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp313-cp313-win32.whl.

File metadata

  • Download URL: rpgpy-0.15.13-cp313-cp313-win32.whl
  • Upload date:
  • Size: 323.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpgpy-0.15.13-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1f5148aedb800fd86cc690c0fc0b0d200d17297ac627b9bd454086cda7e2bc42
MD5 5beffdc1a1b15bd83eb2235dba5b9bbc
BLAKE2b-256 5b2fac8030ae4a328f143c25de3f7c5e3634faf113a96a374c52bdf35de1acad

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp313-cp313-win32.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 381b3b88e050f9ffa163ad3ea81919d5c0dcd85ab365870ac33082e59c406ecf
MD5 222d033fe8fbaa5fbcfa58fb44fc825c
BLAKE2b-256 9bfb49eafad79ddd2ae71707cf955c5750c3a9273dfe1738a80699755397bbed

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9dcaf7c3db5aa84278e7ece588f29f8c4638765eba3a723b08e102c96d606b51
MD5 978dbff3c60bff1410b552e5db462150
BLAKE2b-256 37f58da512d8221b97717296f9f59708b34cb2ada048d19b440c6182e11890f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 668991bcef9c56055f9fe2d36beb9073e615da9cf8a9eae0974131aa46554d06
MD5 cd9a6fe6780255367d5dc599afc52063
BLAKE2b-256 1ed6c9e66ffed48a5ac301cb4b46336004ac45f1db6970c437891c68e92fcf58

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b38c4913dc38a2dfa7fcd7b873ed84b4c6ed831f19f4747cfc1fb1a451a023c0
MD5 6cbe57bd0821a93b9998e0ff350ff61d
BLAKE2b-256 64241dbbcd724e74a885f420a4dd0835a0ecbe9b894d8d823dbfc24550be05af

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11bc39ebcc2ed856d9ea584284d4e313b89a0dff5345fd15076e626563fd06a2
MD5 97e1e905278894a0e597ff7d29fefb83
BLAKE2b-256 07459aafed83fc799966bcf2922a9e80a10d5fc887ebac5b13fe48642f84a6f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0cd5b7fbc550852d96dad3b0840142d3df2d3dedaa103dd35443f151bab6dd22
MD5 924226f55910bbaa4b97eb3b7b4b576d
BLAKE2b-256 04b70602695a25cbb35681faa004d9b14773c0b67d8132c424d7cf86c13e4926

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e57c4e4510e41d429edbec153bc1ccdcefe29c1c34c48d73bfdbc2fe336a742
MD5 d2d5fac37935210c044a9f9ca7f4ee7a
BLAKE2b-256 9d57d537668296aad5e591f69b24b7ef2e5340b944ca7c864050a0af00ecf8a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7406b8d13187f96c744fe1080a37a4d8b5dc3df7cbb4be33ce563c13138a5831
MD5 024e0b205b0d6191240adb74fe091b09
BLAKE2b-256 138928f70555b4a9c779ea07da7773d1546a9697925d4e9de2bfa6bedca5b9d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rpgpy-0.15.13-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 343.4 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 rpgpy-0.15.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eba534cf3af7bb303cb260965ffc1107a4cb520c9c0eb2442a793e494430949b
MD5 7746b8921506705942f0a2cfadcb267c
BLAKE2b-256 6441424732ade4f9dfcea874b04a08f2cb7c87a3fd6b19f4c52b8ac5a92793e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp312-cp312-win32.whl.

File metadata

  • Download URL: rpgpy-0.15.13-cp312-cp312-win32.whl
  • Upload date:
  • Size: 323.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpgpy-0.15.13-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 35b02e9c239148516f0bd42f6e4a3754853fed2b4707a499effbdfd5e6b313e7
MD5 58eda0e147ceca8c4d8f3d96c1f2656a
BLAKE2b-256 1af09feb82070056fb7622abfeb1a717d05a7453c53bb89a679babc43013a4b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp312-cp312-win32.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ac5ae8ee24d5882ad6dba54d8ea7aa9f7ad6ff66127f63976482fd665edb02e
MD5 554f4498b81660dffac1fde1d3f975dd
BLAKE2b-256 10b8265984123bf33001d54bebf60acde8c57e71a7ea1576158d583de7db8f8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95d0f07777856eed69117c7e1b3018808967d892cec0f54d1ee6d54a30667a65
MD5 3f159d90c582be3426e00f09ccc8aef8
BLAKE2b-256 d0af03dd244607e0d7dd8ca4e3e65c84c64168b6c305ac40ff4d119ccd11fbc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 510189e461177696e9b83e467147c635dd08e6872944f4b320a08a8d25a5b04a
MD5 9d2bf04dc22c9d7c99583fc2106555da
BLAKE2b-256 84e7e59251df81b7c24a3741b444fb1f483a9cb8166a8aa551a0adb6306e3965

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 370081de519db7d740f1626092538fd014c60efa80808f4eb587acd0f9600913
MD5 061f42bfa8cfa2388dcb60c55ed10a8d
BLAKE2b-256 2625b920a722dec3147994223a96e2f360fff95fa6d8e558a34aa732e57fac1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f229345ad11b56416e27f75cde605acca65a749278eab5ea49b8457ce3e3ef05
MD5 4d353c376d1e358f19f25a3053c2eef0
BLAKE2b-256 ad33230327dc4e175431fa37ffc439faa05f700f02912c58225b23902d3649cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f8b614135b050d05ff3913b606bb2ac03668c1a06fa0212e8136a9d37c64f730
MD5 7e31470d6c5859545c737435e4aec83c
BLAKE2b-256 2c54e50916a9db5e172a2e1a68ac3af43536a085a2b5cedfbd3505e0f1453d78

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2f9986397a7a231c1b67399df91943f34835aa34e35d4a7935899037376c4b6
MD5 3d68a53a0e9ad59d925540dd7d16559f
BLAKE2b-256 3d911374bc05f42e359e98f175cc37ce1d742c702e71092bfb4755a747cc15e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5ec240f2172a0020b0184758f81448c786dbb0bcfdd6a77dd06891e675e160da
MD5 7a8181879dacf98b18caf2988f7c408b
BLAKE2b-256 1c67d86a9f7f4da1f86293e45db0daa9b7b15e0dc975a26b09f5cb80aaedbb78

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rpgpy-0.15.13-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 343.7 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 rpgpy-0.15.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3b44a709a50fb8eb89decb0723f2d0dcc75520dea352223a4bca84e655742272
MD5 7cb5318eede6d9573404b2f0714f651e
BLAKE2b-256 0d43aa391dc6ee343045cdf395a8e0a959923da0da7bfcd0c13cfb955d0bfe1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp311-cp311-win32.whl.

File metadata

  • Download URL: rpgpy-0.15.13-cp311-cp311-win32.whl
  • Upload date:
  • Size: 326.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpgpy-0.15.13-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f7135c01fb0f0b338480204e5bbdca125ef69d8a31d6f2ceb33cf4986db9391a
MD5 e11d2201a68536c7cd255466884e13a2
BLAKE2b-256 61395bbd5c391c9cc1584e4726e87a2c1cf84798ccd38a544d1d2713e3c383ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp311-cp311-win32.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0672f8946b9d34d1f68f5f90dc6f6d2115149f9554abe10383566923b2b610df
MD5 0c53760722fd2322a28345aa0792369c
BLAKE2b-256 8879572d7de36ac255c4aa996e0235eeca77fac4452f9b093091d7394dbfa81c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 510982e27be8a14f06d2e1c4232e93a215d336a820c2e99f1d521d4ca8cfb452
MD5 400c110271e134d25580a26fc0ebf4a9
BLAKE2b-256 89f46a6952d1699827e9c07a3b266926cf609913949322a65a0f6d579c629d12

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b6d2df2461f76329b8f645978bcd01c2830d9621956931cdf15d0783dd693cb
MD5 fb0cf88054ff9104839342ff895677a4
BLAKE2b-256 05646ecc512bccc87c330de89d05fab7ca4250f3e9fed1f3fc04f5b986899653

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e28dc633832889d983e616d465d0fd1a1c2ee288ed7b98a3817b4f04fb4fcd88
MD5 a939b08d5f57fe8e011ec3a405b73fc3
BLAKE2b-256 31066bb764c7128ca5785964683029f4c3346c0b22a3b1ea7322bf62383b964f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71bcdd90953e2afaa6a3937291b9ac7efbdda3a227b6e79c01fe558bb86f0e02
MD5 c57113dd13954975e42c061e46eebbb2
BLAKE2b-256 999c2a52f36fb3cb870ccb25ad348b37a8d6d63287bac80987c1fb94f909e1d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f230fd96f2706ed3279cf46d2647c2262432a278651244e92fe10812a1fc6ac
MD5 ecb7ec3ce6463e3d2d357a23d9e778d7
BLAKE2b-256 af96c8075411a7711e87817f64297bb17fe163eb89b0eb78e4b9c7d92750601c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ae55070a20b747981593b95c9c28a7e05cc0688dfda510815234344f73a3733
MD5 d1df9a9fa14a9a5e1003e34f4395d06b
BLAKE2b-256 7cf777f888cae85ef4d370e9cc155e7c3577a179f224a64460e0d373054e9708

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9264edad4c6898ab979a138be2afb58993bbfe9d87b4f03f72736715ea6a25eb
MD5 4975670eaf017e5cf6bbbcf523a58a25
BLAKE2b-256 407dbc959463614446e2f565321467cad2915a00501bf4a204d13a0f89b631a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rpgpy-0.15.13-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 343.9 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 rpgpy-0.15.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c25ae38f5dabee4f79f07c91560944cdf84eef32bbba02481a0aab15db570ec8
MD5 39d5a6a6c321e2b4140987c373af507f
BLAKE2b-256 eb708513184bd0de182325f680464a02a28911ef7b9a74225033d0adfd9e736b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp310-cp310-win32.whl.

File metadata

  • Download URL: rpgpy-0.15.13-cp310-cp310-win32.whl
  • Upload date:
  • Size: 327.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpgpy-0.15.13-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c7fb5e3bc6f0dd4413dacc0dd58b98041781ba558840fa1d40a69c4309016f27
MD5 00f4fd99f109302f1b56e877d0233733
BLAKE2b-256 67b3cfe3334151077c268e9ed2a32f3b8b552560482a171e1c2fbca8e4ec2173

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp310-cp310-win32.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d25db3496cf96aafda63f99684a758c080788e33c7913fe1789342a6c71258f
MD5 5527900e2ba411323ba67ac813576ea7
BLAKE2b-256 35a55e7c21bfe5ee8ff2d4eeb759409f88e71f5e5b2df26fc34936d2852eff67

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f755d8bc4729d77254f8e2dd4d72b9b8d7e4281cf89b07cf1bbbbba4879e6cbe
MD5 d26a3755b158ed53f12a1b282672b19e
BLAKE2b-256 876cb20157ff30c81c1cdccb7c457599210b0ee5a999ada94fe5bd8a9544f4e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1cc7fac7c9c411fd7c7d2edc7f1e1ca5639d25c4598dc2d7b64e5125556405c
MD5 f06afe285d0322a43ca6f2ae8188a326
BLAKE2b-256 8641c12781d4a86a28641f02a47b7198409ef4fb54e880219342196d5104ecc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20efd1b8d6e47937f64965c95ecbb6972cb8321d1da0aff15bb1b219877ee9b5
MD5 a98bcb8a512304bc124f30be719b0a22
BLAKE2b-256 cd41214140a0d56169ccc20e611f1b8fedff5a2e42d37ef4373f4e17b8f5fb5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34804e7d65b892980d6b1cfc66c61168c8729da3bb3ecd1eea26c2620d213197
MD5 b2e93ca57709fa5f77d0bc5e431a69cc
BLAKE2b-256 d56ef1ff79fd7574e5a4d0c967cac431d83b96eb880ae544f686fb4b59fde976

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 93376550028193476f183d73cc54e6822ed6132e57c5a5477ed797b9babc912d
MD5 ddafa823d1cf446edec03fbba3f78286
BLAKE2b-256 a3edc68cf3a21e4504a4796d4e591a6bc6807178cfcd1b3403edfa4e4366a49d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89e5ea29cc82cb63ba2b03d40dd8bcb2d02eae48da7cd130e085334e3b90dbd4
MD5 b0b3cf8e14285d35901743edab1c5fb0
BLAKE2b-256 c6a4845ac084204ffc3c80b54057ded8a46be79a353724e4561b25ae648c1c40

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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

File details

Details for the file rpgpy-0.15.13-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rpgpy-0.15.13-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e998cb569cbb2ecb8333532028f59c54dee807a1a1fa5ae934c3d634c0fa6f3a
MD5 c6a605c6fdf9501945b246f34e6376a6
BLAKE2b-256 aa9c8669cb5b54205b2239409e2df95a9c895cd9a3427362d5bbc53d666a7946

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpgpy-0.15.13-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.yml on actris-cloudnet/rpgpy

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