Skip to main content

Rocket League replay parsing and analysis.

Project description

sprocket-rl-parser

An open-source project for decompiling and analyzing Rocket League replays. It exposes a Python API that returns protobuf metadata, JSON output, and a pandas DataFrame for frame-by-frame analysis.

Install

pip install sprocket-rl-parser

Quickstart (Python)

import carball

analysis_manager = carball.analyze_replay_file("path/to/replay.replay")

# Protobuf game metadata + stats
proto_game = analysis_manager.get_protobuf_data()

# JSON-friendly dict
json_game = analysis_manager.get_json_data()

# Frame-by-frame data
data_frame = analysis_manager.get_data_frame()

CLI

The package installs a carball command for one-off parsing.

carball --input path/to/replay.replay --json output.json --proto output.proto --gzip frames.gzip

Output formats

Protobuf

analysis_manager.get_protobuf_data() returns a game_pb2.Game object. This is the authoritative metadata and stats output (players, teams, events, goals, etc.). The schema lives under api/ in this repo.

JSON

analysis_manager.get_json_data() returns a JSON-compatible dict matching the protobuf schema. Use analysis_manager.write_json_out_to_file() to persist the output.

DataFrame (frame-by-frame)

analysis_manager.get_data_frame() returns a pandas DataFrame with a MultiIndex column structure:

  • The index is the sequential frame number.
  • Columns are tuples like (object, field) where object is game, ball, or a player name.

Example: pull ball positions and a single player's positions.

ball = data_frame["ball"][["pos_x", "pos_y", "pos_z"]]
player = data_frame["SomePlayerName"][["pos_x", "pos_y", "pos_z"]]

You can also persist the DataFrame with gzip and read it back:

import gzip
from carball.analysis.utils.pandas_manager import PandasManager

with gzip.open("frames.gzip", "wb") as f:
    analysis_manager.write_pandas_out_to_file(f)

with gzip.open("frames.gzip", "rb") as f:
    df = PandasManager.read_numpy_from_memory(f)

Advanced options

analyze_replay_file supports additional flags:

  • analysis_per_goal=True to analyze each goal segment independently.
  • calculate_intensive_events=True for extra stats that are more expensive to compute.
  • clean=False to skip data cleanup if you want rawer frame data.
analysis_manager = carball.analyze_replay_file(
    "path/to/replay.replay",
    analysis_per_goal=False,
    calculate_intensive_events=True,
    clean=True,
)

Troubleshooting

  • If you see missing or invalid data, try calculate_intensive_events=False and clean=True first.
  • For reproducible analysis, make sure you are parsing the raw .replay file and not a previously decompiled JSON.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distributions

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

Built Distributions

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

sprocket_rl_parser-1.2.16-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.16-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.16-cp312-cp312-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.16-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.16-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.16-cp311-cp311-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.16-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.16-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.16-cp310-cp310-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.16-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.16-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.16-cp39-cp39-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.16-cp38-cp38-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.16-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.16-cp38-cp38-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.16-cp38-cp38-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file sprocket_rl_parser-1.2.16-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d0f6aced3a18c3ad2599baaaed33fb73039f5280568196098be032c85a7340c6
MD5 2c1202306e6e082fa7f0c8b7171a9516
BLAKE2b-256 43a150de6d5f3b66aff91423f2656472a9897c9fa0561323537951de84e8dd73

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp312-cp312-win_amd64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fcd8cd0c1bba2dbcb07efcb487b77eedb247f7b3f3d4f7ec62946a94ea03398
MD5 4fbd9a4aaf79f0c1ae3260b41c70ac37
BLAKE2b-256 dd57ecf744a61e1298f676cd07314395384e095ce553ca61988a82aa7eda30ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0441160e9b0df5cc6c6afeac6da0aef92310946b36679510b098344a50868dda
MD5 798a4627d0e7b3aba54e33c35d66007a
BLAKE2b-256 3935e8abb26dd543bd636b11a3d8f3b1940631b485c25daa73767cd72b1eb3cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 60ed72dc439a3be9f02c2abf8b9381f6230b29b209203e4849c8812c854430a1
MD5 9a4a380f5b2057d4d9823c8ddf6fdb7a
BLAKE2b-256 1404e9e54328debd60ce8743c31f299f416115b928407a80c03dc3bf38536299

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d814a1985ff3796aaf662bcc8ce9e79989c1c17d2cce23c45a9ea148a61eb9c8
MD5 59553763a24d30275826dc3f4a3829fb
BLAKE2b-256 2e436da528e816d022ad1f135db2784294a293a3317ca361a1c297b6816d40e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp311-cp311-win_amd64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebe38a6c124294544511a14a697610a7961d7804a9f89b1756ac42927b1dd63d
MD5 e6e93e744272ad162b4200156c6ecc15
BLAKE2b-256 2f3ebac067f9231414a6421b763d1c436b3761d2ff264cb56f63b4c15ac5727c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6b313cd009f60fd2b5a291d17a0a5d61ee4a8c0131feb23e19d7615faf819e0
MD5 26a299398346ccfedefab837895ff20f
BLAKE2b-256 0e2b775e0dd509400876398b7795583e8d62a92b15fa55acb3dec906d9ba6c6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b53e792099e6b787690be215bb87004cd36f30117aa6f8c935b66bb9e52feb5
MD5 be3fbaafc1911c21c8da681c5a5d97fd
BLAKE2b-256 175f2637168b29b7a506d395eddfb6fac550962b7924584b6d06e113ab12feb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 39dcd6d2b230c24836ab2fac03bbcbc8f8d14413dad2847aa77709630701f7db
MD5 dbf509b7bd134181fa66bb2d71f93db3
BLAKE2b-256 fd6e8043cbed7f942faf2d142bf25bfdbcf08ed982de636c11116fd9089a5581

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp310-cp310-win_amd64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff5ecace406a60e7ed867898eb4abb28cb499261f5fb52ea3c19210c3db04b22
MD5 50cfacfc5ea6040f73bdbe23a476fd68
BLAKE2b-256 0b1914bf29ead6a1f44ab95dba86a1fd03de4fec4b818471c82532bd99571b80

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a8cc4ad537dc1f1adb9cda9d2283718385d2d6d983412b4a94fa4a43ce7a308
MD5 40eb856f6e754031ff3c75df3fa8ede1
BLAKE2b-256 5e2809c693f44f493944cbd693416b5ece6ad3877f8c365e173dcfed9f8fd13f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7dad6da1a83a40bfcce4732d3aa2757517f98ae3424384ec363fe051ba211955
MD5 aec2805da19fcb978c20de701b1cc9af
BLAKE2b-256 2771241bd0ece0a2e4bd20ca9cceda6dc0267c7b27cfac2890ac77ee59733b64

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0a3f7203ddb3c4808fcbaf3620983316f3b44b082e9b609b4b18fe958b1bcc82
MD5 203c5c1aa856ae887f431eec4d0ec178
BLAKE2b-256 013377879c290e45c543445ad96f988c676bbca9d3410918924489b9dfd20b7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp39-cp39-win_amd64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c474a59777e13a981595541c70468d140da2006a659304f25c0b9b0881c4bd3d
MD5 11a5b776b13044ce8650462d3861bf84
BLAKE2b-256 4423d068c6bd18607c67d018421e4242a8f1e4fd4989856e7ff1c1544bd3de41

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb5c70c11b1c4d7e1d03fde87a3827ff31efd3e0bfe52d65773945e99779729d
MD5 bcbedcb91c47cac40f140066f1dc5595
BLAKE2b-256 fce3099988f69f006290f413062190fc03945e247074a8b41f421d938120c3db

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b56a7d77ad529b4c9b29f6b33bbbc4e86aa516b315ab424ce8fda8736ade8e7
MD5 e3d2f41362224c0e49b99a840106e839
BLAKE2b-256 b0fc37c245ed16798a516dbc71201511f270bac91994a4741dd59408fc207b49

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e1d7b498a9123a58f24963f23bccddf7580eab18fa34f420059d18609caade44
MD5 8a4cfa5c20aa21d99945febf4c8c4918
BLAKE2b-256 df8a741700835eab8cbd3ea68c967a29ffdce8a9d30ca915d1c4b8665aef931a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp38-cp38-win_amd64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3088367d6de9e0ed1759d4091b2607b9dd9034d1d69ab0a01e84b347aa103ed6
MD5 32777580fb0746d9b28443fcdf84bdfb
BLAKE2b-256 0e3506c32b9bfe353c64ad86ce8087eb9437829fd7d8fba54e968d5ff6c34b05

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c28774e48732363887f9cdd2f7f427b29a8b12a44e1a00b7f83ac1440552351
MD5 810c55ceda2f5449cbc79563dffe32ff
BLAKE2b-256 3e6832f59d7690c0eb2b829cba64a295ed8222a37cbb1348e4ee738c710fc93a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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

File details

Details for the file sprocket_rl_parser-1.2.16-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.16-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9800ea0e6b04392d9c7dd41e7b5542fbb5d50208c98b83a6df7bc19b0c0e60eb
MD5 6142d8b5d91595eef848822c50c2d93b
BLAKE2b-256 f902407e6c4ab0344c0b2bd1735f51f459809d603c802419e4a5e10be3cf2b74

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.16-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on SprocketBot/sprocket-rl-parser

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