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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.32-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.32-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 27554edd2425f59c328f4bdd7de92bfcc9668bc688a0dc5ce39b9c7b1f3d1315
MD5 3405045994c3959b335c1a9feaa686f9
BLAKE2b-256 47ade7ffd9d0b49ae61b56f2441b44d1bf9f2536c01520e2a35630743b81e947

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6370f1c72396ace76984836b104f352d2c8c5fcfc62d5e32df6a5e718347f0dd
MD5 f4cec8927a146675435f3a43c6e2601c
BLAKE2b-256 3b296f4817fa577af9bd1b1eb19b967037fc81e75ce0a0da1bc15a5b986266d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d743587dc4c2b93e65e88d01572b40b318f8c69feeb313bbcc462ae0c4ea20d
MD5 bd2154e92a236cdd2f8ad17a14e1c0a9
BLAKE2b-256 d762e1b1b238ec2618557f48fb574331938b1fcdcb43338edaf7d243567064a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c51964d20a9596341e2aba1ee7a5cb48bd998f3721b271f45736ef1d77311c77
MD5 1a61adaf51dbc819212837e511725c2e
BLAKE2b-256 9c8e907811f877ed0e29ec13242f5b2b18fdf0769c56a481c11367c7c5f47997

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1dbc12c1bc33157c9a4ffeccdedf69790e4559520765f03a0ec3cdefa9277c9f
MD5 3c2ca0a2136740b774e88bfa7fb0272b
BLAKE2b-256 65c3748636034483e0b9875b5dcf1fb1852f74764f38dc9b924da2915001a42b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85ca8315398cfc580ff3e645ca24a1bc81273ae0c6964c2b6b23befda5c86c64
MD5 ff9cb4c115e9c0e6b781ed27c4f7c870
BLAKE2b-256 f92700cb1b3f4ccd5385e552df1ee0bf1c1ad37e3e17a76d9a199e9f2ac7fed5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e633f945452e5e0e3641fb31fc86b18b2cf10da01be546fbd5d1a416210b095a
MD5 876476b1fda9e540f2e05b616152d97c
BLAKE2b-256 f29787e91efed192d962780fb6811928ae27ad186940b2f006e104d59066a2be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7bbdda48c3d05d77124da834153763f74062be4992b06bc41d899160bbc22dc9
MD5 191642657a66145418b5e788e37705a4
BLAKE2b-256 deae98b596adfde3a51e68195c263afd44408390b663d757a063ce355003f53b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d0e74bcf63915ba90e42500791365c901dcfdc03954bcc89032f115be65274f5
MD5 1c8ccc12d4fa1591076e5edb44c5d539
BLAKE2b-256 f9cdb97f38709e734ba760b85bf07ace1c264fd7127308ed8473febdabed6e2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9187e5132dde2292b759b6863e151e6c3b3d39c99471492cb6904027aafe5482
MD5 fd6ae922ffcf1491546cf6810d1934aa
BLAKE2b-256 ce3ca67fc65c5920cca28363dc75123f34a4e303190f63699552e22a5f1d0d71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de4dac7a19b6ab92fcd1ee599d640dcc0931789eac52549a9248e766c8b39278
MD5 a6e03ee9ba25cd1e4ead07ac0356ddf9
BLAKE2b-256 e7d1428b93bb54cabfdb2bba93dcb49f52249debfb78975facbb32a10de26944

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 831e65d11b886019d140c540f03523ae2f6a6e6802d4a7c474d50a0827e8ec0c
MD5 0dc43590e082e00f9a115684791b1165
BLAKE2b-256 ccb47d20416aa6c28aa8cf3418bfcaf1f2d40c16197a9880575358213f5dbdcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 aa59772aeeb8d0db038a81eb4ea4e32515636c85660af970ca79885ec1911a0f
MD5 810f6ceda4d43b875483bd362dfb6190
BLAKE2b-256 3e2b0a2449212c0ddf0fd9b8c96b0db461287b18788961fb9f683b3764aac401

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59b21a1fb4e51eb73c3d1d2a66c7e08272a86841cefe6941c693e0e4f32e3ce3
MD5 25bd1cc922675d7147a7e7425df9442c
BLAKE2b-256 3b942b6e4d3bd2aca4ef114ca0196fc2df65451bd1150a25d7f8ce9ffe4d0bab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c99d2b678dfd4566ebc27ea4f8d4090b612b17d399a9c8226d40dbfde153ffc6
MD5 151bce92d926fc1dd2dd8fb37835e740
BLAKE2b-256 c1e82642815648bf3d64a862cfbac7cac31a04cfd1b1ae744f5a0af012a44aa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 73316ab08964aaad8fd48d936b13b8457c9726691728ad252571b78ca80d3822
MD5 b456d2e7174f232e095c64c92cfb3409
BLAKE2b-256 4a5177ec10ac78a67c931f72fa7797a15f33d645e4c7048019a369b684c96959

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5fe422f17c07fc36012e7d2d376d8dd0d8ce351d64935801b1d0abf8c5e89ad6
MD5 e6da723241d6839e453994427200e6dd
BLAKE2b-256 7cacc3317dc3440ab1d92454c6e9be7e4d588b93180d11354bbf62addb86c0a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87525675cf75b2e45f4664dda8c030fb237b849e74dd02f9f664fe3f1048d709
MD5 edbe568056d26c92404625e5a5085928
BLAKE2b-256 a7253403f10a4a01ed5336fd33b9c1228db5435a850f95553666b407e2504e9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b08b326f48f2f275a6c911f08d34cfc9645891fc6419814f2baf32588b617df6
MD5 ae6fcf9b4d9bfa1343031a8e0fb75fb0
BLAKE2b-256 8e41824f0216de6a863859bd23ea6820253569d08e6d1344987e9d324c612451

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.32-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3868793ee8184e9d7856012a94ee884a61368f0a3fd4766121ae77074242380d
MD5 99709605c6f43e0a3f764bf2d879bd19
BLAKE2b-256 d90b97405bb6e0846268b40522850243302c7e68612e21b573a3e7886a6bd7ec

See more details on using hashes here.

Provenance

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