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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.42-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.42-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c216ed898ada681c9c846a051ba328f391a16f73ad02031bf2e08a1fbbb13968
MD5 06eb81e3bc5b85ad718726fa32e6aef1
BLAKE2b-256 bb97999d4a810de6d4704ebcb63238f2c0ff3889aa521d37696944a379ea3702

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8a1b18fc76bd6caec98c143b9b6a57317e1dd509cf9c85220e13eb2ce29b644
MD5 baf231d00fecb8ec84f2be2f1c726dbd
BLAKE2b-256 9f63f53ca0090449aa6c5e3eaa4c70e661b60642d618068777e035e41c394707

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33c8cb791771431063d074ee06392e85709377edbe9e6fa2113fcae0671b9edf
MD5 7a7a2a78e2bc647f124b8c787e48989d
BLAKE2b-256 7fec7f3671adf5b278f18eb3ab78aa025cd4ab962faa374ac3a89003f638bb01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82e66878cdd9342b382eb18f277d5a1afed84e31be7456795b3578a4be4139ce
MD5 8bc2318d97659d7157d59aa3c9406d5a
BLAKE2b-256 5d5eb6e34c270a7089f9610416105180f42378b715c2bc5999c730d0db1cf7bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 426a845e3f101fcc78b4f1d3f17a126784face29f7dfd87f0dbc6821b6c84382
MD5 16a0b09ae646735d36b8e45aa41b3c53
BLAKE2b-256 33d9adb763bb1187ee0504ad42a82f7ad3479b171db406643749ccf0d7866cac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80bd83a70cf8e43cea7cfafaee662ee9cfd37ba13981609952a22bd9017cae95
MD5 95d2d62f323b4156327db6c577f2835a
BLAKE2b-256 37792231242c9ecda2d070c9183ba31f19871258b51252e329d12c0aa89f2a42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1563adc42b769df522ebc5647bb4f9237148f925d39541b03b31631524fcf68c
MD5 adc48ecb4e3a988ede33693284f31cdc
BLAKE2b-256 cfb0d96b225ce9ccc095d6c4beba00c84d4f755154b98a3462f97ba7bda83501

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 800870b91d4d911f92956ba32aeea3dbfedb999ffb5a1604e7d7b455fd3f38f5
MD5 21a267649fcfb19177eeb2e175664bcf
BLAKE2b-256 9292a546516e885d2ad7df5beaba07a1c0ec4d71e1fe200f2c62ee48b99b29f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ab5b5ede4cbbc8f354c900af6634349e0c30cb18ab56965a12aa87054e236010
MD5 5bf0ef098ea99f9b5bcc370b2a9651c9
BLAKE2b-256 3a92f06ccde25add9b8cac70e61ade22049c28110ab4a67a509e82d1fa3a07af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 252dd86281e1441b45b22b171e701e227f7b9efc71981e838b1b0b9e2077cb7d
MD5 c316c8f46c17bff0ea28e18f43b4049f
BLAKE2b-256 e3f3e0c107fe162da182f694a2c2a580b357f74d3a65be9c6ac6290221ada8c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc25d3ba07298273408e9616a98bb8563c52f35e8b641e413d96d0838a1b4a75
MD5 076a3bd9393dee7d719347f74e68277f
BLAKE2b-256 c435c5b2124fa2adec8a75f0aa686aa9d45b863d122df22bf7573c8d1eaabb4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b23021f0637a61e206879a0bb54fbc0be865366d9a7abc4d74933c15c84b9cd
MD5 14f519a10f4a792997af544263223f34
BLAKE2b-256 99c2058147d6bb8b6bb17c68ff506f8a7f42165b99a2444fc5cde2354fad742e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 634bdd928a21a55ecd25eab5c6e141159d35322e2c9557e1faf3095ee9e913cb
MD5 0df3ae1b1158aaa81015a0a27dbff927
BLAKE2b-256 d5379ad8f7c0c858e08922ab2c5fefd7ee079d497aa217e055e22bdbf6774bd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4263cc7666be7438c195bc47f02fe28eac015cf0f89982723ae625e4e695519e
MD5 d7b2a302ee643c4ca8973196203a9daa
BLAKE2b-256 3cb532ece684d8ac3992ec003d2113ddf17a32d211310096c0b8bb241a97c7c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b78b87c0d2b92d671162e3b39caf1b01d6d774333437088ceca5117366f45c1
MD5 8c817c4d2e74514e13ea21c169bf8736
BLAKE2b-256 0b47544e63d3f8f5c9d0487b4c8d2fbffb76a3a1682cff2e97048876a829a7d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b6d0a1e0e692332d0e259ebe67f62e04118906facc4e31a68c14424a13d1645b
MD5 0041da14ecc700aa27345efe706c95aa
BLAKE2b-256 21373922b713a69505940e63e1755b5080c87ed69058e8b2a739a2d841481006

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fed6732814fd899386fc152a6d1a4fc450657ef69fe90604abd84f843fccc115
MD5 c10b3507fa557631323188ac5b81bc68
BLAKE2b-256 5a07030b484c2d18e011e489a4cefad35a81a91279492393aed5cb4031198b2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 494113e8da0aac2452e46bf91162f2e65e1a39f1a38d1bf4b36fb481734656c4
MD5 49290e09de1f7bac703e14a6555a3e65
BLAKE2b-256 64f03f67a5d5312a1f132bbd19c237925623df174a3499336a01862f84c02104

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87afb093a7686f3bc9786aa2de3751dfe46880aacb34fffbdfd3646fe4f4c500
MD5 a890fbe9d0654e5f009f0ef7bdae1de3
BLAKE2b-256 f15952b23b5e5873db4b22374a3aecda19b6fdfb360b014ce6693bb19b50a1d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.42-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 26f2c9495013a206a05590b315a3ac00a3be545d3f50468b9d3beb169ce41c82
MD5 b053c75e4534c2e1f9d0e51bf0f8e6b3
BLAKE2b-256 0c26f791a9af6a8703e73fd928422b76f91bfff792cfda28526b2837533acf2a

See more details on using hashes here.

Provenance

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