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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.43-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.43-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 39d5974c8cee38e1b29e3a1d04e03ab6c675d3da379180a46f6edf25d22097ba
MD5 e45dcd66c51c5de847350c380849a0b8
BLAKE2b-256 17bd2760c9ad170e7b55378789c129e9a271b46a99e861b919acbdc39beaf8dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bd3db64d8774b8806205b5d522d2c99ba01afda7689509423b789e26f334d72
MD5 f2f76c89f38b38afa30776fe08c119a8
BLAKE2b-256 657e5eb14c7805270a00dd751a3c6bc97ac82f67b32608df697f77a78a459202

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62597d0e0a676ad958421b49e0505fb8effa5c2fa36f7df4a641ca5a269b6131
MD5 66a52c37f16188fadc6e31fc63f63a73
BLAKE2b-256 b9e9716c52c233a4abc91f7e408da599d0f4430b5d893c181c99bf7d071593d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d32837b12a48cbcd6a56ef0fd43d9cd95ef0d57e716661e2f2e20d5129d6812
MD5 dbc032d338b22f905079b7b45f4e3717
BLAKE2b-256 fa0a1a5264bf5e9a29b7931e20520c53787eaacd1164ddf35ee489dd1c8a633d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2e051e229890d9779169d4324a233387d73efd6f64f10ba490621f01dbdb71af
MD5 e9931fc0bbe46749d40e070f55e2373c
BLAKE2b-256 ae23ef581b46febd1e680da4846786076a07722110f106f0af77b5a0f6ad82d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f61b6fe115ae6ea1fb68d500b051c1095ecd417e8870d2f80075b7af74265c2
MD5 0951be30d172fd4879863a8c666df769
BLAKE2b-256 50f90cd7143b393d46b468619a0f08629bce5f050d1e64d4ecd6a13567e57692

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e969dabb7124c631896d4262bc30b0ee2ca6698ed994371d2beef5e18edd0f04
MD5 3f3c74c1d8a5e9b31ec2010e8f7f2080
BLAKE2b-256 4c83d17984af78f48fb23a10eb9b57d33525fb93b9e912bc8a0d01a02e3b2c0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9249e697c12d4b6195cbb805fb28b01bca8c5e292f4bca146e8eecf6ac5aeccd
MD5 f05d5792000f58d6c0313fcf044e73b4
BLAKE2b-256 4549482893b8a73fe0ae3a5e528db263b33f76f06684df54b627fd0d0a38bc33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 56fe3ec5cca8df8b5975d5cd905688887ecf575053d356744b54dc541fcca7a1
MD5 e857776b75e14183c57c36e7ddb9e60e
BLAKE2b-256 f7377695dc86fcf9a57d38484d49ae1ecdc57d756d1ae2ea7e85d95eb739f2d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb34cb1fce7207ac5ac956f79d9cceb8783ab1eb1ac238ed1d931791d75166bf
MD5 4e615c71c02e99020dd5593e92bbfb41
BLAKE2b-256 bad078a79c43a35c9c16b0fe1133b006f99cb9ae6eff3a29f74d33b6ead0e0cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aed15dec9aa0592c95caf2efd2185d4a91efbcfaa5bdfb13af9abec8239bb049
MD5 8e5701adb297301a38c986a830ae5a67
BLAKE2b-256 a1f16779585be9e6c2b68e6a5c867bd6d8035c8a88883d9d9a6f4558720870f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe1b89624daa27f0fa77c8491ea94f58a442a6f46f6bc20958ce7559d0f9d548
MD5 cca58ebc74f5af5e222e592c53d06230
BLAKE2b-256 da2f9ab8ae567e8147db271921bbb3a60c12f83619c7b8255f277786d8b4715f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 980e1ab8a2498c6d2cb3a31881a7fb7b9e0c8bf9ffad95fef2fa17d4776879bd
MD5 4e4ff3fec28acf78bd9882232429d0a4
BLAKE2b-256 149351c5e43414cefafa2b80ea83e488bf7f24b53cd9baac3aed3ee3924b441b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adcd22e919b8b2ca9c5f03ef2ef857b2e303d39ba3db9f4c73252bba29993945
MD5 77c0f554a0627b95b61f3b3176523357
BLAKE2b-256 fcfcb5724743b848bc7d4b12490d087138223254ce0d12e56e8721ac9202d467

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dc85a86e1d98b4f11d5adf16f2337f3ce22bf66dab31042c9a6842baa8d4953
MD5 7fedfaf257fc31eca1ef6db1799e413c
BLAKE2b-256 ade6a87e61c42216937c736850676313ee45314b891c33a7eb52ac26c236eeea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 99da7714f0d9aca53d69b13d792d3b6707e951392ddbe766def2e2c5da5fbc6e
MD5 0a78aecea89c8196dd5e7aad08fccbb1
BLAKE2b-256 3c99a40563f2d2aa308b7ce1537198389a13d2ce8a8977ec04bd0eec97407ab2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a7eab8850c3726cc31ec3a7bad3568cbd7e5d865a472b626be465e7d08f15d95
MD5 7b4a209abf256279c0980b69aec47098
BLAKE2b-256 52f428caa557f27ee2b33644d0718a5cb2393cfd76e3c3d6d8111aa066ca6536

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5199db4305e8bf510060f5829cc831937a26b639adc4f9ac6aeea5742eb61b11
MD5 5e6127aaa06a2a97773dc7cf47bb14c5
BLAKE2b-256 b945b83111ee7c61de61345f2ed1890c7a711fe14f14a4744b8db3685bc2f9e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfccce5606346ff39552ccad11bc1a79ad803aa0ae274baeb5921aab8af149a7
MD5 19339c301ef51757f087336951daf4ff
BLAKE2b-256 00bbb5f59eb1a0d190323672fbbbedef32fa9dcd04f353eaf168fb3680fadcbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.43-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7fc021a27d7583159700f64db7887ff534968f7f85b71d830e3d5565684c176f
MD5 343288a9605a6818c62ce055032de051
BLAKE2b-256 b21d9f60c8507c19d6ee17fc4facb20c3272175326dd06574b459630151014e5

See more details on using hashes here.

Provenance

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