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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.29-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.29-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0418077a41631b9a51936bf0f588f3d4935b78a15afd16554a329d830b67f3be
MD5 d937482977a7131ab13ce202ce251ad5
BLAKE2b-256 7495d5fed317913150dae0890dc083cb495993a49a935280a0db67b30e6d9604

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9cf199306175b2bb247e7812bc7b63f3e31bc1669df5b4efe97566c5799891c8
MD5 b6f137efe741f66e47086905d10bb382
BLAKE2b-256 f0cda2c1cb67a38190a8624623ee6d19d265aa40b386888eaa19011332b21b11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a726c9ce6a0930f2bf97821fdb1a3ae1dc9ede451f5b0a3fbbd9aefa7cc0f47d
MD5 bb7b75271c38efffb285125b9a028368
BLAKE2b-256 429514fbc05dfec38937de943513ba71846e4ce50e0b65cb51e82a2eca8457e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b40633ecf5fcd3993ea2d7d259b845df9bd98712f2e46ee6bf07d7f2fb7ee2d0
MD5 3a009e53a61580275fc6aa869156efad
BLAKE2b-256 2639d855b5c6974a7c58f6dcda91a0a0c25af7c5f57fdbcbc61ad8523d8228cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1805b9135eea939dc1b5f3fd4331b07d6353b9e79ef3e698cc904b3ebb22fe17
MD5 89f628776faf103726ec41d10fc57e0d
BLAKE2b-256 6b405eee11c2edb56057b249fc4a28161c9659430c17addf91aaa9bd391ec50a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46895d841d11de1f968a09a9f650a0f49f8a7cb98281cead488c9b15ccb2b6bc
MD5 34f80b2f790fd986dd76163fbd1f8640
BLAKE2b-256 1a7e75282d7a3ddaf493b3c230d3c4becd93a9072b9913b526d9c9a5267148d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32412b4d1eee6931c0e738f19423d65032511b89556374b993a590d496587c0f
MD5 ef677138f377d98f0fd2b8a124d9538e
BLAKE2b-256 e3b6fe053bf025285f91b7e73489c180bad65fe87a44cd393537eddf47adf1b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ef33158a6dfd69de21433312b074aefe81d3c0ff5a7cedc4d87f0fdb429b58b
MD5 488137b652af648b862bde0dfcb89a10
BLAKE2b-256 3b2b7e444b00008248005c61f3c7a721df490b7c8eb006d941b46212b014089e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1d6a1d8a19a064bc81255417fb21002e6b8d9d5e040f630db6a2db751598d3a0
MD5 e772f8afaccf21bba6fba4472d84d8fd
BLAKE2b-256 0c74f8c803ca39c9789f46597f3455e3b775badf128e335412bd8c09af2458ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02eef4de61c056129f290fba114d6354bb5cd7d0c022f8f0fcb45510f2beb2d3
MD5 7d6d7368b30fc90bda8ebec4c325e455
BLAKE2b-256 898a3a69ec4475cd6c2b40b0e93c20ae958080c88295ca7ca955e68a88c879e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79c98a6ada8e57624c2fec2ddda5a10e495b3749f9d7cde8e1df344ddc25cc9e
MD5 5337ed2770122010be95db0d84e4c02b
BLAKE2b-256 19628ff385182fbda25d85d02f1fc5bc05939d97b24294f18009d046a0350758

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba0cb4c2a85cfe67df1d908181e4adeddac73b45cd64a82edf03847f7ce40055
MD5 da3189c61368ad233b6365130d205f42
BLAKE2b-256 ccd530060f32b803801c741a69510b141325f9e90b51053b134e2155c70cb720

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 882bc040fef965fdb628036c1f126d6e3be95c2c96e8d297644244c0612c59a6
MD5 50efb7e1f4dabba7d0db4c60861f0507
BLAKE2b-256 d6e4117fed4ac0592f1b34c2b6c976ded9b5ec71a60a1912567e4f4ccb89eb4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d12b932d1d7b8bff17c33c9924c5265c07d9025fc0255ba9a5fadf6082636c5
MD5 e37fe258943779154ef51ccf28ddd1dd
BLAKE2b-256 8a49e4be8977c073e4c47835b6812eddf797a7ba70f5db4ba04646c2d743d55b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19ad7e130dad03aaa8f32bffd043ceeaf0371f2a4ff3c602110db5b0d2de851d
MD5 85c7b56054fc3744e4f298490e6c1565
BLAKE2b-256 03d117350b29211c71e23a7e565826c3f864abfb2d5faea50da88160b9f23a3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 11c414b88771414484e61b654bdb1e6b84f62ae1f68b2dc123c26469507c8857
MD5 7b28953988910f1734aeaf30148e1471
BLAKE2b-256 3551626d0c5a3b815727ced7182ab8fcf346129c56a23f9a2f5f4831956e92a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0cf1eb2d53d3214da17456d453143137cb246a79c8233ccdac1de6754f194554
MD5 96fa6611ab0f7b6c7fa907b7a2f384e8
BLAKE2b-256 bcb6f4b864132ee7034fdd8d0f47ae4fd03acf265f7d15ac759edc2054fdf1c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb48bfea0f6240c4697f66ca63bc352c1114740f9fc441f6f495a6ff7bcd3f1c
MD5 584e8f5bde91f9d51a6c0c83e468f53f
BLAKE2b-256 c04adc944d30dc02659d0425fc15495963a68831072ec8e089d214c364dd228c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff745f155803e39661d839fc58370bb26c58d573827c9955958dee4be9557da5
MD5 64c60bb1d08defd1b3f3c0d1d802e2a7
BLAKE2b-256 86f003e58afe97e06b08847169c4e62fc143d4b88eb1c33fabfafc4313f99b03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.29-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2eb2a0d3a713a7d1a840b7a9de1cc6c4fe2a8a5649208f9df9a7758dabefacd4
MD5 d470aec06cd9a954fba39d134c450fad
BLAKE2b-256 dae512a3a30b4b84285f05296ac93020ae140ac62b8aeac39488799acb68222c

See more details on using hashes here.

Provenance

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