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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.28-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.28-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 166c24b9cbc470219dec60be45503237a665b150dfa7e6c6996a95f27f308027
MD5 12f103528a116b19043440633e4466f7
BLAKE2b-256 5a41af714d81d3d576af9697d7de0ebf743905a8132aaa3ca6fc4fe0dcb22d9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9443d84921ea3330b65b5f2572f1fe2aa373c18a6afca8a8dd171543f7e178a2
MD5 9a8d49f57e93b5cbea5e8823dcec115d
BLAKE2b-256 f7b415ace678cb3848808a39e84481cb7dc23ca7bf2fb3c4edca6334394cb36f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5db91e1806d090681a76fc955bdc7420f4f9034ed2b1928eb5e50bd1715e8dda
MD5 35572e2023f2436b9582f04220367ab6
BLAKE2b-256 9e797eba527a9fa5b5cd72f72039b269522dfc9abbbd36e678c44c7595048dc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20e3c383bbaa239ba23839a6b6447035fdd943e36bf56d922097d2cf66c42fec
MD5 f17ce3a8d9d5407a35c205feb0f764f7
BLAKE2b-256 fb7eb35035951dd5c5fe32674b1afcbe4dd6b6d3dff2dc073bb496cb67508dc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 157ca47203dafbb8bd8cc82d9d9d66f9c76604dc1dd84e639cdab6101e8e6bff
MD5 d6ea60f83bce237106c46a51d7ca8668
BLAKE2b-256 4001e0246da1d053024c0948fbfdcd9c1928148d039820d00bf25281f0c4bcc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b76a39b135a2b18c8eab7c8c2ef7e7f60a6d59e7bd61dd8b16698fbfa5084837
MD5 89dfb5d28d5de516c92df9982e606094
BLAKE2b-256 496f9359a00f7fe6eeadd44c541d55496e0a41d510a352317a3544772296f6a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abc998a415e74b25826aa8cfac54689bf6d0b7e753666259f03880da3d69d34e
MD5 176d6ef84e904d506eb49455f0e5ea23
BLAKE2b-256 57a286c355e377bae728ceb1e5dc0e4fbc7f200c352958fc78aebe6142a649c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 46e221875d3e8f26f449bb63f5caf69c146eadbb8a816164f104308e60d346b3
MD5 0dbc5583533c26be231b427973783947
BLAKE2b-256 2a624d5a95c4fcb63e376a9bba7b0b9925285b82221349ddeecd4b4f269eb19f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aac0add79d9936dd777bc2e09cf10307a6688eaa78eb5b5407ebeea1fddaded1
MD5 ed4a86b10d17cf4baaaa20393862f678
BLAKE2b-256 14981413a0cbd1a68348f248061b6d2adf6bdc7ff2bd67f79ad02bf3bcb8b2da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6bd81f45a3ddc9ff3cc974bf35c215889f3b0dd5121fa720a65346912db5a0f1
MD5 fe2843a47e2e64371f89ba471c84bba0
BLAKE2b-256 6e1b14d1030bc07dde6a227e6c7c1fb4fe8dd72b4efcbdd434111478cf38071a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 778652d2b37a9e7792ee286af3abe8dd4ef6299d1cc34a0ee2b59abaedfe30e8
MD5 829984cabdc0cb7f51b68f723ebcc39b
BLAKE2b-256 8a5df46d538443f0a152a27046ff49d2eaff971e79d69b49a8c306e8f2ef1f7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93f31462d25b6f65cf5afebf5f26bf7dbe3a39810bca61ad718cc656e658b247
MD5 5b9d88aeba575b3c3c33951d8dbc6fe3
BLAKE2b-256 da3e160e42d4317d94bc5844ebf682060a96ba1b368e0be2cbe0b28c1ccc27d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1e442c279e0ca1f38b567ab4cd5efd38018f77a4478c3f8d0b8016111f2488c7
MD5 a4f1664a99166c8d8f370532baafe1e6
BLAKE2b-256 8ea28061f051ce6664cc32e923e6a72e928e557361f083bf69ee8ce81d05328e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa98403528b12ab79b25181756e7753231089dfa310feeb8d0c4c60de57c3157
MD5 8416b0bff36cffdab60b5699430aa03b
BLAKE2b-256 45f460e9a2b88973636bcee79b30148a1719f18f7960aa61be8931a2c15423c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 390f5723eed4c05094fa273b385965cdfca155d76d01d3eb3893974a8940e022
MD5 fd2fa48477b777ec5dc2652f3418e655
BLAKE2b-256 917c042fef440bd0bff94363fc3b1cb95874779e61e92b149d060e6754282110

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 905557b3e3caf105e94812e35fade344cf84aa2bd108d0258b09e0b1eafdc956
MD5 1e87d3333aad19e16caa73d45f1636b9
BLAKE2b-256 3c167fefb452efb9b63a7dbfc6cc23700103e97025474e6d218b71b972bb14e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2110954f531f12fa787e41668f69c5625f9241caa0c9f5f0c03292fd31355ac5
MD5 9be867cd1b7ba34a4aea366050e26757
BLAKE2b-256 130d9682ca5bcc15c93f2fa0488067abb4aea0aaca1efa1d32b00f0894aa87e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5071d3c2b609fcf16be25abedc159e96161286e1b6eda2225be6e5b621f509e5
MD5 abe0bfee3634663449e61e35a81c7bbd
BLAKE2b-256 68ae406638fc274d2e9c7e16a91d4d17c4b1c51365c0326df3f13f91e68f7e10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71b8aeaeb2b52db61d1d59c3d2dec27ad9d20ab235137fb0629d4b592175fe65
MD5 7727faca3e9b39de76bfd75f22c96dbe
BLAKE2b-256 a5afda315c5af6aa4dd9ddfa1df06354112dc32aaf7a1910ab0ed05df3daf162

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.28-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1266a5cb945f530519e701326d6e298226ad529eb6d662483b52fe78d9dc4430
MD5 84cd11a7940a47b7406495eefebb19bc
BLAKE2b-256 f50c5a72301a82469df07d61fa81339998c8b5f41e03fa3b9b5460df92f77ab0

See more details on using hashes here.

Provenance

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