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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.31-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.31-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d8e5bd2ab86bd495edc1ef7245e485ddf2059f4aabf1016447bb92433cd6310c
MD5 5f1d8d626b34edd9b97a3e100ad25f41
BLAKE2b-256 27a9287ce66ac5dede70f823112253aa8931c82a69d0c13cadf06d81d9531c87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70ff4acfe81b2cb0e3ea36e877c44436639813bbe542ebc1ce5cdfc08271290d
MD5 ce2441163c67b7406f9b69babb0059da
BLAKE2b-256 b7886dde0d89db0398d5f631fa75a6b2876cc231b5682f83f67f6f22bd02bd19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8bbab0c72d5df8e6f44e3931cbc274ec7f32e8ef8bcd8486037e2b88558cf92
MD5 de2fa55884e92f7f2c9762288050cd34
BLAKE2b-256 68087036a48db878167a51204e2c0898792a5f9b7f283f4e59e47f84976d9bf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f1fb12cb0bc0dc2ec7195da2edcd6ff0c81a0a30b11e408c32e0dad12079976
MD5 61c51dad2a20cde165eb607d3088d4f0
BLAKE2b-256 1eedcb14448ba8329d4bb31b5d8c45ee94af41cba2c6fba31f616d1b5ea82ca6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2300f1b5c494589fe26d4e1e46223139100428755766ecd11e43bd88b5efe0d7
MD5 a1cdb5ac7feba8eec31ed252ee1d72e2
BLAKE2b-256 a29af3e36df54f264fee4c25500b0e6e78c55d987887fdc6119a43f9e8e71c2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a0a7a76074668ece82fc05d61493f90f732850ee855d1cfaccac5ecd9d8f527
MD5 35b00e6fdc232974013fe15ecf7faf77
BLAKE2b-256 f7c6eae5a0db84e2f40303a1117f9218635ebcc3d807fb42e0d592452cc5b85e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a79645e04711df61f316f38a0405864a59741f4ddae546cbcf51cfa35602dbfd
MD5 8e50038cee17efddd49b3109c4b98a14
BLAKE2b-256 1b5e3c0b3fbf38ccfd20fcea69ce55b192f59fb6bebafa1df2cffbfe9c18bee0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a886986ef224882d7cd35725abc84513aa74280b223902d78209d4f9a8444dac
MD5 b45f22d8f826c21ad9298d8347612505
BLAKE2b-256 f0be5744a31048bb15e3c43349212c724c86137ff1a694073485437586f9ef3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 35edb79c96d1808567bf53ea5e1b9d1ecccc42f5ba44ab312ca6317b9e922d37
MD5 5a22767f1cc982d6d85d2808567aca49
BLAKE2b-256 9c02b11d85a863e38888f5902a592051a2510db6c3ed6e3e303bd1e29e1da036

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74c6995a047de29bf1c4b5dc6b097ff375e2ad3c5562da5488ed40768c2f9db8
MD5 152667390719a72623f8b73f8dba0adf
BLAKE2b-256 a4ecb970831d6278d4dbb3c75ec0f5d5210b493891b82d225ee772bb8245d444

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c711ba231e4deb157cbbac26d46f6aaf62afbc9a79660d03b33a782d1b49fffd
MD5 744b37a52216cafc53aad583a1fe2443
BLAKE2b-256 89b10947ec905cb25e0b9922fd1125a66aa11193e8b44dfddd85e1391d6c3465

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a0109b8eab321aa22ee05e884112a28aeb6648136be75ffd5184df1a2543b04b
MD5 b094720303d255d0efee033a51f810e2
BLAKE2b-256 38acdda02b6c265806d97f7d88b078b52096312a7b47818d6e3631867a04a493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6276d169dace9c026d26d69f75c1f383ed911581af6797ce556a3efd6bc63e4c
MD5 a2e7cdf2b17c5fb6f2a0b6a660cc9de5
BLAKE2b-256 5e2350e49cdf91e4a33ffd2f6d1f2ecd0c2c239ba1be6f7a3128142f69781ea3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7606dc220f4061216769d887303a7f33c1b3f92ff05338462d53788daed0accf
MD5 95491897b254f4d2813a236f47f058b3
BLAKE2b-256 b5ad97bb8010bc2817ef034d6e57fd2d8258ebb4946bcfb155841b94787dadd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0fadb5770019d5e6fa1a9aa68668e498fd971cc21df18e5544a289c1fc16ff34
MD5 ad3723181d8366fa7647c9b32f29e59e
BLAKE2b-256 e7ebc46f009ede688a5421f51ebc6f6cc9f5fbfac7679eb59e416c87c74768a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a4acbb0857053a0099d3231717ce3f02b496a0c88a75eaed94b7084abaeb72e
MD5 3e80b8ae19be859239952c7e2b785d1a
BLAKE2b-256 52753425318e3332a2ec9bcd046c1b8a1129fff1bab7ae25870ba52bcb902b53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d8e67346d140e63df2bf7fccf05e5160a5835a514e4d5818d16436998c2d30ea
MD5 74e1fec8f7cd38ef7761b92d38a481cf
BLAKE2b-256 3529140c4f736f7d16d0f677848fd61f8428cc3ca951f7bbfbbee069e0c0c436

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c666aff65bf494324dd7bcef1b2985f4c33d6701a91208ac5de6c9580783c688
MD5 1af74f1893c5b2661e60be752377eefb
BLAKE2b-256 e11018562d2a76946d59fdb11a7c033fef54d42e520947d5ffd5f48dd1a4d63d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58237a911768bbe029278a14bdde678cc5c4c37aabf58016c462cc8bfdcdb0bc
MD5 7720140592ab1a83ce555e11c01fd324
BLAKE2b-256 952dc8c3cb6f30053a3148d9d761d408ceac388f4c4dbcdd19b26c26740ea07a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.31-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1b3d87359fe0531139a5225271553d04caa53edd32b838a66a6aac3cae4ced2f
MD5 3547aca998cabd0ae164511b6e6f6f23
BLAKE2b-256 635ab6c2db654ae8fc1722740bd2a83cd529f4fab7addd0c06e1b44edff0fe86

See more details on using hashes here.

Provenance

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