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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.24-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.24-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3fe7d3c9016af27fafc418f006ad3db0f3653485868304645eea406f0fa49c75
MD5 c2924427214e8c0ae7aa34002e019bee
BLAKE2b-256 237f11e3ab6599180cde960e7e0aa2338298d1f293137358617013721c65b9be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 276166e2dc36ec6d7f965b7a5c03b0a7fd10a7acf8db88350be39fdc73cb0a6f
MD5 2711af887f45856d1a4e89ddd31c78bf
BLAKE2b-256 b5f56f4b29f4fe736f7979b81bea1336468536f95685bf1c9d3c76aae331c8c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7ddaf2bf4701b0ca481bb5b22ac01e64c8d6f33518ea9e1b1d32fa960a1358a
MD5 7d6f58f3be996c501d4b4035e8c3ad21
BLAKE2b-256 ade1d08e527cd0f9273c9a06917a1575ae67f272f25fe9e99f62d58092503446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 74435ada7de27eae59438127d3e88fca3b926348914b172516c2724453cbd983
MD5 05499c7848de38915829f864c20f25d4
BLAKE2b-256 7b6d1d08c764cf931d4bd60949f487107656c9e075ab606ccfc0b9f24d321186

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5bc7fc1cece611dfb6d20ce2a3cfe65a5288cb075865fcc7680e23ac2931b0cf
MD5 1a28b4f96a9c8d11bed3554be17f6d97
BLAKE2b-256 a1fb52c1d79368c8bc98ec75908b5eddefd4bb979bce3edfa94163124155ca79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 663eccb8c638c290337c82953000063c721f5bf335fcd4c396df5251e84ce911
MD5 c477adb5274a393b6e501c8ab6f2b899
BLAKE2b-256 8e7924d451835a83aba198768f4e007a5c7a1c312d999a271bb7d9c5127db553

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52878d0663de7e6a37402c9371425dcf830d577dca0a86655846ff906592a24c
MD5 1701c8ff151805ba4175b9cafd456b7c
BLAKE2b-256 09fde2f450418cf036f0da8744216508dc7235db3d105fc7be8eeff39cc8d348

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a95957c8497c1b7589f5f9c2484bc1e1229b4e2ef447fb53507503c22439d05f
MD5 0475851c83ceef8e9c771840de5706e4
BLAKE2b-256 6d22db5cff60002849ba04c8e3c77228fb9ca3357d36fcb40e185f9012d52890

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6221b8ab73e92fa49509cf987588147544c32fe980ac03a44da24ea705e026cf
MD5 3d5e3ada0fb06ff4a4de02315366a296
BLAKE2b-256 7922932a90d1ac72799a921e50484261408f70294718dd7b02c1eae4859c218d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f10c4fa7059cc98c1eff769982509a9975eea4ca89b951e44c845dd94ba13b2
MD5 1dd63957c767ba08c30ad1abdcc231cb
BLAKE2b-256 8cf9325b1187e9e2e61d648bb4c028e1fba2c240e18756883f0b55da4f876b97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfc11e690d9f6daa6c7b960683e36670c4b4e85d2d6d822431c3760d88298aaf
MD5 38b3a6d4bbbd197221a78040bbdd637c
BLAKE2b-256 879a11f329cadaeb42692a2c6bc86e2ecb2aa45d935a020c69a52c0e67631d9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f6529a51b722661f089234312a35a4b6088684aba368d11f89196c5c58df002d
MD5 18bf97430ba37bba64908b02995c6ae1
BLAKE2b-256 03d6591cd0d20472f27a5a849684fcfc2e7183078d4f36692b96302996c4ad0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 43d75fcaa9d144815c2ac248c57ab4f6d7c9efd06e23f38fd1a8793713543658
MD5 04a6603efc0bcbfe3cd265386c39f8d3
BLAKE2b-256 0366c3da548fb08e019c7ad5e076f0b150a8a46dbf85043568aa136cbc403eb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9da310ca726487c4ebcdf87978ee3d6448892147202ddf82bd7b7ac7f7cb6c64
MD5 dc3cc4e36839f1a03f97189f6235d5a4
BLAKE2b-256 54cf5076ee60d13891cef4bebbfcdac8fd25f8400c67011d488f62614f57bd88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2301b7b91d6de1a7c85fb2f570ad79d3d8aaca24ee3c9738066b716e8590e70b
MD5 85711f3eb289e083f3f542f84e59a5c0
BLAKE2b-256 a47b6552afd241d3ce295158f1ab67b921fb8fb6026b10a1a2e35dbc6d88b76a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e9837d847f493b9c6ed4b75bdbd8ce04738e89e496ca570a43294f07f262889
MD5 8d6db348137de3d392da3f6494584ec7
BLAKE2b-256 233169d85d86de001f3b577133eb4e949c5cff46e45c5de64c5f957b5b2e1f9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c887972afeac6b741a539bd90735b08ccc5b6f93f9810f8e31a86abaee2fd474
MD5 5f0cd09f7b3d11ed5f38eaa53d4f40bf
BLAKE2b-256 508e774ce3394d389d15eb953b6c8e50c2445cc3b1d3b842be47972a3e8c9289

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77fd118854040a7c58dd3e3a217550413c59325d203d85faa37299a747654774
MD5 aa5190e08d1f7157bb811bad1cb54a05
BLAKE2b-256 2d80432da3a38aa74d30538ccc2bc33963f36b0685169c8fd71705eaacfdc79f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d403b279168088658e50680fdda9661bc1c99fe876f9ab3f3331b412023d7320
MD5 b1e5d63e192caf33b3990fd233090590
BLAKE2b-256 619f1eb5a3a58d6c4c226447e1de93b4bdbd413c6e3440e6f920343f0ce4a57f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.24-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2376bffd20421883ca689e9ff18342a3ee409821c0d6bf29bc41f41093647f6a
MD5 bec9cf902b038f69b2be2e0acf7f8b42
BLAKE2b-256 8f36d9bea183a7062f3a37aeb71f1a11a0f853e65fca8fa92031e63212ebdc7e

See more details on using hashes here.

Provenance

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