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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.23-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.23-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9114080b727f0a7c728e0132f75a5a9f193e0f4b2fdc11227146557ba817995c
MD5 15c54bd9527be1fb5b8b0b2b3f08a4fb
BLAKE2b-256 4ec70c60a41e76aa051e3b14177721b97dfb86b8f83290219adbf6d87a3a4199

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc4d3a1fad72fab1984b9f37b159ee8117049a3ead0f921e2195aeb36d262a24
MD5 5c5eb0d9269a362ed610f159ce4e0aac
BLAKE2b-256 3269de12701c296af4134d694c71c4acdcbc1e314bf7fbf1f7bf7272561554e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0315efecc72b8aa43d71b6a2b0449ae9db674c6cc42c3794193b2485c3e3affd
MD5 749bb0d61ae18e08cba240d8a70bcdc8
BLAKE2b-256 719aa34ed2771674449e72093104ae0cb0931bdfd2f2a0fb7870becb78b49f89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b75e4874d396849b5422213df92489ab278043764cc8704e28ed65781d97c520
MD5 3e34652c5ea1b204c6a91056e1f29af8
BLAKE2b-256 743f1724940be4ebf7395bf4945a1a9ede491400889ebca66add9a9281dbf2a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a494634b14cd1617b1505ee13b35c05e1e7a91d614dae4c81184d4dbe97034c8
MD5 3036279ed4313c06bc0f5412ece69aea
BLAKE2b-256 8ef511d626ba05ae65ed08266bb9a8511497aa7a4cfdcdb2b7d54d23088d93a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6878991a6e9299cf5fd483fe11a355b9af3ef20a72c25aa83794d3d9dbe54199
MD5 6c6c30a47183d734436fa118812a825a
BLAKE2b-256 be98c9b2f846db1de920d58345e2ebb6e662f71c9614dc59c8463ed4d8837702

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c120fc85b2eb4c517de12ffcfa03a78a7799b345de30f39c6c7370634169073
MD5 9413dc3505b64903899f07050b6ee432
BLAKE2b-256 6d5a3ec5f997f1ac0952cd48230ce7ddd9df4e4c4ce1b40a4d2a06c641edf8ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 be2bd55e669cfa0e6c63883e644d0580060e55d798ddad172b9583729b485dc1
MD5 53bc88d7bbfab2a6236c1db8559ec2b6
BLAKE2b-256 f87a782a77bba770a04705f53ac58e429effcf4c42b0a6656f791949c39c1318

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3324aa90143c83a577ba8a177e26adb4c2c9709da3fd91ee27a1f265b633fa98
MD5 2d8363b58080398d4642030a42994a53
BLAKE2b-256 16cbfeb1c8c13e611bfc6e9fe659c404911feef891c0737515c79ad65dd11e05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4e1f3bb481500490aee85098af548d896caf46a2ce5b084dd0726b168c8821b
MD5 90a894335ebd6d15d559e1d76b1bc982
BLAKE2b-256 008e8661fc197d860a4761c5490261d02445455e70c7498f1044c45bd3d63561

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42e40ea4623280ce12dbc899939dc83ab86c235e694f80bad562833587e86885
MD5 e9eafdec431cb9dde3b5b558a9b18bdb
BLAKE2b-256 14bd5e5dc84398f2c4f2485262486fb1603d050072d001aab2a2fea32917ee06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3388b107bffc7f3d3aaf68e48783c027ba638aa07840dd142660a9237bb8791e
MD5 d5f717941bc0a6dd0e23fc4bbc15f1df
BLAKE2b-256 5759b1535592ca3c9657dc4353085cee3f02d8944695f9d9a966a310a6f06275

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b87969d0a722e83a2709a1096278a9b946deda3be5fc1535d6a9ac5fab272635
MD5 fda8189163295cef95eea76f7fa1a884
BLAKE2b-256 4b1d65ccfd0b9884307569b130065397d13af30b5e0d6b526c7625c12b6da68c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f8da4b46f359a9123216a090734b2e7e2720c21d9df72814490c557c93db453
MD5 f08ffc7af3c25bb855a0c88d0b1fd186
BLAKE2b-256 685e92758bea5239e22eb9941e7c367ef756403fc7b3a7132f691ae6450b9439

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee3f202666e7e9ae4f115bb9dc21a72706339601208914bf5ec87afbbe1c940b
MD5 5d0145bce4c6932cd076e3e3574eb13f
BLAKE2b-256 44a44d51a740b8acbe48161a60a98d66d9b04ee8e3f9c96df96a9cc35ce76079

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9812eb735c3636effb6e644a08f75bb9432098e1bc229f81e3f0b7f2661569f4
MD5 3e41eb68979c725d48e67529463452a3
BLAKE2b-256 e45707d49d4a684828e819b306af681e00bb84a915a36e4360c2f09d61111b6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2747142d280da8fc343ca503978891a7ca8fc6a374c852be340f06536d10d028
MD5 020ec1f3ec0206a61dcb2796c436ee63
BLAKE2b-256 4ccc13caac9730903f73d004bb1595e9ca9486696cec6063829f3b9248d5d333

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77ca401f8ca1f488f43271f4fdb29321e1a6079d529b7c9aec7e547368d1fa5f
MD5 2104b99006b7c5e94f2f90af18659814
BLAKE2b-256 e8328c54d835be6a7e0e6014323a297db6b0c6d011839a931e5c93959cf53843

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b2ace9f4d6d403b21cce197c59b7d76516fd7d2fa6f41e10b337dd2e6f350c2
MD5 134237abd5bb8ae3fd3de87bcd01eb2b
BLAKE2b-256 38865a73a38ad091bc9b15b595ccfb97ba6b732a3f4452da8fd5d81a5a3dabab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.23-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4ba348def2ad3a235825c40da62c5991f1e40c3f9bfc1a20e685680aa36792b1
MD5 40c7bd8c01c11187564b35a4c971b4c9
BLAKE2b-256 e2737186bc46635961fad5030f2c3621c2b662c5804764cc8937393530ce9529

See more details on using hashes here.

Provenance

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