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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.18-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.18-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c7a84b38e60c79b6705847b7dcae576cd42d28b8cdbb76a7971d21a886560855
MD5 f4bf457a10a8a89a63879fe1a34c887a
BLAKE2b-256 1eb7eb5a9e1c8943d6e6dcda3ae37122249678869132fb00e37c4157f862fd8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1df0bb2e9d8636fd76355633bd15c3df7188ead34ad9c0f4710299f5367d87a5
MD5 fa6edd1ccbd3ca4d2e1ba9fcfabf8dc9
BLAKE2b-256 409be30092c78e8b82b4641c649cf6f0d9658da1b4920051b09d150f92672643

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58bd28b0c5c200232d3c4995fc9573b93513ff44a5b1b3d1cebf3cf54786f715
MD5 ce036c918da26f7953f68e6c786c05ed
BLAKE2b-256 693cf4794a2963bcf0f38e78aa7bfccea460781aea0e37c3613f10e1f558ec3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 254f4f5a23f36d1c941cafd9a64cd1502b766baf5379e519240ccd631dcd5998
MD5 bf31269e5d7e9c6a04acb95ff983f25a
BLAKE2b-256 36a9cf07f6082d72810f17b06dfad0927ea39ad786d23c0ef77f448d85fd597d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 77bfe30d9088b6ba266d965b1950e3317405afcd808989bdba03d0b8e755b781
MD5 1a69d7a3810376d3d5cfdc197d231647
BLAKE2b-256 f677bccc5019c2c56e07167dff421f9809fd9fb1f18bc5319670ad0156583429

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f1651d788654e5e29334eca5cc8a7fb96f5d2f9ec3838a06f29112ab24986c8
MD5 7e59ccaa349b146dfef0f66980b7b76c
BLAKE2b-256 e9b72ca6385ba335eba1a8281047834260bb4f4e00872ab67500044e8ef9b326

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ec07cf58f4dc1b8c98e983f586b13ef8379881ae0916696e4c60689ccd567c8
MD5 9da62f182832b8c9fdf9a448197e1124
BLAKE2b-256 80c036a1db2b8589224635f51c1a0a3bb28c6c01762137f31821c73cb67bdd34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0825db62ce333a55a5cdf94477db33fb4f55f6c20786ae117fdb5183d6dec0e5
MD5 a6e183a4219d2b80b680bd3df6b40463
BLAKE2b-256 f2390385c47172eb8b1595114ff9a97bb1ff34d91a498088fd21f923a1a304cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 03380429e0cafabe4462205729ca6cda55bc8c9a9d13c63d4568a077fca34815
MD5 53e433989d788aae8d4fd67fdfafd098
BLAKE2b-256 bc237d02856373f24d65b8ac32d0792bcf7ba7f5c560ad9d4bc11019f7b977fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26da66bb7a1fd8e97c19d307b42094123ca491616157167b5e0931ec461e0beb
MD5 41c9c87e7f42bcd36d13852e7ffe1232
BLAKE2b-256 79e4e791f5bc7e829aea3cddc2a7cea9cacf12369725347ee37216a1d12e21fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10791aaf89de4dc57525a9ebaaef4f05df0ec2026ac314a23a9507892106e73e
MD5 2b530196481380cc0ca45b66aef8c63c
BLAKE2b-256 4bffc19e7970f9ced0b95936f58811a096073051fb4e2b165d1c8070dcf91f93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 290d3f365812213a8d5bd947326df8e2180ea40373379c6b3c1aec106206d3d9
MD5 ff8bde16237c6c0c9f17969fcfe70585
BLAKE2b-256 09fac5ca050913e8652e55260ef868614008c28ff7f9a3f8405ba430e6b54661

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 585d34611f1b835bbcf7926a8b9cb6c07556c7e8c96e43810989e3fcae997399
MD5 178072a1427b3917c1109067eba4542c
BLAKE2b-256 98c0fe58d88dfc75c1a2ac48026202444c055ffe825b36f48d4e17b628799348

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf9b6906cf67a10dbb5f566663380c092e0865eca47f7848020259937854831c
MD5 1b2d5f09939f9c48bc1201dccaa66483
BLAKE2b-256 6ecddea27cd9e9835cde9b6ef7d21f42c21e3ad1d37447a775afce62a6051dc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04e0b5c174d9e2b3ad6f6514f9ef84adf97a85b2b87876f007216b927620fa2d
MD5 0ffa1cfe6fc69506d275ea9e0e2e2a5f
BLAKE2b-256 5a8878b4003f61d0273e666b3ce3163f8ad115cd61683e15dac2c0eb9b31e190

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b058f38d6ef81fbc38b29e3f6593fec2e4261bc58081806881e712f74ecc2982
MD5 0ae8d6cd1256093925e3a435da23fe6c
BLAKE2b-256 07208da77a2a1315f4319bb314b41ada540e6407b82055605a6d02f23c8c6774

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 139775908f3c5d627b193feed65cb0cabcb1985e3eadb29dfd64a45cb1858910
MD5 573973b90ff70cb8802499ab813e100d
BLAKE2b-256 6d41e9de73f7306dae428469000ce362863aa06b38987ed8b4489271f84bc65c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d9603a82db775b3c8669b5aa88f05d00a2a09f73c79d927da7d96eda3d563f5
MD5 f390c0283819f0217c92771e4f2e89df
BLAKE2b-256 94e8c449478710c5c2184702157eaa5374be18bbd9e87cddce7bb407671c2cca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a879ba1490a5b80343d3b1f8feb98e40f5ccdd0eb756272fc127135c08335042
MD5 f2e8062ccefda8887c6cdb6a47805131
BLAKE2b-256 ad40e727f0df2e52c6c9a661a8cf399072d3605c11213b602443751b067a4aa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.18-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 92f778a4ac2661e1f26a808a0a95f76c78d4d8b443d81f29715e51160381bc33
MD5 6f7ed008fee5e2190e370882db8652f2
BLAKE2b-256 e0217d26fe39f50001b37b7c49c9e173098dfa86026cf033491d45b36d46f7a2

See more details on using hashes here.

Provenance

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