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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.15-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.15-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5f566c1e6afad9a8a996c54efdf4e731a342e8edb73e3a6d30403f9ebbb38698
MD5 6ab11c01206060fe3e4476fce60152dc
BLAKE2b-256 9aab89c986773f43a2753656303f9577722e71ff231638e161d0da4665f26ae9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e7da025377158cbffc3d94b3f910321af291f962936a4bb703fd5799bdc6fcb
MD5 1309eaab8a4ff86ef0d9c36e6d046eaa
BLAKE2b-256 f6946d0a17b529e3bd90f27278968da0ed7c1039ea9fb0e0719fd66eb281ecfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0c728839610f0c63fdf9f50b84c115e02fc6777ca362c3af014c8bd9e758fd2
MD5 e46f3688274066d44aac8a9a9b889db2
BLAKE2b-256 e643d0cbfc04789cab4b6d346647fdd25832fb877693e37c3d6acac8dd6a5d8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c1e4ffb51632a2c4831579bb35e81ab78aa743154b3657823f45c64b6081e72
MD5 e39e6f6bc132db640e6333b4276c7fb1
BLAKE2b-256 8abfe81c2ce22e315917a1a5eb046e97c299ec61fe96d5e3920312caf4b06252

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a586d21ac770862a391d5473ca853e0b98c5417fb29663a7314289a451acf6e8
MD5 9984646ea6a2ae273b6cc6644f9c10a1
BLAKE2b-256 2492d8af34d07527fcd604b794dfc56b18e8786b9569ab6d7c8d36bfdb8ce287

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3ccc98eb7629e0a3cbbc529ef7fdcfd07e0b09cab29ca73b9de774f88583915
MD5 754571d3a1479d34ccb22a3721883efd
BLAKE2b-256 a7a028454cc55d2b0f5db9d8b95cd5b93f5168a38c75a6b948cc51062d159d9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab9ecc4705ac2a42f8b4fbad44104cdfda29b302ce0252d0134bfd62cec06866
MD5 6aed994af2214e9664f3bef7ce192570
BLAKE2b-256 a2a7280499a5248581c19acd36007818aff68bb7a9a24519de6aa31311e51d09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f849193ff1ce380c60a3973c5a232313e68d5271e06b0c4fc621ae00a566cb04
MD5 3a52d9ee2657f96f51aa7ced0b8c0b09
BLAKE2b-256 5a6e5fafd1ccbb2e7815f5cf6d20236a51dec8f27fefedd737bfbeaa14aea44e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cc7e2bde809d240d79df1c570cc0dd23908d640e0e33dd87dd84e11396f4bb48
MD5 2b94e4daaad740771f01086702065203
BLAKE2b-256 ec012d29572ac826108ad99e4aab1f8d5687f5b2940336857b52bc421786d7cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1218d11a4309151e6a21beaa559dde64fb36ed6e8708496e236ca00cd9c13460
MD5 554c27aba59e5a86e20b392c62ecbb97
BLAKE2b-256 3f96ccbd4e93c84963c7b93fb024eb71541589e711b0bca6414d02465103da65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebb45958c33a87b36f8a494b16c587b989ea8198acc44837e4a9794e79dbc7eb
MD5 086fbd0b03e78ad7cfab42377caa072f
BLAKE2b-256 9d833e741ba1afb7872a0fb5929e4070d05371c64221ef5e5e767da5496bc13f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a9e852cf5c24d7dd1ba14154559c6db6ceeaf3c4430ff4241f80231712235158
MD5 2918e8024558ecd10c66ed2df8cdc008
BLAKE2b-256 c8063d3e0cd2be84cf80601724138a7247631a0bb9541d76db21de6a2fa60768

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7a3cc98b174e0559cddaef600ee93402e6e9ceccc35f6071300b2b87dac65b75
MD5 71a9e114bf0413d78ae0457874f78c3e
BLAKE2b-256 c86bab0d39c00453879308832dc3b7026afbe39def6ad642489f0686e3d67c8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fd306cb368913cefb90898a22faf0baa61027975c08c524bbfe4b59c466104e
MD5 28458117d2edd8f0cc462f7424786e55
BLAKE2b-256 ae60d75086aa4308c3a3d2eea40a47e89707f349abf338479e451032f9e63b20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ce4834968d10ba71ed5a9666da34abcedc3353a5d7f692840d141f59ea92a0d
MD5 0aa91c957d36a13524276b73c31a9ad9
BLAKE2b-256 28a0238c85ae9b11b0d66b7340a898d1fefa6e286fed56cc1a9f9c8b80754c7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a354c07710f7495f566f28a6363111bd134cb87c490987b46bba2b2a72ec55a5
MD5 87e1189e30e1bc9b788a26b8dad883db
BLAKE2b-256 05ae1987a3fb68c7eb8440181c273df7e72448bcf62a0d52ba47cc88eb4b3da9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f04df086fe7f9abc18f5a186c6484ffb2f34c59a25ce78435d7244cc0baa9eff
MD5 82c7a06bc4a7e8cfcd04109641b06389
BLAKE2b-256 db9ec77a74b6eb09dc01802bbd4276bf74d9f13882cde567098cdb1d2f9592fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4d762bc4817ec5c712fb8f0ccd0b5fd8147516ee24bd2dd66c486473463d4e0
MD5 99f5758e4dd3f4b928f1c508b19fe16d
BLAKE2b-256 96c0e802becdd791c9b345ceada28de3b50d04cf30227b48c6774c37bb6a42d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d981b0335e1937f6d602f47625402ee56c74685e14f64399bde1947dcc1e422
MD5 aa1f4f523b995f5ae6374cca3aa2de3b
BLAKE2b-256 63c08ee4f91350e8c41e06a69dabb2e6a23b3f48903b3956db092c8d7daed80f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.15-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b14633ff57fc6a7a9393c2f7f25a579965e7693819c871dcdf9fd38efc695ff9
MD5 ad01e58a45de751602443ddfee9f4ec2
BLAKE2b-256 536227674731d1a8d6aae45e9e64ad7162d88349a9ae593db3909eb5959cfaff

See more details on using hashes here.

Provenance

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