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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.22-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.22-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7b4094e1c87e931f19f4d2e202d242e536dc1eadc56eb8e2a707d9290b1d5f49
MD5 5bccabec8a3c4a770c186422ef9bfcfb
BLAKE2b-256 a81423efe52c9a229dbdc636c851dbd93834ab51cf049e6206f71dc0d169c5bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 492a32be855e3dd76e6fcdf905f65e506b9c690d58d68805be8666772c4af83f
MD5 8231981fab5566630b83ed1afbf72732
BLAKE2b-256 99822acabf29694d45d0120fcb8dc42c86c97b945bfec2387bf0c17e41401956

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8810d3892c1f1cc17e2f25b01051933162581f5682d759e314a8fc2d1d7ae8f6
MD5 34f78525be1dfee4fcb41dfa1f4c657d
BLAKE2b-256 1f0efea16babce0d5a23cf843faeba387515cd753abcdcdf767718fa5b64393f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d1971b96e903e1951bb9bb77731c8c3cb36bc6ef400c8ccb162ebc31c3bb69dc
MD5 d1f835053ec2d81f273c2246fe87ad90
BLAKE2b-256 e2234e11d55a01e54fd55cb302dc63c99864f26a3966310a70ca3ec78d2d639b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f94024943bf4aa76a0158ff5b206778bd8b0d30c9db6f63d71eb853a7e4ef764
MD5 24bd879c9e5fe197e182d385229ed1ff
BLAKE2b-256 d6406ad5d5de0803db419c28645d02729bc47eb7bec2dbeea3865a5683509929

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2a6781b558059d6b6fad74c58717598e16b37f75d61a0cdeb5c5be1ff6bdf60
MD5 9ecff1ec647811491d85a5b2fa6b6230
BLAKE2b-256 0f390698bbc88710fb3ddcd70d2dc27f48eec07b5bea5d6123e4754b66d24e99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4c1125c619ce29548a5a6339360d0d95a50030c9ba3fcf4f07959f07a5e073c
MD5 31cd616aa7d5362d430470dfadb33cb9
BLAKE2b-256 101f8dccafc7adc47d6a9f8f81802112f457625312100efc78e97da4e2bbdd50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ab5ab669c505f6b95efd57ce88223c11dc8f9eb4eb89e5c3d67bf09ba923b00
MD5 b8cf8aa650dac72aaab207076b327937
BLAKE2b-256 23558c49a5609b5305c3519f992f163bcd75c9c745d54a0ef488aaf832028686

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 48c273aba6d6e2f0a5c6b8b5c3743d9fcae16cda99de6a6143632d915d619295
MD5 62b0f0f73db1975f45f22606028a07e0
BLAKE2b-256 3479187c09b84098ddace225d37d70d00c5b0dac7d5b76a40bf9fa52b3cdc986

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41d91d13ae26b2153a063afea76a58cfa9d124c2ccd0ba2a7a2f531a4ef3a7dc
MD5 13402191246040129388a7b8a8a0c2fc
BLAKE2b-256 76266ea09653341453e02f82555588093011320c39de5a2e57232fadc813b618

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01be9b97ab8fe816095f10941b6d61b83dbcc204e316a6a014f15ee1313548d4
MD5 1da0f058abd49986f0d00d402683fa12
BLAKE2b-256 60e91fe481fedcf70f07fc0de95ca9a2f9017f131ccc3d6615c932eb3edc4be6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 44aefaacb734d1426f038101c154e48e2777226c1c05903ec87ceeb9ea3e58fe
MD5 177bb74e3f3212285859fd4672d32423
BLAKE2b-256 41ab13fd620d5c3aa9b3de48264eb138386d0cb216c909091afe904ac18865d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 edca3415eba4a48ff2fba5b31a6c5ea19a9a8af04b2f719e5a0eace5f437268a
MD5 3e470d1b8091b4bbf3fd2ab6eb68d2de
BLAKE2b-256 c9a43ffad6675839ef461e614b5549beb63208523973364ee425859f7288bddf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0f1e4a81ededf244e25c6ac0d4a9e0b6207a2de5d1398688892ca971d594d56
MD5 ba4163644e4b7a0df660627c4c0794a9
BLAKE2b-256 174dbbc2c0042ffd2470d6f24d702df75a16f6d4f511967769eefc620c02a272

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c10cfc33aafaa4564e26133414c986d07d7add6622325a02369499e288b2129d
MD5 2f61852eddc0a84e928a086a43fd256b
BLAKE2b-256 474090424052f646d654cd8ff80e75c5730e7106b9693b1c435a14be428c2d8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a0013eb82401fbed4582eb962d187f178e27e0bea464f0b8b91038f4be36d5ae
MD5 9720dad4caf2bb506213fbbf33cef703
BLAKE2b-256 d4c043a591079e8957b6d16225bb4250aea89a60ebbaa215665ccd475cc17fa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2c824a736c54cc6020f6cce3686218b192dd2b70f5be54f2318b62c29856fc2a
MD5 22d9136484ec972ad7c1890bcc4d6fcf
BLAKE2b-256 49c51f1a5fe373a53a2320994ac01b85e7050e21d7366b6c6e79252202ba8689

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22dd1267d02aaaafeadb1841f540bcb5486a7d25ff39c05200439cb95c25a764
MD5 bb701bc0b2df802520fc1b6d3718a3fa
BLAKE2b-256 310d07db9cfc273f6fae8d76b30c357ad696ef6b92bd1090ef9be0a03872711c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbe7f8e10cfca902fbaab6f9ac243fb9a3a15c4f9dd49c71623209ffeef207cd
MD5 1c822f103a16c3db5310db153a8f1a53
BLAKE2b-256 8d633f40f7ce54d32b513c671853b62a55da80c4b15b30f7b2659e08c8357f80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.22-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0f173258d4e7fdad5df7cf235bddec6715c3d7beac71520d6747010c13949434
MD5 76aa8b098e6a3ac8e5c64f7a1cf8624a
BLAKE2b-256 059827c28ea0e7266360d47b44ba405dddecf2f12a11770661fea2c36cc6af06

See more details on using hashes here.

Provenance

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