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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.21-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.21-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e1a640d2d88e511d4e397de5e97d6b409cccef8709ee7b1bd20c8457fa5905de
MD5 6772868b276cb03848606535aef5e75f
BLAKE2b-256 78016e0e748c7f764a8b93623e5559801b1dea1757521b22522cad9fca7be866

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d039e279de3012bd9aa0eb8244f3f2b3409085cbf3b16a564d4aec7f1585a62d
MD5 8dc0123baac19884576f19da015f1351
BLAKE2b-256 3601f2873698e7ccbe8ab7ac4b52801b46385d072cb613de954f76818843a34b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50ba6851b1a2688658a71eea9f76c819dc516eb4ea93031bf2cedafb90b5e25e
MD5 4244b37cdbca561f46266deae157a369
BLAKE2b-256 6b080c3a001d1d3612fcd37d264d2b94740243af1d477d510e9f14db45f67961

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 89b4ee223d2976949f775de919f894112bb123048a6475a4f3042971c43358ea
MD5 4b3190c5c8e4e8c8b25a416bd6844025
BLAKE2b-256 c45e4892c1a0c8ff4d0c8361881f3c064b3c3cc8b0539d8fffc45fe82f8384f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 378549526006ec8603870e949538ec941265a70894843b4f3cbb7395f46078fc
MD5 85c499f0b304ac9d065b179be74575d4
BLAKE2b-256 f7a1bb9b44bc7b106a704e70e19ee5c2c8f0fd9685ddcf1a3174ad68c33c0002

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a911ae32fc64580cf796a7577f514db6df11f86f1b4c75b7dd60caee48f4d42d
MD5 83344dca56b43c3699411ef20bc4a301
BLAKE2b-256 a1c030e556c65ca069c24658252a9beb55e6bde15b1b5fbfbdb6196d3a5d4695

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac723d5d02f820a7ada1a458b2411d08344ad558eb7c53e2ce400842e1901f63
MD5 19b24a2328d5d2eddc9e9e8e4e3f2567
BLAKE2b-256 56e7c4cccd52169ab91689a2d2d0551c29f2f3b1a4e95fa69a517506d4b47afc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 12ceaba73960b4b9d4b259d1cf711b2c9ba4694924f388f0f400f751cecc63a7
MD5 50568bee89a576bbf11cfef24ac36a71
BLAKE2b-256 3961aa3a977a27c5b57173be282bbd035e74ca31c541d53034f33ffb595fec95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f4e774fae47d90d7dceb02c09e492a5a2b3598cc76e3e406ead24f7326eb7563
MD5 3f159d7416bdbdf8fd41fce1e843eb10
BLAKE2b-256 84163a207a1135970375c1ffe13a65984e185f59dcb206d093659807cdfe4869

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c6780162b08e7f795fdfc60ebde46d4609d0b16748ccef088e9cd2f901ff79e
MD5 f0c0c92cf534ac73b97a9bec66893301
BLAKE2b-256 96149e404310118a8656a78c1dbef51bc8a2d87c4fc87fdb2f2e55aac84325a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0d83de240b123bf73818fc85b85713ffefb44f34e826b65a41fffb55a3ccdef
MD5 2d0773260141bc82a4066f3fb32912a5
BLAKE2b-256 3075276103fd388c0625d172cdbd5fa87f67b31fdada7bb62c4a5fdc8c517a6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 119f0b802b20b1013b801d14285cf4cceb5b60fecb5e70c858216aa70e127324
MD5 53a4193031041de65a00f99aa8d6b410
BLAKE2b-256 bfe747e63214a45642c5179130bab44bb70d92e88be344c744f938dfba974a25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bca3fe3f2ec1f204d8c6b342ff404d95b1b8a5a8e6d14a2ae82170b7f63ee7ad
MD5 a771508a847108d277c77c22a69389ad
BLAKE2b-256 fe6c403fb3bbb5aa97079351b467aeb4dddc317d64f977ab1c32f66f25e75f07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba2005ce6987f7fbdbe2f11348bcb65e81ffe4136406b777279043552d2dabb6
MD5 a66ef54d0b699064fdc688c197bee6b3
BLAKE2b-256 460e0e4680bf72ece8ba4b0f851cc28642ee59a29aaa44f8351cce36db778c1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d046ae3084d37002d6069ba1c7bcad460b8ce015549d2c823076e06036041d5
MD5 f15cee4dc003b08dbb17be50e65ecd03
BLAKE2b-256 b970ae3c5651656379b9051e640db096fa8a8bcc3aa458406cb2e9725e29b31a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 47fa8e30fd771279e6ef282ab29e43d685c6ad959253558b2f027f97d69df5b2
MD5 597d8d1f5d12184c3b6a490bcd26c785
BLAKE2b-256 89b1d11e13e5241c5781a7a0a43449abc6cba5ba0cb8d31b71dca0745e46d120

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 56e35cc67528cc4c84546b092cb9acd53eaa76c7652d2d568449f02fbe6ce353
MD5 6830f9d0c0597172e6dd6d15920febee
BLAKE2b-256 cf5e75c04db9880ba62000e5d233111fb31d82fbd642829aba518425a48f33c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28f7e18584f0ad1ced525bda9ff9154a053864963f5ba4f6cd3a0516682e6582
MD5 2b19df0e30339d8ab54380be733682c5
BLAKE2b-256 959f7432a9460abca7db5e7b96a1540acfe07ad6357ef05f5bc49978b88a9871

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57b9d44c486c11cd1ddfe9be3cb8eaf94ff05c2640263b5177e38bb0ba1db4e0
MD5 7dc4b880f404c1e5d0cf0206b4022905
BLAKE2b-256 b0de1292212305d3118ebe2f054db8f6c047e3775e36868b220f6e3b467b59e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.21-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2eb4d7690eab7ffa7f2dbc919ee57c509c107a1825a682e832b3bcfa0ecfad0b
MD5 8997316994235f3333591b09ad810f38
BLAKE2b-256 60549689b57850eb04450f2c4eda27298e795ae1f4852c53e79b089fb24987bb

See more details on using hashes here.

Provenance

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