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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.39-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.39-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6c28505f186c8c29b5964681f37bf0dcff675813fdfd91449561eb84420b6162
MD5 df7d39a8f0edebe8d69ed91ad16524a3
BLAKE2b-256 15e2deb9455f115e2e6bfcc4750519aa71caf2cba24fdf9d9182bf9fc6b95b1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ece006d4e1cd3ea64b112757aa06d8ec141c139c01ffeef26254df03f61887cb
MD5 d063bfa74f129492fdc498d3f6722b1d
BLAKE2b-256 6af3d023440b417473709b801de862f7f20d79a528b933ba34d0c93a63f5055e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8971351303a9a59a6347680b64ec73e2e0872869db8c87fbc85ddd1d5f2da1f7
MD5 b1c55b6dd4a5fae14cc4f1ab6f525b19
BLAKE2b-256 e987039cf2eab97f311802b3cfbe7afba8a95485e7f76df6cf63e02ef7207987

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 65ce95474439191942665968237e2fb5c6c3604cfa6ad2d794afed16e120744c
MD5 4081b1e1d2ae0d7cba01bd80d4be079d
BLAKE2b-256 05f018239f6b92967a71726fe0c583070b817b245d9810ba5785a98121f91953

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 047df37c44e5e9ca384b3281fe0ef5eeede8683ef3745ed56cfa4e0bc5136c73
MD5 2d82a07c0d5d7fb1cd2421eddafb949f
BLAKE2b-256 7c102a121c5701319081fa88d97ba32335071d5924e6d4d2b749abf6462965ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0abaa120c3697d91e4496236f6673ccdf0aa19c8c77b9cd02b8cbc7f61bbf9d8
MD5 2a294af7f7e8f4441efe4505b96e6926
BLAKE2b-256 03b2ea108a10d0c59011f7033767d5b593f12591b247e680af063a5add590a94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a683b82bfc85e4ad6e651c89b5859e398fcdc6eaac4d014ce411dbce6f64c79
MD5 72bf466fd498068997dd7472985a40d7
BLAKE2b-256 b531e001d374074db919850388b56dd4d6e22854a319ea2ff8ec217ed7243a77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 32f288ef82e926f548b06ab8b466a1e48b82b2b238623741a047a9269638291f
MD5 e69d9c4ef5dcaaaf361b150ccad84a5f
BLAKE2b-256 1cebffa0b95c0d0c3a126773235eaee162dd6cdc9f48ce47ab999969cf33706b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 36c7b2d5b589da7faa8d4923b08bd609a8bdeaa737bbb669cde84ac009350e1f
MD5 362e3f6986f256ad1b4534a925242115
BLAKE2b-256 d3fb273c9c6c2db4376d0f53530540f5665b40023b9bcef005afd936cd62775a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db4d5e9559c47dd6586f7439ac7fc23bfab9be00e9d163b4c25d51fa636ce4f2
MD5 ae8fb30a286a5811398765554a86c106
BLAKE2b-256 8b7ea0a1d271a17b4128fdf7335761836fd2b97f5e6425ef98c8f898ec299c48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34076b90e98c15cab74c85d40ffbbedef4da54e71f409a5262279c7c6c83dc04
MD5 443a54562b89fd3e4d780a09920ac3ac
BLAKE2b-256 a0220133188e518f982fb9b48212987093345f48e38b6734f96c1e868b527ce2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 22032ff81db2f9b14e8d74b91a98f8d54e661183260db0cc110ebe8714e43f1e
MD5 e8ca22821149678a44c80113796509f0
BLAKE2b-256 3ae5633dfe229a98b062e83d9c92056358475ecd0274a9e422f4ce5f538cb43d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1282df24ca4e69a5966ab97828e04d31af6f4ad1650b26ff9a482c9c99e425c0
MD5 58305560e9e2e802d504efb05cea1881
BLAKE2b-256 75d5405cfd12a0ef3def9e372b56299acb8f46935b865493649d00e07bcfea2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 184a122e787ac881c4d7ae1972191800007f17f58c308ef5c1fba969db2de728
MD5 e24c5275f3c89287512e8e3914ce1d51
BLAKE2b-256 5df0949483c047b7f05bea5601c9a36af65c9697d20b37caaed294ef416310a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb645e3e6de894e9051911101d6924671f5efb6b39b8ed4668d465f07ff90008
MD5 134c302103021d2d01baaee62a6268c4
BLAKE2b-256 254caa46c75d0d2bcedfde67a1769f310a22d844ffd2941b40ad8d00938811be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 64d165b7b11ac3cb4a1186a0c3f23fdbe5907dddb048d0a9cd1dc3a561c9bfe0
MD5 cdb30a131f4eeb69b177e563c7262a52
BLAKE2b-256 8a3a6a7989d11f050bd7ff4253303d8f3745bd1e9dc246f8a6441e6193368a22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 50a6ce617753023f45e6c25f6ef72f5913e58e8c7bb88553b63bb4d7aa9179d2
MD5 0c0d3462a2d47fece673cf431df93f0c
BLAKE2b-256 079443617ec689b42b5370ec23ec5d87bd17aaadff2ceb689d1f328453e2b0e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1bd5b21bd0df57959d3443b013724a825ad98856a97751bd7ea9e09c72853b89
MD5 1329beccf8a89b6e845784edd8a37a4a
BLAKE2b-256 74705ee7beadc55545788fbc4f31211cdcb1ae775e0322c9bc03163ee6d66631

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ca5ad67a6a13552e84531c64f2c2451bfc7d826cd521838c10e523aadc4cef3
MD5 2721c18a559171efc43954ddc56946fc
BLAKE2b-256 1c7b091d10d65fbd95b66cb0c6aafd2877d6613cbffb8f36faf10ca6af650289

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.39-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 75539160ecec851d256392020fd99143e89b38292c98602e23b1ac34b487a08f
MD5 931f3c9559bd543b1deb430cb5f999df
BLAKE2b-256 647b7f26326f582b9524f91f582467cfe900cb5c8407ee6a9dce15ae0b1131d1

See more details on using hashes here.

Provenance

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