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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.51-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.51-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 258ff7c6020fa8e4da3faed38000fbb5bf1773984c37d583746b5b753930ac6c
MD5 8cd3ba15f31a07c460fe2023ba588ab3
BLAKE2b-256 b4b70f15ac7960b55ec329858eb7421223e8bd9faae62136fb6bb7e60f4d9d8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20e838852a29075dbf060be7c475bae74c67eb7fc8fdccc0feaa9d267fd6d939
MD5 45e9f8d78e9f7e30a4a4e77e4257cae1
BLAKE2b-256 946c7fb68fbae7f70f2a1a6e4d94c7dd3e54b77c316cc4ec9fb0d5f734c773b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d248b054bfdb35da6bd8ccc1d9a5453e4919e110f0cf7a74e0645d4a5693ca4
MD5 310fcab801774218acfa839768744a30
BLAKE2b-256 d99933707404f021b0ba29f3ed5b3b0e79d37f5a68853712f8964c95e6b8c0a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69d4bd684064d3671bd4f275dc61b93d958cc6b6b26a2b7604cb568bef266857
MD5 dd6aff930c1817669d790eea277df97c
BLAKE2b-256 c5723ce2fda10ae4b4eeb1c33e85c9e8b7027b52b4b9300077632769ed1183ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ec0ed998e5eccc35c72ebae93cb2ee9db132194815d8a69e883159073d5c387f
MD5 9259db7f476491713a828e8bd86d81e8
BLAKE2b-256 59921f7018454eb7465523c347faebecdff5c15ca0d10a866328801f28a56c62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27d4bc4fe9f1c9e221f3e96438cb22b940df4310e43a675285bf62bae49369b8
MD5 6d415e2e0bff4e2450ab6ed0453d50d4
BLAKE2b-256 d8771a4dfe6711fc7c38eb51b9f47ab89f4c15799765df2af35852ce7475ca22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1977331d47d70e95a16db22ae2a9a12c0b2bfd1e82b01da6ec7fb59216bac933
MD5 2ba055595721275eb1be75d8ac8b167f
BLAKE2b-256 9f905481ed8470f34330bca9c3c1b4ad1d6012b8f0318752ac5708a524307121

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79da0bd08c2e305e6699d0d7586f14fde82841b6860872a80c40657ef0f690e7
MD5 51242c08abc36db88966d0bfc5135ac4
BLAKE2b-256 7ffbf4fcac1facd875602710c0d3e632959e2e2ca881525dfbd4e08f1af94dae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5089157c5d4aa3cf6932b22bed7a64979227869eafb2bf889007b549b201aab6
MD5 75573d347a8452ba9f5c619101075a13
BLAKE2b-256 8c4953b4ce6fc21ced4a9997290b382bdad819f9503f90db392158ec6f206e97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10558ca9a649c8c1e7c9ee678c658d8a0337f6284f2f1a2c52d8f7f4cf05174b
MD5 9f3fa37eae1c2aef0773e6b833c816ec
BLAKE2b-256 5fc8b4f78656d225d3a6f248304f04c4b177ab300c29eb57dc3687cb2a368664

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e6d59a8af84e16ae1310d8f3e95e62e015bb010a48efe852a5610ff6925638a
MD5 ca180b3ac64eeebe5eda78b515e1eb52
BLAKE2b-256 f5ab6673fd220a34a6eef0d90301373d74e5a9c8376a9a1d0bbb695016d0eee6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4072861f0e58770ea22c2246801c0645f65369a2925c53310980bae203777841
MD5 623072d066ff20fc224e76c5931a25d9
BLAKE2b-256 87a153a31e8de64269970102d26ed95acf3b497a66c648f1bf4297b8a40631e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 baf1599eef85acbc7cf5c75156343a4c65511ece5fa99ea2fa838b27193df3d5
MD5 ea78f632178e0edd4f74c56299000e18
BLAKE2b-256 595860368233b318182c9df25a5367e7a4fdac980964c370b14f135a8400842e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e25c8679f333f8a8fc7481c4a069203f699fcdbcc8b082999c005c9662d9c00
MD5 f12f2322ff2af6c18920e81cc9b9575c
BLAKE2b-256 bf5e2764117270a4e2b8d5a14c758055519e66c263cf04451fb1d77716151b64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e76ddc67eeac8f2dfaf5dcc26d80cf54ad42c4f0bd5c58f669c009ac53c16ada
MD5 84bb882dc995af5015fb46490fe2fcc1
BLAKE2b-256 f698b35026de477601fccf215984d4d58002497889db8ebf6a4b8988baa1b8d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 309d408e5100364b485d3fbc2cd0e1de91c2fea0f0f7ee31097d8451deb4d825
MD5 3ea3e22fde1258246c628bd0c607d1f3
BLAKE2b-256 c258cb58e9145d99e9acb8a994c0677cb434fa2908298da84a81a84fba22156e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b68dbe8f9ad676011d692abe0fe6d6ba7566e9a39b1b2fbd4ed4f6a19a797ec3
MD5 54c5394c128bf4903158bed8ee2124de
BLAKE2b-256 a23bbaf370c6c66ec745fde982d02e552bedad6d70e8732b44926ffba0b4b3a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f9a6288c055091de0f9e19addb4e15f10d1f6eadcffae07c13f2a9f5eaa342e
MD5 3893cd02b9954c79821f5eb340477198
BLAKE2b-256 e5190c178ce07ff31213ba55d7794616aeef0ad3eebaa87431adbbe44ac6ef8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adb470a768394aaee53c58e03d0436a0bc61a2aba89ee69625d7252f97e0fb3f
MD5 da56d5ef560efa83a96013c65a2763e0
BLAKE2b-256 9a779f93c380ebf37d1aa9cd685fc2435783942a7c389735350f5fc0e3e6b18e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.51-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 098714b341998bcacbec86a8311045e64fc5ad6da71f1a4250ac82bc8ab4a61b
MD5 f1d6b7ff6617eb766789a4c033b5816d
BLAKE2b-256 3c8940222d5580e1181e2c8aae50856b82f3c74520a61c43215a6f862408716c

See more details on using hashes here.

Provenance

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