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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.49-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.49-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ce2492c47c69c0314e40184267f62e89904ef48d80fabdebb5481e78afb1af6c
MD5 8f60ed9a5a97cc632caaf40c4e30a69b
BLAKE2b-256 6c07ccfc28a9202ef5af0334f76ee0b247ab89b129647626e8ffbe2516c86543

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08a6554b120a0a8fc4511e6bdc805b2ffa307a6be413eb5e76004f69f29f2e42
MD5 8604b0397293501ea742b219773d7a2e
BLAKE2b-256 ba76579b8548cd12b8588044624df8b1212d4a2f4df2a1b0183c7c10657e0531

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 114373de38d4482caf09020584158c3119a1859daba8e5e312da65e0a51f7757
MD5 30cf5e01c13c6a69de36368f967ad0ed
BLAKE2b-256 98521f6d99a3fd40f15ab556f88062771b9c2ede7920bcd4d8bfb0a48eb76311

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f73dcd4f61e0983ef93aa21f6606da49c7c75fb82815f542b1db5a49e3aade33
MD5 0772b648c2eb8c5ca68ad254c5d181b2
BLAKE2b-256 e6f9600efb731efbfc9de352f5d5a158cf0c2b9c512d655af176c356664e447f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 63e35e25ffa3824e97107f31aebbecdcc8a51bc0f942ae0ae66a66405d82a885
MD5 d7671eb63e66d9caccee237f40093e15
BLAKE2b-256 e19bc77c1526ca8a21343b37a8e841dfc5b7a67b7691af838540e5423cfc9c91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fd318bad45a772e1dc8640526dedd4088984f9480553580fbd5c0c6848a56a0
MD5 e280e3000e5b375dab1daee4c8d98f1b
BLAKE2b-256 c286a952e2c312bf71a2a8a56a8d19167078962d2ca191ab80c4f3464e5080b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d40766a516764d2f2324412bccf38e76acf7982b0ae6be4cc0bec1034c1f293e
MD5 c49d3f133bc6e5ea9ed5f858b9efd860
BLAKE2b-256 962a164fc550a34be7e1d6320cb4e552461b75c51e2e047490587f6ac96604e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 59be1b6c7eacbf02a2a987ec9f2078a4908caf28c7a64b318f6b30e38c4a0e88
MD5 7d48aa8024d311246a1b40e584957e52
BLAKE2b-256 b1f83dba39eb1f7e4595967f7dc0602093f4bb7cec6e9f7a961d03c8236089aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5fd9736a884580d97d7f776f1b322b498d1fd4970477b653f86d9520d178965e
MD5 3a52b018f08b47db00192afca08f707a
BLAKE2b-256 1bc1041c7887e92a64a18e44406324842d2b267102e477aa81e7f518c0dc1950

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba9ee615afca42b6db8ed0ba45d51bc6e5a65de5f742773b513aa6add099d299
MD5 947e374de0641e682ffa35bc09fbbeae
BLAKE2b-256 fbe5fc3f60b49389daec2fa690da8067025321eace64ad9c8fac8105df029a9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be6718679b0e5a23587784c16f24d14ad9f53677b047c495ca4ba063aa97f5c4
MD5 f9ceeea5e9a3e1adbba94e1e5284b715
BLAKE2b-256 2b6d4905819c4bb00a4cc1b1b3eeedd3b36644144fb9da5296ffd5452fce91a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3a47eca7cae274ac00054512aa99f846df35c7af7919652f73c81b169693c092
MD5 78bd4009a2acc3923a142116bd6ea9df
BLAKE2b-256 3e3c95acaaa435152916e528e35f4cb68aa9c0101cf3d6f938ca66228f355ec4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 79911bb1efec54c8e54c63735ffb82144195a36ebb52324e6b4fd6e8e87f50bd
MD5 3aba3b7d81fce21bf908e2d0ecb7db72
BLAKE2b-256 d1f9cb9f9d8e8e8d89eb70192e2d0964a6adbbffca5fc653b71895a0250666ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a70b8ac0b421ee808cc0cf32ae5fb74efd9df5975953c7b7450fdd82680421e
MD5 bfbebcb875cd668818e7c59a534ce8c2
BLAKE2b-256 62a36f8a30f4ba45e0bba1422ddd126f798175e52a6e69d5238dedab90118ce4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29fd0275a7d62ce876d05e8c67cf384a3d5f438ae2e8f5012f9d58f72f0f0f45
MD5 c5ab8e6339a5c9a8575c4c307512a042
BLAKE2b-256 0d52e48c7d5994ad78c615d70907e99aa033ee909f28fabfe99fe4e7a6cf9edf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba74bd41e9451481478e8b829638a7658a0d57a407f1872582e8bdd1be8626a9
MD5 fbaab295b7f7aaf84de0cd769911b3e4
BLAKE2b-256 b5b863c1dc653765a756bd02fd8d8c0525fdc9793c3987e14306c6d60ae032ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9d090179091ddd351abd9251b20e4053ee44b0b0161462962d2cdb10eb7520b1
MD5 2ddeb99fb15aff294e963ee80148b1b8
BLAKE2b-256 6d4ec677547776f99a78719169e634b4798a6d9fffcf66509c648663fe5c877f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c99119dad2a97329750bb6eb1bd492d7fc8545641d3362165d4b945079b039ea
MD5 893a5662a5531ef2c9ae22656caabc76
BLAKE2b-256 9c8c82fcdb40c737efef2a29e04e00b14ba31958156d94c42b87166cdeb96a5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 752fc57ca5b110db3eaa4223bd9632565c7616d76847d1bb7f30d463b455dc16
MD5 20c0872665189c3c525135857ddeac62
BLAKE2b-256 3e8818df041d81c74cb87cfc93542ba0123f2ca884a6cbcc17c0cde2ed9a946b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.49-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9af7f11b570b9c6ae7fd934f12c4786cff7655a142ee9aee800814d8231ce8b7
MD5 517a6d24c167b91ca35ac53f596ca5f1
BLAKE2b-256 a429420097f80fb37687765bc76d1b60119152ab405314c4e1b6a7d5e4e03419

See more details on using hashes here.

Provenance

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