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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.20-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.20-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8ffe09d5c308d9c26b88e59f0549a33f095aac22d1993bcf50a480c49e8d7f91
MD5 f5e9727693cdb78cc9ac99521efcae62
BLAKE2b-256 307c33748e6b92e93815012a61c100b28fadef939b9592d0cf97e00cee6bab87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1d79b469e722310dc2d1167793be6b88b2589e3362ce7603593848272f4c06c
MD5 5cd5d003bf4263a407823efce961bc64
BLAKE2b-256 9f49dc8e23d67d41f7e00e82c645f46a75d90e3713b820b1eb2a9b9262c6b7fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f70e9da1641bb2e25ebded20abcfb67707041d25b5729cfeeec6938adfd32d64
MD5 85fb9e39747c8bd2818d764a5c49b4fd
BLAKE2b-256 38f8a16d0f64e86d7fe2480da70c88f5a85da495936321f4a4ebfe003b8ee61b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9cdd391fe43a7c0a5623416799a40a9ab291d227ee0d831ffb3ac73f4b052bf8
MD5 33ed129aaff20ff3f53d7ac3ae43c7ef
BLAKE2b-256 6a2fca3ba8b10d6c255a8a14ad39d7fa66b8b0244de39155309c3d87215933fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 09dc83d562afd4d6507d1a4edd92c2f4427c60dc80b7e31dca0068c3117760ac
MD5 3465b740601702e5dfcbaed405405d24
BLAKE2b-256 0d2e089cad04949d15f7b92f8c6d9eb8861102da4f26c86055af3f44929a86b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1071888d3df5fb344d0d96ac996fe8f106857b59e7f6a943471ab29a74d01b67
MD5 5b143fedbc255be5d9d5b8fb5b1a7c59
BLAKE2b-256 2099198c965a56ffebc52a6d3836ae80a5064ab01be711cf52abd66e0792bd39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 495cdff3243ba5dfb96d65b52d10a0c6c289cafba828b341c62ab593d82dfebe
MD5 9c0312beb31749b6398d5c62e590333f
BLAKE2b-256 177a32fe4501dbeffff6eeeca30132a8c5673ca3ed42812ecdf1fd633f36b91a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ed04a602d45614efd7911d9e4dc3d7b30df3f54cdc5c5e139fead69363632351
MD5 5094f648381e2c232f778e77c1273099
BLAKE2b-256 cc4c71521296f404db2f760b58a4c53f3e66896cf2ae671545a6bd0bab38e3ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 18a2dc0008769503fc3c2681b8896f1d44cbe1e4f03ac6bb857f56659d687a9e
MD5 e1005484d21b01a5d3451e621aee0b52
BLAKE2b-256 4f8bcddd1753f5e46bfa0e3c0393e39566bde0dc6fa49baada245c3552328580

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 677f642be3abf6d0b8eac330ba26bdb5dc5089b7a29f90e4755f5cfeebb3552e
MD5 0b969cc5518a2a0a9ef195a9ffac225e
BLAKE2b-256 872968f75e7f3a4c5fa0c2f63202f961f8c8df34c73fd77cf9de0d6b3d56af47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60b7deaf53ca9681647f03f223fb9e67ee67186e37bbe0ee391500c0977410d6
MD5 6007658c1a4abff07a6e150a765c0eb3
BLAKE2b-256 e38e1c9d17e77bba0945c5d143ab5608f6b891e1d808c47516b5014c875ded16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff05ee76e471f3a7c0b97ec67d61261efaa6ffd7e9f6e0978aa6300379b77b62
MD5 74937079887a164de7e5c5bbf1bbd943
BLAKE2b-256 77b3d553f56b09f48681c11550068f78b223527a923bdabeac3f05caf84c72cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f26d6f49b854dafe81fc2171beeb0486edb7861b4c4f88e965426e61c3fdc7eb
MD5 0fac0da5ef836ad0557144c3828da6bd
BLAKE2b-256 a47b5c0123870064b7dd25940330edb277df0466aaf38ec20da31ae96b42ace6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5265f778ac44a2fbf61e2f65aa4aca59638c1c2c8675e9cb2649be21e51a95e7
MD5 7f865d9d6c12af2eb69c83601aa85e0f
BLAKE2b-256 48fb18a460f3e3ddab67efc6463bb6c27ce871e7fac114792c544c48415944f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c77ab36f9e55cab62268891363b5024943ab6a3c3c7cae62f9d350c4fc89958
MD5 e6b36225a42b213767053a10f760a1de
BLAKE2b-256 49e66eb99c73a24ad816781136b4b28b8a1fe2c30b92db0ccc6182af05591ee7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cbbfc22ad80b1a082b3ceb187d086dbf010b398ec9baa0b6dc448368bcab108d
MD5 32b78421d21ec58f119ee0989ce099f4
BLAKE2b-256 3e14fe52618f3094cbd457738da1d0515e8d4ae691d54868477b73e34f107ae4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d8792621485cfe4a1dba25625e448bad7f55bb352f2588edab149045f45bd6d3
MD5 4ea22747959ffd6540dead91f9ea78c2
BLAKE2b-256 a743280d6e7ab5e40b5f44d8ef475a505d04c11994454cb7bd8ec61323ea257e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ce9d01578055492f6ea12375cf10429ce1a553782e14c6b572d5b4e8e7cb8ae
MD5 2c45617574a0820447dedb20598c8426
BLAKE2b-256 35f6de5594675924e6b408c6071aafbeca63075b8bb735fbe16861d06db0275e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1f22dd4b5723dd7faa7546faeaa433a2a0aee24ccbf511b3e296fa8edb00a71
MD5 a1534124d40e278cc61e63f0df8166bc
BLAKE2b-256 9cbefc75839dbf28ce7845a6ca8eb4b9aff5472d648dc1715bc6e83f44733da6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.20-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e6b688d456171ded693ba384a9736f6c34a304a2b79ef2b599b674ff36cdc95
MD5 8b8d386774ba36432e338787472ca2fa
BLAKE2b-256 63ff934b651b3a066cfc4ab05f5b806afa5671b3d42d2fccd97838f62f919f3c

See more details on using hashes here.

Provenance

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