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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.34-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.34-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6aeeb54387bf79149eb32f78139e3ac53f96697d25b0f56fb5e234acb9e062e0
MD5 f53523a1559d6b1bcbe4e9abf617ac14
BLAKE2b-256 2ebff05b0fba5954fb340b2ac5ebd28731e8dd85c74273f2ab0ec17c98968ca5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbe0cab0740acf5b4ce2bc7a290ba6e17c914955c218deea2a55dde1a5e3b856
MD5 806d65e81df9c55162ae51f8dc3047a0
BLAKE2b-256 16b605851711fc618cee6428e30dc5f722e9b8bff50873977f4f80ea8db639a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe8c2fda3127e871f9f525ca361dcf0cc36ce5c5bff5e51dc13cebd6a31015d3
MD5 219ea86dac51cf77550c8e067410473d
BLAKE2b-256 580348795155e89d62c8ed684440a12e8ac3623ac975ec4469f30ee97d4fd48b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aad7841af2cf3adb3b6a9fd4ff3a8d44faa812cd3d2ccda7392f6443f4228e16
MD5 b9923d98da4bdab6e8648bbd49f7489c
BLAKE2b-256 da2539ad54ab9f3b4a6aea41ae52ae617082fad0c012aa21affdc27583b9fbd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 20e19958c475bfba00e728b96472780b7cc9c8d128997873a04c3f0318bf984c
MD5 93b2e2e86d37b6983b105f80e17df2c6
BLAKE2b-256 9437bc35929828cc8466c189ce45c27732a4b857d0eb4b01f70a0dca5eefbe1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 056646763ea7092dd1c45f8bd427b36c5b638dca18a2dfeb662f5ab94dd40137
MD5 c8c4a36672058ae451021e90e33a32f3
BLAKE2b-256 205d8cf2ac1bc353c0481719ebbe3ddb0d417ac4ddef3f2a3d061dcf3a675969

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 839d246df41c9957c8db313386a2b93f8145410c59d994db83a18492b4edbb8a
MD5 e4a8c51bcf7da436b6b3b644e4d2f5e4
BLAKE2b-256 488ec22353eb54afd2d5d73c1115120a780ef633ca2d1a59436f001cecfaf475

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 af39cb2c284fbf2f84802f35ac715e98fc66fe3ec7e6c64bef52ec25829962fb
MD5 91b46b982731dc064b3f803386df1107
BLAKE2b-256 914e7f3e398cdcd04d46e704a60e82a535711361c97cd928cd6f23d8eb355edc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 906b162197098aeea084c003328926c8623f10f514071fb8695abfc1e3496717
MD5 06d771188dc4c5e9c4abb04ec6eaf3b4
BLAKE2b-256 0669f12a45559aa08666164701906f2c174020a1d56509db73bbb0ea08c49d00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b7a99425a0f22ad0ccbecd6c0cc44cb11061906d0f634debaf4b4a58213efa9
MD5 33e3a833e1d0077e0dda1ca613b20711
BLAKE2b-256 0e2a3c7bb73366d1165a252b87c4eac71d7f8c26ac03ee31ef54f72a1e2465ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 576297f2ffbd14e1c0ba6d9b9cab960fed5319dec3747009670617c4864a953e
MD5 f434935991d76abcd63fd6233e6067ff
BLAKE2b-256 3a9873ba15d03f29e3fd8828e48926c82fa034612b306f9c80fbfe3698ce70a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a2f9cf039b66d361361e8c618bb51675cbf828351b527c4ddb39499a8a14d7d4
MD5 a9df04b7ebe785708895809a1f5cae89
BLAKE2b-256 5e3d046aa789ce20e66656be47189e545bd93c5a1b37aca0242667046c97d234

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fe80d6d1417be91ee31d63d160b470333139c1ec3d5e214a7714399e485cc359
MD5 159b8823a1a02ac1d9012a16ffe6d2c1
BLAKE2b-256 d0540a65e6348b271c8c824224cbd3d19d28829a581235a50ca0ca1dcc41b243

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47a0e0d6e597fa45f96351b3fdc1dbe122820ce9934109e517366b3858f39b4b
MD5 a400c0105062244c6083968f2631337e
BLAKE2b-256 47890aa41883df484bd141ef84e3b5465e41cb6e3c86dcd1fc0911aca621ff5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1eb2a9b24f1eb4b331565c9dfa2fd5976812881313364a6768593bbc182957e
MD5 86a1918bbc2f41ee62a99ebe105d5d03
BLAKE2b-256 4b98b32ab6b9e0648f850e8247fb95704fe245bedc1bf30ff4f063e066c51779

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e51c398d8fa9fedd38916d9455530e416a86f53f57f19cff9ebfcd488f89a49e
MD5 ed869b36683b8afdb6412eccd158d05a
BLAKE2b-256 1be45aa3978b854fe692b72baffac02521dcbfb29cc3ad0c0f4166fd415b180e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 78337ea94aa5084eb3921fff452eaa71cd20a3268d4d53a99bc32a80ef2e0d7c
MD5 f18689697867ad4add77d2e839623d6d
BLAKE2b-256 f7982ebc344b7e4b1d19380b7c3cb673aced2f5e087060843dbb2f0da95652b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7d0e9a01f2d43063344c7384f593fdc9043397fd2518da106bed0f42a0a9a82
MD5 289a4bb296ec6997487e8bfb21c7fc83
BLAKE2b-256 34c27a601b5b72c37c547f15ed7847ad9d7d39b4548f461086a61b6ce37e9861

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e4fc18113da456ac50d3b1a9a9a65c36c4ab5a285d287063874303e327cb935
MD5 c8b27e13331ca2146a242956d0cd94e9
BLAKE2b-256 c8f72e9b573c712e1b541857533ddd14e13729229d027a0ed7918ec637b399b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.34-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 10fbba50ec091216edfb295bccb0760344013aeebcef1a36a6059aa537cb3203
MD5 a839cfa6fdff37d251ac2fa0ee4d3635
BLAKE2b-256 bd2a1b32ad822b565c71b6f4ae208d23a6df5e6c9e1036bf92f062020cb8c578

See more details on using hashes here.

Provenance

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