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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.52-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.52-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7e842ea0fd4485a18bdf74e8990249864106d921ca9cec45e782746c5d6bfde5
MD5 e03ae4c998679b646de9ac943286524d
BLAKE2b-256 1f29039955c10143725030316723879eb162980bd1bd2553c8545c3db44cc00e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4385e2912f33e8ebd6d379569197faaf5bf71b0ac640d42ffb54ae65fc00f09
MD5 521ac2c90b4bc3dba522810b84ba2df7
BLAKE2b-256 ab8c7f5767c434df01f669e842f8e7738ae9b949a18cdde85cb9a44a056eb70d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae04b8b4f75d915aa2b5b6b4eed739d50220b6773123d7427aa081e0a21ee64a
MD5 18cb61f696d56587795331517c8652c3
BLAKE2b-256 6e48ff347aaa56017fcfca6fe86ee2aaef2eeffe235842a6be7648bbf5efa689

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef0fefac8dfb42eb9faa293405e1048599996ecef6bdb1b66fb0d821e37a93f3
MD5 3b898e5b4f07c805916a7029b06542dc
BLAKE2b-256 4463f270bf865b022fc6d464cd950b86a4cceca242952b5eef10c6480f5061eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3a310a6ace5a989ed812a8f2354f8e99814f07e79ac45f9df3b5c148210a65c4
MD5 8521cf089a73b8a45443aaefe711a672
BLAKE2b-256 45257f35f03d0ad18e23222ef866e66da2c933e43a6be0ee0b82bb4dcaf0a12d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ed6cd48fdb11afaddb8e75111be3eb3e5977a6d5196c12777ee8ed4b258e4b5
MD5 f8b477ad9f72fdb9a196bcc75cea363c
BLAKE2b-256 90d3c068f88108f5fc9e23bd67c0fcc938780fa63c1cc515c80058cc5a6e843d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c688d7734ee6fcca7def23407bc3e9af5237bf6608bd7492f3659be5fb5d86b
MD5 2f4fb2a8e06b61c96d4dd411a626c645
BLAKE2b-256 27c4afa38622dbea7adcf22a8412bd715005bc5943cab04e1484e430d996003a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2a75015f4d7aa97042714a3777c30582eb9783f4091b91e5ec55d20d0cf4109f
MD5 c37076f33ae3fbdc6a82c3c401e6ca5f
BLAKE2b-256 d6a34b57ecf92e1e0d316dfdea98f65eca239d4d80d9eced27ccd0e5ac7da0e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4ca4e30194d022fe34e913297d0a8d0469143a2c0e16959512883b6dec447fb5
MD5 09623def202e4a4e6f891ad8fe6dd78f
BLAKE2b-256 545914f2764bf620436d9be208a91e48e1413987025d0e00b4b0676597b2a1b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfcd5f54191b87577316771a1776b95001c6f40690fcfaa53532221ff5efebc1
MD5 cac464a41ebb5b0d6816afdcc14724fd
BLAKE2b-256 42fbe66fb7daca68234b222179e0fd80ac39503cbdeb8f676dabab058037cd36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 987dc18944c4781959d3eec2a53acd60518bc3e8cd467be49b13f5e85f67375d
MD5 eb9225ee312e6467220733f79080d107
BLAKE2b-256 a176591db1406a14015d16284bc71cea6cb139708f721fc9dafcc0a929dcbff5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a2a592b7b893633578e46a47895d6b271a9cc9bf8c4ecfb4633888bf1dec1ca
MD5 c3d347e80413d811a403e202d871c915
BLAKE2b-256 3bf55ef98ec97babc92013f562fc76816357878772eecf9efda1a6f9a5d6f606

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 836428e21d4cca5e74a2685b69fbf7a2197cc21af6b1a6c18e63e8d2dbf545d4
MD5 8bd9a55d4b576d423b61a0736d745c30
BLAKE2b-256 6fe0daa4ae8096d5d0d25542fe6fa650b4e5eccbb4c7be575fc55b79f1c9df66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1cde27166faff33fbe88ca06a14600e413071f874882f6831d100cb5f4ec268
MD5 c912b25f05ecb5ef9b282a775eab2a78
BLAKE2b-256 0d32b3c6de53322b73cd36324b9f8a38a1f1d57b05bde5402c9a90f0161aab02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efdc89a0e7886baa62c4dfd4f62ac3be798d8e00b639259c53ea8140578b1599
MD5 b18c1b1cfbc942c5fa5609aab137a0e4
BLAKE2b-256 769809d55898be24c9ea93bd8f555343953a27328c924e116f5b6616cebd41d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a60d50bc0797e451920e02b337b00352d6efeacb711a35bb0dbf40ab9e1b816e
MD5 37e22cb68ca9e99319a04e8b97bbe2c9
BLAKE2b-256 edf3a64d6de88a0a51a42f5bc27c7c719d7d474c7bbadca1f118c5dff4810833

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 be554b30d45622b94da4913c28b02ccc57ce72be22be935a979ebb4299a1dfe8
MD5 a3375c85c273d5d88d00abea984f828a
BLAKE2b-256 ec0594068b18f974858b6244ef8c3f93cd6b8d0ee24e0c5e933dba8929158060

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01c482afc84a79bf63ee07817d9602aed8ad702d55c358bf120357ea2659feb1
MD5 3859ec9399eb22b11a0f35b3d79cd825
BLAKE2b-256 ec22539b3502c444f7a9cf32af21ac288e03115782e41025356da8815b5b4b8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 065044025e047416e3c9ad6f2715b65cbebb0aa275a7e6f3280628d6872c3e8e
MD5 e129dca41afe219099b08fa7066279c8
BLAKE2b-256 b3a078c755427b50474af8b00ef2da861d9a6a9bc3aa8e6cc832c0e6fbe529b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.52-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 97b79005dad4f669f25d817c592fb236eab0f6c8f903a3508d7b180ff966ceb3
MD5 73106d87febf837506eb72c9c9eab064
BLAKE2b-256 86ded4dd9e6a80b7fcefebd87f65852cb770eaeddf307e6fee6cee6cf9de0a8e

See more details on using hashes here.

Provenance

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