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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.40-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.40-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 84cf7a99e817d529ab1b40f8a897b8e52a621190275deff74431be1f1eb203b6
MD5 7ad0cf082dfb42749b11916f5134d809
BLAKE2b-256 6b040ded17e77e154b82a1c4d4ad5ee188cf4d97cdb89176c7c1adac789ef9b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61f7a82fe98ce9af808ca61dbba46ef8f861718267941f212459c71b99f27785
MD5 97a270011789dcbe60550ce042f1dcc6
BLAKE2b-256 45fbcba33e949647b9fecfa9d06be620617fae5e163dbb232a197d28dc01e57a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9646b8cdd850f0462726e38abdd90eea9354db793961dd07f8a33ba2c488f5d9
MD5 3c0d03987ecf2627851bf724995b0b5c
BLAKE2b-256 01de67a94ce3d3e495d87f9016ea32bbac5174825255f9535bf60f371a91fac0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f62a915e68d7ab5b2aa2ecd76764a079ab2520d7ec7c07fc45657b4f091d8bc8
MD5 82201970105a4188ea59f3d7239b7f2c
BLAKE2b-256 8d0ec8613895018c84e93772f9c079baaa26466b53334504846146bd21800905

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 15881e47e322e13b422c64df208b6ad5461a3b69f4ac6316fe48dc1c2c0dd54a
MD5 a5d2bcd0d806468f7be3d03b6163e307
BLAKE2b-256 1a570ce052a8efe12ec6785e9685b41d2209d40d8b5ed3e694db401b64539df8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07ced8afeb19c94d5415a3ded9f7554deb1f1dba1d1961e4c64dd3ee975e57f4
MD5 d4331e60b41ec6f497e3f9c9f21e1455
BLAKE2b-256 910574ab6c6be2d2826bbd4919e683e82fab48502831e200d518906fea007c98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9684fc6f2dca9a69b90c237a6091ae45df6e153bc9654058bb1f78b567b16698
MD5 8dbf9533335f681e0f8f2b6f1292a2a1
BLAKE2b-256 efd2006877ff505f84e5a523e776837e40472477267338a49cb61bca58f11040

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 941087cf3a4b696383136bab3bf8f6b9077ff814353373e9eeefdcae46857302
MD5 cd385551c0ea7db460bc3474b3786943
BLAKE2b-256 cb201d7444da52e6218c6e3f095b60033410cee219b4c339b9fa801b9a87b46f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 64447477318a2a05c1effb064cb6f6fb428f4be2152f1e2f596c7a5f16941a52
MD5 05ab98763275c8e4949be1b5e8f8c54f
BLAKE2b-256 12dacf7ec4505e0300c3c6392ff360b8c5728d202a1d5c0aaedd4cdd7ba9b321

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89511afd7ea7f330087c0637d5ca103b09560e42c81d610d5c9de7cfad60eb1e
MD5 79df755a6fc0eb85d8f33789fb936776
BLAKE2b-256 8f7f6b8dd64d2d98c88db3dbcf93c899ff1cd092f32c46a734cbe72f852c1e61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 436ae83a1713d0800eae806afb2fb194b7dc9166b77cf40977bb1a11c2f87f87
MD5 7a032c5dc8764c726e45133fc9a7a22a
BLAKE2b-256 309aec8ba7f64b4514cc1a959b5c7836cea93d3b58ac7aad0a00a494812db95d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6766d9cf3a463e91ceae56cb35a33c3b2a70e48855d7655f218fa5276f9edf8c
MD5 0b4bdb6b73c31a2888c4b1dd97ab27cd
BLAKE2b-256 f6b2893578a469731f6c2719dd518477849ae0a12a4ae7797784d30dcf2c49ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d3be267283b23275808fd23e17e851581c34101434f3c516fa4446175102e04c
MD5 fbb237bd75508742536584699ecbe1c2
BLAKE2b-256 8b4f1a72daba8c0699bf892428254d1f330843895597ebe9e76f18bc4247019c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2b9a354894e836f5bb9b4b9c2a920106392971960986343785af00f278a95d8
MD5 7a4d1f726c8c8a3fff068b7f854f9a91
BLAKE2b-256 396d2c6d1ef3ff64f318762d1d3657aec91c37a19f37aa40d35a2a99529f53c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e50834868c6d7c3f7da08ac35900ba37153f78958b5e9700378c20cb4472594f
MD5 b0f6afb9deb245cf0afb7bc7ccbbee0c
BLAKE2b-256 6daff7e15fb17004e1e466160672edc129a5ff3084bf6916e95b2c69699de9d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5733d67bfc7b2dbd26ff26ef9fc0c68dc6f0d28a33a8397f65f8e4ee884edc81
MD5 c85fd0d190f961e2e235335223ff0f96
BLAKE2b-256 bcf8af3d739a28acc475bc273caca083a76d78983245498b7bdc087705a4fefc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 557821fec79b818f8d907736efb9a868058abff83bb7725ecb452a1954bb08c0
MD5 18ba38acfecc0032058da8611ff2866e
BLAKE2b-256 38173c4e9a42101dde1dd6d1184448967370f202447ae2c5be2326424dbcf29f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad67d48f03e27be97f54b0b6ced70b10528dd59485fcb288975912c47eb024ea
MD5 e5a9f0fb00ec66a0ee10b6b70d1b58b7
BLAKE2b-256 658e65c9d8c56e23c59d20c4d309f58fbd216bfbe85b4b3d5e6c6e19445b911a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b3390ffb6ab9555d0e9cc007540f6c58bd3128aa327d32bf9681ea5324e3098
MD5 0c22531131ae1ba992f73baf77586df1
BLAKE2b-256 7beff71c45f17294f299e5acf038c157fa73ab43d188f64b36dcbaf2e89a413f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.40-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 23f15bd763ac5cc62af84f667fca65ef221b95054917c6c5ee88ea4705a273b1
MD5 c607bc8c1f4a3222c69ea78a42966677
BLAKE2b-256 0aaa51d8cc9e81133812d1a488816b93ae19f21f1d3b04b2bdfcc679701c288c

See more details on using hashes here.

Provenance

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