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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.46-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.46-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0798d3dc713faf6e617934ad2142f2f75b428c2882dbc6ff68bca61e611b9c80
MD5 247b54e892200d4d5940c965eec5c32b
BLAKE2b-256 56bcb977435c41d63377bb82e1a2e0d04f7d36435a95e7e1f9ea3f3dcb5112a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4c4bc38e645ee0f77c306c3c1c37d508e3cad975b420ee3c78fc1b794adcfa1
MD5 94a3cfba792b2f2f5658162203c177c9
BLAKE2b-256 34dc3f3003e5c68b18135f71cfab6519f3cc8a3669f7b31802b0cfb6e1177059

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed51fd02e995045ecdede1a4d358a07ea0cef3509d0299d930add7876b8a42f1
MD5 8792b39a31ea8923f57c6571692de6ca
BLAKE2b-256 2f16b7d6071e40b674fe7494b0ce5bbf6685b8c6fb1cf28babbceae4b5465704

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7546c39adc89824935a54965e751f7df876c332584c54a197358e36219382eeb
MD5 326966615306fb561a2009df94d20c4b
BLAKE2b-256 212d1c7e086e247a1e8710efbecb932703eeef5f6628c4004b3e162c2c6295ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a62d2cda107bd1f659df09ffb2800e9a774adb540d176141abc8e0a34712e010
MD5 f6ae2880c411473c4e2456161276584f
BLAKE2b-256 4c9cbbb170a90d852511179cbcb9791ab7f940398cfc9d46a3689411eb0ad75d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a46a588c4be906beab78218a8518b84639ac1d1bdb013fe64340ebb519aa777
MD5 d7af0562435c92123f0a32c641a655f5
BLAKE2b-256 44a0b3014937bdc8e767f2d0893cb69b3d8d7b5c1ebd941d1ad04d13b67a279f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3db3e787fac184df85a96ba83d4278a75244266b7aabf0fbfd9e0df090298ef
MD5 f18ab7525155373d5e8f0037f4275a86
BLAKE2b-256 6945e6fbf5c8c12f2e3a1fb03e480a07770f0c6d7dda0c02585f426dca06cc9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f0523662364dde32395827728f40bea6284d4bfcfb96555be47611d406edae66
MD5 5fbb8c8364874bfca15a8c267ff3ec2c
BLAKE2b-256 39a28c1de9c32251041b247ad025d396b7eeed074080d7a48b47e55600d6bf83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c0bff679ccccbe81027a80b95f118726d248b993bb9d4e5811c35474ebd5f977
MD5 1791696d9b37d31f89ca3d5dc80359d7
BLAKE2b-256 532802dbcbcaa7468e4a1009e2949aa0b4ca453705985461f667b9895cae0039

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85950a3b0f77133d2bca8a590b28bc18f864632a0794cad5c9f06a4725527742
MD5 4bcb9c83f2dac77fc8e114052899baf2
BLAKE2b-256 4036f3dccf87fe0575b178217c8fe2b9fdb5eb028bb28235b41fc198c03fe6b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b79ed92d4eebbfdb428180a6b5b8200cfb44234765aa218cd1a1a105dd83505
MD5 1251dd361d7b90918c08de5996e905d5
BLAKE2b-256 feadaa2a8e48d0a4f6c73ac79a042f5dce53ae267953d5334ccf5f3f831698d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1cdec12f57e959273ed575d13dd77e86169fb3f51619ae158e99ef90948f54c7
MD5 b06665e6f8cdc05d46bbc36eda12fb1b
BLAKE2b-256 5a96b53eb962c73b5178e6e2d53e64b6dbea3e06e7aeddeefe836b245d78c8a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 98350779879b85127da75b457aba6623a5e17057248398f17a7fc2c7131e0b25
MD5 74c51d03621d5b105de87dc82c582374
BLAKE2b-256 3138fa9e6716bf9332e4b2847c5b2b66b64d7b95b7bc9dbfbf21d2b2becc06ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9724349899f232e06f34ce2a7f6a7e83b9b5d7db31f605e2384b7f855bf1d6a
MD5 3b7784fd31e0e79872522bd09646fb2f
BLAKE2b-256 ab6414207ca94485af6ef8b69af32e1a50ad70cc4bb3c8222afaf731ccbb4965

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 113a51b1e35bdfef43329d670224230194db794d03c1dae2c81f992bfd509f82
MD5 1b9fd6d91e7c51660160ea9858305308
BLAKE2b-256 c5fac24272f8cfaf79cb5317c293f9a14f063cc723b84fdf318fb0250606c317

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3c443cea5cf8abe4f999638ebdfe3dc942ee2af136bbc1af806ca515ab71bda8
MD5 2f636848a607f92821803460cb2f96eb
BLAKE2b-256 b87eb40149d14a186d06c78f5429a15b6a9f9d86a78a5a5271177148bf3685f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 49fc990ed69eef1920dc5dd2065e1f4ad78b6fbf33a5218c17dbe00340748e4b
MD5 71c0cc844d51e6d54d3ed90cf02f578c
BLAKE2b-256 4cf78b1e98b49a2fbbf710b71077f06b2bf72815e053785b95a4382856625793

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 082276d9b41300d8181d23a24a35b52b6e5f827f13af14cfccd0af7442dcf010
MD5 5ac2ff609df6f5e64b4bfdf7dbdfc65f
BLAKE2b-256 485b19b47ff0ca1af2e238a336e3d1d205cbeb7a7fc9ba06b1a8b38330fb4cbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 347b94e74380a96ac563b4abc0eabfe1684c52d22e70bf962955fec1b3cb6b1f
MD5 99eecbbb58b788fc72da2404f546e0bb
BLAKE2b-256 0da227cc9267531b43a84a6f3010e728fb3cd49ae85a7c8752bd98aa63dcbc9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.46-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4da2b883570fc5d573382b08ba86c35963e39fffb0da729282bf8ebc5b9a48fb
MD5 cc6b3ae68df8d9def453a82f7d49eaef
BLAKE2b-256 53e49bbc36fab5965e447afe0b1d9dc3d9c94204aa90dd92859f1690cf7d8cda

See more details on using hashes here.

Provenance

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