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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.44-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.44-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0eff013f5da925c059eb0de775979d3b62796c51853e01dbadb3c14cbb960b18
MD5 dd4a806b5144add2c8ca5ab36f3125d1
BLAKE2b-256 a842f3a27d51baf2e3e8917440649144d53150a3fe27316a715426fb517ea7f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3f946f25786dc3cc830fd3635f7ca80aa15744c45dde4b7c2c1aeae59f8e7e3
MD5 a5191ba4e421cdea8c739461f526a177
BLAKE2b-256 3be4aa3f4d4fedc7814df472e2988a5f5696b5b3a25a7df1f251202d6894bc7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86786d54f27397d13eb07dad7bb6622a42af4606b1c2c1d41ec16a032480bc7e
MD5 975787ceaeb2e2f475f717a414b6220b
BLAKE2b-256 818f68f6b776e2e43affc8134ecab89184dd4c8f19cfcb176a34e0efa5c472a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b12833f225a82271d5476332ae85991342171ddaf1814dd399004f3a0bf8b999
MD5 d3ac9475574f2e5ea243402c7a162a6b
BLAKE2b-256 b682bae8d39da1242a5d792869038668f1c76d6e5067adcf2055e4d5ed803ba3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 36371c6bb20dbd21a3caf0d9a1f15493a4759480306f8ce56d3cd68a41de66e7
MD5 9af319565b71f14512156526c691a63b
BLAKE2b-256 a9c7b32431de4e336e786360173674cb9342c290bf622ba9fa2f06816755b04e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36dccebc05c068e51546f7df0b167389c1bc78960e2595fc78e6bf295a0a4465
MD5 b0632af44d2f4e884616bf4a20e2067d
BLAKE2b-256 4be23bfe722da817afbb7b8bd6564e035c63583e1e227982fd789c35ef427faf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26fc6c2ead8e567bdef215d94111ce5672afea9d85e5cb6b8371b9b3d00cd8a4
MD5 be740130d3a1a9b9bbcf1fda597d91b6
BLAKE2b-256 b744b15c1d835be73abf0ce3dbfc0a331404fa8bf2401e7d54282b07efd1d2b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0cae827b51abd2aee1f5dfb07bcbef23531372f1ae9bd87ebe34f882375c5b00
MD5 f983be71c3d68b1d27abaf25cfbb878b
BLAKE2b-256 f7e4664de7599a6795e3b6457a4ffe003870c9943bbdbcb31b234813fc147639

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 928006164618a0bc30d64addc0c95116fffd9d99fb38e8c1b80d5a7c7a06c3ac
MD5 2f3f39b8a3122bcebf1327d8eba86ed6
BLAKE2b-256 cb34eda011d3be6173d9508c404700d7692f4df63503c28cc67dfa17942bf977

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2be9aa16c41e7ba64d2ecda55dfe7593eb9bf61a07396bd88ae998e265ff1e9
MD5 4cb8d9443c8740b6a71be3674ce3abea
BLAKE2b-256 f65777c12f576537bedc16e1148883f981a978a6d24fb871edade9eadd7fc726

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a32f2961c49b9f2233cd1a093ccc6142bdb0733b281ffaf94b06430b036da29f
MD5 40511aad9788e536a350abd8c606419c
BLAKE2b-256 8370fc73b2f697950ae3979e2d3803bb020c16072814ebedd01d951ebeb58c7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 373aec068d038b5dd6c445eb268614b38bd2784ef0f0fe29e746292372f45cbf
MD5 b144dac563ded95cdabb8edf3f1003ac
BLAKE2b-256 d2d1ff8b202e4c6b63865a067cba957f455d17ab7b861cc2963c428ae5ee6bb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d8c3e1cb2975521adf50e665ec503cd0ec4013e5b5b950255e86653df0eb1431
MD5 eeb1c766bd2621c88699b7f3045f8ddc
BLAKE2b-256 5fd94a11e66a49be7330b17692a49f5ded2d7487521f8036646774a29758c310

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d8ad5e3fa10584729ace724c6c9c71cd5f2355ab53a5067e7f00f3c7dc3aa7c
MD5 4793741d54fa610dfd54ad28d6ba319b
BLAKE2b-256 ee6b7d05889c21451ba67813eafe5752d3434195e3c55af5456b19309d7a1977

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4168d79205e0b737745c2629e8a30afa18ecdc81eb73892d0a0c25628ea9abec
MD5 726291ce7b5d51bd0b161ee9c034779a
BLAKE2b-256 526bced4b8b91a246ce256c27619d8da06a28cb3d27c43e196e38c08da40a1c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 393f1119e06670ee49ad7aacb41bd4052d21676ee7e3cd4abcb792b492a77460
MD5 03c4b798b6bac6f96a274b9a1c009810
BLAKE2b-256 94d575ba8d204d256089a2ba1f00c8ac56981225a82c2fc518ea378f20f550e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 28df3dddc99f9f345677f1d3cf6a7798738379350b6c86658d34c6968c82b8fe
MD5 81c40119a980bf5b1bd3ba5a9264879f
BLAKE2b-256 53df8574b4fe299f155866aee52b18296735a059f2978656661936126dbed76c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ef8e5f58a100c708fded9c2d671b84c7d8cf8add9e250880e4fee290c8ad178
MD5 d8d66942dd9ac872b3f5d92db46624f9
BLAKE2b-256 53ae17ec01ef1f3122f84d32b095d74bb2e6da589b8df2a057a4ec3ef090a7ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f6c62f1435f27455ad5625b442240cac654bf8ef88a0b452be165d057e01929
MD5 2fabf792da46aad2ecb04ed5857fdac0
BLAKE2b-256 95fac2abc81af23cd8631e8dc24c5aa6c5f17e295771a69dd14132926ede1369

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.44-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d63db0a6b5de8a829f21a06e7a8d0bff2da540955ef00c97851b4e9740f8d39e
MD5 54064dd7a81de62e4816fe1f1f1fc28e
BLAKE2b-256 86d85199421a5e5e0e41c1200b9e44edfae724440d06661abc4bb6eefb2242e5

See more details on using hashes here.

Provenance

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