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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.27-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.27-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bb3415c35c14e8467d3da9b37316a0f6fd4e434a585f32078bcd23d6bb7083bb
MD5 8d91288c4006b9c5e93eb876115f3a0c
BLAKE2b-256 adc26a623b4a1781962e198313704b05108bcc82764afaa0bdfedac77323c4d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eab08829e5ec13325f2f908dc083c8a125041b7793ca048064adb87a7c0fae42
MD5 6f69f234163ad78ef07f62fe6f30cb24
BLAKE2b-256 af980e6463a342347ac98ffd478a6026b378a22cc61ef973b88967a1e07133f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f2ce6f17bc34bac50af9cdc05af621b3b9123d6867fa47f94b87d0f202fe3ab
MD5 0b80fbdd6222c6350fd0cbbe23ee78ad
BLAKE2b-256 c9b6818f2118eefa4288ec853d4b23c1009f0884f08c0ba021fd03d316e47da3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd79f006f4c7b9e53594ae2d3382323d087179b4071bb15ec0484265bcba408f
MD5 58e80251c06b462b9e3fcb9ee1409a9f
BLAKE2b-256 6122c364f0d2541e46b1837d5d6ce82c7f2c4b970012ecaab17ddab7638ce599

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a11e61e0ffc0fe4849e686a222647eefa32cae326efd14e078c13a775a798928
MD5 9c1646b004109ce9e88db8efec363282
BLAKE2b-256 4ff67b69df72d553205d933c5bbab623589da69a299b7342a745bf23bc4dbe56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5ac5e95b4f7f83f496f50e1b28f4b6516946eb6f0da352f73376f08f8648943
MD5 611bb5dcfbd7e5d035bc563cba6b42fc
BLAKE2b-256 d147aee9a38d2e1dbaac51b1f2b3595babaa15f427d007fb8907788b911a4a7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b5b52091ce7ee67f3c2e598810132fa7a1a07cb24bfae04e042176ef8f9e6d8
MD5 d92cf8b9da0745a9d93eb623d3f57a88
BLAKE2b-256 c70c9f430652bf2c542188c0ffe4c66121057cf9ab76632488c777cd11adf74d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d283b0c7859ae971f8f04ab7d785a10319141bebe0a3f202e0ebe1f6d7b317c
MD5 644fd07d59bab8bf4097fe95ac663b0b
BLAKE2b-256 4b3b5f64ad11f71bba969811cc0450df1c9206c6f1c4282b72623523b528b386

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 150441949943a88862d3c26ebd7c442502806c014a1f521a4d8530b9db18d3d6
MD5 b0092524c730a545bb055f784e71a553
BLAKE2b-256 f5f969413e8e7840c7e77fbf4df0b41a03abd73e9620c854906dae5f3ab79e7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c8015a3b9f11195638ef5244ca9656cb744f610d6716905cde2e2a463623f19
MD5 f4125f6d2cf9a69d26ea2fdf8d1fb54b
BLAKE2b-256 a2ef956ed404578d8e24c2047b6dbec64500478207ad354d2419a8e07eec069a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91970f4d4f59cc3ce3cf5ea1ae4f3f43812bd1bb26980644b6fc3b330ff827b5
MD5 94c7e599dde511a9ac259faacbe8f84f
BLAKE2b-256 fee0560c0bc969f36a2ebf8e79cea34c89dd839abb61b5d641c927d5ecb4e37f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f593929fa00fae0230acccaa54305368cd3569bfdcaa820468be4dfc0c731ad9
MD5 5e9115593bf7e2dcaf76d1b6b19f5b89
BLAKE2b-256 f3ed34e40c2aa701c8e457d0d3adb03d07e3229a520b02dd8d4961fa86f01bef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f6b53df85ffe0955e119bf441885eed5b2b9d7acd9e26ed70c4fbed46c16be15
MD5 e41238e474b94f7c6612af8a911771d6
BLAKE2b-256 ef78e05877291e233274a38d49bea6cca9663fb71ba556fef2cde5cf8342ecfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c89297e9aa30fb5b9d25bf833083d3ac1f996a5234f05441de2c2f3c4e86eade
MD5 3e986e03aab05bedbf1205adbbb5b735
BLAKE2b-256 9ca4d42ded1015511eaa21f760fd11a19403b4143860c46935ba055c38b25621

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87d4358e07910ac2efbb6f7132e4335d362623d74cc92d3469e05fb235f2ba95
MD5 f1b67a8d53f1e9c9cf63d6defd599deb
BLAKE2b-256 9992b4547c6c13df900c48709a70b5284f775f8ed35f400a1e14b3d85834a8a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9e5d253bc33edd2cea18142ed638fe90d59bfa22f17ea7a085e9d0b32067a52
MD5 d38ec1ac3e2a8ab6bbc5a219f0ca0ba8
BLAKE2b-256 c7426786a59295935b458d1b9e0235fabfa457651438789b366a238f68a12602

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7866485fef6c69cd1e7fa8e8ec9bf9a1f8e1d2aa37b2a498be3a8d49ba7aabde
MD5 40d2b0c059dcc6b28545ff0a64eea9e5
BLAKE2b-256 f262049892c3d340191c6c73207e8c53d9c00e6e650ad10edc7ede469c24c16c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02aed6018e52ceedd09913a72709656785941214baa9b92323fa69b670287ba4
MD5 058ad12f46351c3004956dff162fbcc8
BLAKE2b-256 4248ff7a5cfb688452c3890a5f1346ad8b0081fe50b7385e62ba1ff12f8c4aa7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc7043d67877ac0b7aa6f50643af1433a822b2dfc9f30761220dd551760d5a27
MD5 2d45084761369efd429a7b4c18aac6af
BLAKE2b-256 5b7dbad89dd195afab586ef48f1831c129945e6da7f258958f3d18df05870c89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.27-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f461e8287f4b77a9cf20a28d3ea350dad3173e15dcab54c76558d5e2aaf1ef57
MD5 810f6d399bbd0563bfe39e9b90540117
BLAKE2b-256 00c708d8177b61d50881e9f8e8811000d6a7266779e398ae233b736f966b6237

See more details on using hashes here.

Provenance

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