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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.35-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.35-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fe934646830118852dc308c02f1a42f443df979fb2ea179d70fa3760b1c2393d
MD5 c890a1007aece06e17ac181d96b9b142
BLAKE2b-256 2d34356f87cd37012124d33c942e326ca6195b1390983113a3b1d398256dbf8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 024f59a0512c8085e3a5f0a93f25bc67c96fd19aaff4f502168f8cc51aa66efc
MD5 ed02705c70f64ede887d2db3425e7998
BLAKE2b-256 06f33eb2020944299434e142f0715f7aab49f4f94f1dde18dfc5cc286a399bbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdb51c798c7e0b17c5a59ba767146680ffdc5df3dc24f7f926853a43c83a56ed
MD5 f9b172c4dfef3f686adfd1c3ae063ed6
BLAKE2b-256 dbfd05e5d2716f4de035d9ca911f56dffb6e0a91679703392704eacc0ee4a8af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c58d9e41088fe3763e995e7a35e5fcbca334a5e973bc32b0697a2350c1db129
MD5 cc9a2d23254d1298512700c836e952c7
BLAKE2b-256 487e625bbdd0cf0c403d461b3d798747340b93c43ebb23425e018fc4e2f41ce7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d4b357fe44e5732492656409edd155dd700dea0b190df957766771465d384553
MD5 ab2e4e34cdf2b15c79893e8313dfcdd0
BLAKE2b-256 52931da32b1bbc41fed3f7050419258155a31794f5491ac513d9b84ba3155ccc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 483110ffa7cdd9c97f43e37c9f6853f53887a6810808761118ab33f8e87d4682
MD5 948783dc3391eaf02008a8fd469da780
BLAKE2b-256 0031175736c73da48cf1a85fbfeb103428ac38c9c24cecd476b5d0fbfce0ea28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f2b3c28cf19786c2447c46180e36499e44f750be45480b1fc335c299c44e9bb
MD5 2d3bd3d0d56918a425280fee320513dc
BLAKE2b-256 34bbb9d8ec7f0562e47dd892b290da0a1117384e7943da5e069d52cdad3c0111

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 724267d51528ec9f4810b53879b4a0f434675a428040ec2714839c1116e13a5c
MD5 347967bf96fc78c1aacc32ed0541d484
BLAKE2b-256 a0ec08f546e889a0e2205e36a8db5753b366a41338ff3327527b324158fdb735

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b6773c214019c863e4951d76e38eacd9526cfc9b539d55d550f4d00b2d9e8f3d
MD5 bcdb354b8666f30bb8dbb5ae7036d843
BLAKE2b-256 145d6be40991b6d1c63b6f3829d326e80c4871eef3db0a3c93527d1146de639d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce52e553ae570dc7976440cc62a9c85923b32bbed8ea9fbcaf2725fb3270ceb3
MD5 838a534530dbc501161b9baa3e64d33a
BLAKE2b-256 ba747f54fa459cf582066271d009f75154a3f00b92933b19aec849c487911790

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f0558083f62ec70909db6a2cc16edd71dc15fe3cae81e8d1539294b554a8fc3
MD5 c48993c6c6790a68ded2699874f3c1ae
BLAKE2b-256 2192f58a7b9f3fd68b655d1a0a4d1d7d38b98e30d417052ce2035eca6829a10a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 81e15bd27a9fd1ed63646832871f9fa18068a65a2f6eebaff61a2c0b8e442ddb
MD5 922bcdef777c20a79afba549ea4df6f8
BLAKE2b-256 2afa6fc69cc82370497ddef142c3a80c7d13a684282677fe0fc563d88b7e353c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 745f68b28ba4a7b25a8e229e71d2a53152593a5957dc083a666a643afed9cb61
MD5 4b9f08452fdcf27bae19a11486e39517
BLAKE2b-256 37b9eaf91de4bff934f47cbe92dae28f25de252946fe81536da5fb82d1631ecd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98742792c5d8f3cf2582be6e5ba348a1cd89b9ef911e716c322d60eb0b2a8353
MD5 f12774710129d486c920cf5d9d7020ad
BLAKE2b-256 63e3d3c5ea0851de72a1da02623d0fe09d853aecbdc28ccaba9e6c2d6cb8007a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1f5a47acc1b38ef03468377ec45019b03f9b70fb482c3a34e6dd952bea9c29b
MD5 ca1d7dd4119adbb3f0bc4ae209a0d792
BLAKE2b-256 53ef38fe6960b39761ec4f90881e981856ddd87e98c84c9b1dbe946956312488

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e5d4ba5200cc491716d88b204e4f4cffe107742e483269f93cbea2d827af9e2
MD5 54975353670a15a6fd98fe2ce9b69663
BLAKE2b-256 dd3dbcca8d81a2a6eaa7d3ba8c04af3eadd9404379932168883c06c33eaa0499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 de38d402f80645625f02393d0c2c3fd593d2850e5d9186c550664f7f278f2d97
MD5 9c464a41835b0944002a507a9d9598f4
BLAKE2b-256 40e0a5f93c97502916edd2fbe4951d4116255ac2f8da8fc1f0f86ba4f23accd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbda248c5200b390929b9f14a6cdd7eb508f51f031dbb40696e9425f00517080
MD5 5c23e01e8098f96b040d1d00678d053c
BLAKE2b-256 a1e37934d7d51cea0c053e6e792be3e2e538420629da2754400f649d61311a09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07a9853ed18cc1d7078eb9b785c457222dcf27e15555953139f2f6d2c74e0bd1
MD5 ab556c6ef3a27ca1402f6894375e60e8
BLAKE2b-256 294725e829fb17deb8c582df663b3905a9f12d65eb25a7ed74cf9386c40ab5e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.35-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 852e7527dc816acd6d24beb6e1f620543d38161de7f186488e2190522ac82bd4
MD5 2d5d1f83266bf21d0dfe9de202ed11fa
BLAKE2b-256 39aa7d885cdfbe2093317582a723e0795d1f3441aee2844f98386ed6c29a2b7f

See more details on using hashes here.

Provenance

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