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.30-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.30-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.30-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.30-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.30-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.30-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.30-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.30-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.30-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.30-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.30-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.30-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.30-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.30-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.30-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.30-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.30-cp38-cp38-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.30-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.30-cp38-cp38-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.30-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.30-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9bd1dce54c6f41df35027455450737dc827903e8ea5a41323195d88561de3dd3
MD5 2cbced2095f6421c3eaf72ace5c7a081
BLAKE2b-256 1f7225288f13ea4e230c20027c249edda12426aae9c4c7676f0e5753c5fd79bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 498f3f0c68fd03ba37b43156e62f0424faa5ed6230949ce5f789b0d4ba98957a
MD5 f059ebb6f3844fd70d2c26504ba3cb1d
BLAKE2b-256 ae17ceb7deb64b9a955f560e76d57627122f1e075ab046adfa9f225150c6ea69

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35503d4f0c50bf6efc2d09e9961aee7e5e4a8805cbc8835f70c0251984a0c738
MD5 de8f9509e6b582f62532f3b8c4fd4c58
BLAKE2b-256 0e570d408d82d5e132e9415036cd15f5189402a4dd4c9b6c4f522f5c8bb13257

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fb6ec2b11ff121f5b633afb17a41f0fceac9f90137f6f57dff7035146866504b
MD5 2ed5971a48f930ea82ce28bab3bc2f25
BLAKE2b-256 0ee1298a4d502cdd8a7f79784c0b9985c5a001ad6cf30fad0100a3d7f5c085a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1872b7d6e4c22b6f323fe977683dc173607662f6ef1c3106c3329d20270f288f
MD5 9b41411371b6d4a3d4844e9c80fbd030
BLAKE2b-256 9be9ec8cacbec4cebf6a4ea72a65f44da1a4d57b2c3368db8c3923793308e1b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fe19108c656a87b1c2833e4a54212588a49ac8b81dd4c3666f53836af69907f
MD5 f9b6d905de8fe3b1b75e528e8001521e
BLAKE2b-256 d99d2e47484d72c432956e473f59aed8ef6a249cc2c89e70dabe784f7c25856f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d37a53c1fcd5ccb30c62f8b1efb67655e98220f74dc42158b5ac58cbfcad97c2
MD5 ec62783baa1568799296d70725acd9e7
BLAKE2b-256 2989ba9c5a06532751d676a545a53b40eec57335611d566a4fb4d6dcfe99a7e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 37cab0ef5f0cc4715b20ee9d812ae07a7369dde0382c38b4371e4bbf0e9d0692
MD5 605cb59c94eb36488301aa9615d7154e
BLAKE2b-256 0aa6142c4028279e4a7b6cb47eebfd7f3a49182c97e72f03936dd62791ea03f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 554b1e45149afb76571bc796e261946f18d9f81d0dc57ea66d90ffb823a092b1
MD5 5a3e544e5a55055321ad1b32c1c6b16e
BLAKE2b-256 8b681b0815ff442e420a3682f9793614646df2a8423062b8bfe6e9e2742f54fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86d817b4e3f34b8bf6dd725b776c2157c03196d88cebf2fa119be14da3ae5363
MD5 2acb6e26b71c5c1e4379716abacf0d43
BLAKE2b-256 310517434f4ff740a1667757d3587bd5a933420463f81eb6559747303db8bf87

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45bdac6a97a63cf22f003623737d16cea75997ebaff6e5aaa39716a7e9a36b32
MD5 2eb7a0890e8329ae5ca64c49c7940446
BLAKE2b-256 08f4bd7f00feaeb472d9f0b2b5c98c27b0adb59fda3c36baf1d1485b1c9b3011

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7c956774926e035627ea591d100ae2a1a64367deac5578f87e878bfd940c605f
MD5 8c2649b986c1148e779c151a4466a414
BLAKE2b-256 f092c9538713753c6bf7fed1519a7e85669d8e4e1ea53548c91995599a199685

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fa79268fc863503853043dbeb2707d6c093acf6f7d51bcb9e8c66dd581ac6f5e
MD5 a9bd2e74a7f3765e5db6600509044726
BLAKE2b-256 ddc5ee05708cfb6edfa019c475a47871a96820b9f2785fe32b06aa358759ff30

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 280b71a087d2da6f13215396bd864d695267a30c0d17d85be6db862666a25dd2
MD5 08685e56b674d160840a6e58f294bf46
BLAKE2b-256 ec1eeb42963ebd36a97659d918170c08231499de321278d4b95446c35aada9a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 891fb9fc86668d617c3b7395e09ac6333c0af1da17fed3fde52b82e0d69457df
MD5 1dd6f74e98e62095db1b0d572e53a312
BLAKE2b-256 ffb8f30f053137057053490d06972fa7a6fea9dfa028e58398e04795d176ef0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da6982d5e8428b02ca3a2826e7788550f6efee308c049d70227f13afdf081bba
MD5 1d30d23a841b33c22f8d3a6b128bc459
BLAKE2b-256 a1a923d91019a21720393a7b016def6fa43fbb8d19fbf26529b971d25401e494

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 edd1c6c62248bb18b909087005109c8941730c35028fc0ad045403b2dd52e381
MD5 92aa28bd37db39633625ebac5b332e1b
BLAKE2b-256 3af39233a751000b5c53222d6df715cb07b749a0c2e2f2b6b5f6d83fd8932b18

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93c81f9b2ad13e562231de9c1e2258da83b3e0d9ecf2a10a8ef81901845f7ba9
MD5 7af38e5398f70f935972e3844a5750bc
BLAKE2b-256 852634492b99904990bc96831828f63c4a16cfd4d27678dde5aeff62e97dfa1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9e338de7a06ed567100aa0542d3082c0aebbe6befda25fa1f2d04f2ecac740d
MD5 fc179d15bd1f90190c08a74d019a5199
BLAKE2b-256 06a7f5572b4857461900acfb97b0875c767cd7f7a6ea3e7a5d84f4d88e39ba4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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.30-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.30-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b75fd6c2cec1f6cac47fe6baf8e742071fe082a3046cb37306321e2a2354d28c
MD5 105399e1d04343d2a4c638a39884fe76
BLAKE2b-256 9dcaaf1b0f241bb68d9e94e45944b5e8dc866af5bc3cb3e9a815e46713e2f555

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.2.30-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