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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.47-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.47-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dcdc7d809a0fd6b6a68d70da90a6d4ac65493e2ef9bac79c89218fa82bf43fe5
MD5 c093297d710223adfbaf26e595b8fc89
BLAKE2b-256 a0384e976ac66ab3b725bd54065c8f152d6f76aa2754d99edf7ac5487733c087

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fc476a4da131b0f90d24b26f6946d4a6601d10562d4222f48024096ba29a2cb
MD5 72ceb6aa98cf3b9b4f48e8f755ee78bc
BLAKE2b-256 57567c5197d056e535fc8ecbdf9590501e5362b05d0ff919ee94e92d22786f6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cd8c8df989e8349e1dc594eafe46ca31a480a3a94988e66f59d1812f4bb17a2
MD5 4ac2bc92bd4262e5ff7d078e0fc65ee1
BLAKE2b-256 aa9ef46e3d1aa95b590f21549628a4288fe2e4713618368265e483d9b9366139

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 651a4469a868ab433c0c181f15095a70e4fa42a116a847567a64bdb71d69acc6
MD5 543ae45d733fa521ec66bb2e43d8827e
BLAKE2b-256 d2bdda530f69e1d4db134d3f6447bfee68ec661564ef66b2ef43780b09eb57ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a8861e640ab8472b8026162a64f2462a6d06e2e58671f8251f9fe7d16f36e8d7
MD5 ac8d46e9d51002056eee0af4a6c402f2
BLAKE2b-256 d08f96d8e2d21b54708d50a07c0ecc73b54bcc3b2e3f3abb655d65501aa434f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ef048790349957dfd77e54ab5ced77ac2fc025658bb702431634365afd4a862
MD5 c412fe32e5c90d13e4706a33def5bf09
BLAKE2b-256 b499f9771fcb8b713c3d5a250815d490915318836d0daba449edbb7956c3181e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 497e3ec0be6d230d8e190646b96e6c857f22f8e7c6cf52429ee0f42ee390371e
MD5 75fcf97e8ad5d71d78dfd834a40ca645
BLAKE2b-256 2f981c93097acc186c06989b23ccc03181a8acf1a6e284bde94cfb4989c7bbc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 39990e7ab6c9ec54f252d2aeac32f988df513a6d217befeb1e43f359b0df138f
MD5 de96e96e2d01c55594d2e616815e392f
BLAKE2b-256 c7b66e1f4ccf75263eb592ebb3a3f7d2055cf7a3ce115b19471b9db0a905f293

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 173a0517608dc77ffe36789ebd0c787b3ffedeff03139b12d06edffca4912ce7
MD5 2428a48cd49e32b9f9d8436ed01e808a
BLAKE2b-256 5c83cafcdc2b9af64b611542b407ea493e5808af2b03adaad5ad69bae02ee618

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fc8d0af3bdb22909206a3c9d2ecdf81acdf005516d868ad7d93eb81530bda03
MD5 7a2bb0f56988d9b6b955724883730e03
BLAKE2b-256 186a4c528e8a60852b006a3b78ccf7899d33dc4cea9742b7db46fde4cfdad0a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d929755b0b5c90c8041e00fa7da3a0f9e115f9ac7a55339417f9c067e1eae34e
MD5 cbbb43a4ccc472426c66655a4a6f4c4d
BLAKE2b-256 ca0b8440b0afcf984aa85def77dc389896979d320e2e2297c95f46c6bcce3db4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 86e4b8780e636c368f196ac887f9603f20031e1805a0ed34a5f0a6f6d06695a6
MD5 dd72e99af21b5b7522a8095b434e649c
BLAKE2b-256 fe7975b8109451ca898aa5eeb86cdd8be28a26bd39b43bcb1d6790556d1633c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 32d1c912514e593422cd1166cb22a0dd5da10bfb5ef504ef0750c4828b10e72a
MD5 1367ce2837001702a77b3feaf3e35bf2
BLAKE2b-256 c990a52de68b9dc3c16e95db2b58d74cdab20a1b8baa0aff6389e6b88e4eb2ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94659742cbfd90d28e3e8d3a28b3610a184da60654d6fd45e24d369dc6f2ee48
MD5 53cc93dd125992f1edd422338e60501d
BLAKE2b-256 6744946a5695080e73bfbf6b59cd441934b27a774acaf245011f3c428d442f0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56dcac82e0d5a1130d2cc403cb55f0f1072731c8dac2d25d280084096e06ded6
MD5 2e1e24866524fcaad65d68c6b65432b9
BLAKE2b-256 f88986b5743937bc0a555ee98d31afd97061d55a0aac59164d55ba7142008fc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3b7a65cbb68d7dfcd805ba867aaee431602df57cee4d3ec8e9542d2e3dd388c0
MD5 262df0d698ceab860f3a9876149b2c0f
BLAKE2b-256 30b18398817684ea444114118d83417d6b5ea42ed1466748ee62411bea654f5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a41b41309fc27d36e9ecb902acdab9793a0607bc2821a00938952748e76276a9
MD5 7c861e1b4dd2fd85b5b24ee8fcc85df5
BLAKE2b-256 ce552d7bf0b600d304d97a386075cca877459e3589ec3db758c33419daeb070a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13a0429f7e217bef22c5907aaec11d555be13463b2ec36c19465bd96627730db
MD5 fccd06c47210c485e519e87cc3c9c1c9
BLAKE2b-256 7733ce5a7e423e8d6960059fdbab5c26ffeb958c87398fa0e637bdd3d3e615c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0238ac926bf52d68e084e674ca6c0ce0bab16b23dfcf7ec608bbd9892ee7be7
MD5 6c11d6bb21a54ec270e429dfb552b3b2
BLAKE2b-256 e03a9d68ad1f3c99a5b7a830eed1b513f16cb805a71d612922633c022960e1e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.47-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f12f7611388e8064776b755101cbc902899073c75f6c4bdb279d99c2a570d6fa
MD5 be30c709f22487fd5d59a2fc185c1b63
BLAKE2b-256 eb1156711200b99d7c4c7da824d6e1f64ec0708878555112563b70aa4c2508a6

See more details on using hashes here.

Provenance

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