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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.38-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.38-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 05994eff0e9752a5ccd120947ddde9af963f1004b6b9dada3db796ebd46927cf
MD5 97e90bef38e238db80d1fb9f73205a30
BLAKE2b-256 01288c6a4a515f5f9ef482d630ecb2da713dc878dbd975c494a016e9c2d1ea8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c8eec1211b4557d2474e16ad59c2adb3ba902428f1515ccad384827b0bea659
MD5 d6f25f174837a4a242c0b463b18ec27b
BLAKE2b-256 4c5a04e14012737708aec783e94c994db6c05fcf115a51baf1870a7a769c9ff1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85548d7d96db7b894d2afd3c61e936c9a4bd8adc3c369b68529ec58580d2ce5c
MD5 6c15495f2e01401ea56e11b19b92f4e5
BLAKE2b-256 cb239a33820f729b28ed50111a3b9d476b3b87a7148342ac1170ca665a3a09c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f82a55e6acd4dc2c4670e33be5825df5d6a0f4ee997c167cf4fb4032c368713
MD5 f360f0a6cac74efbdb5e9dba0d909092
BLAKE2b-256 7eae8c9467c6c1348e751b63aa035fc6932675b51440203f7f19d4c40a0d0121

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b0bcd3960ba25d7776d73b2a9a27e4fc9e05522dfd3e6131f6aca1170486839d
MD5 a5d920cbeceafc0929aff116f68c7b09
BLAKE2b-256 2352a58bbdb0f7645ab24016f3677e21423ec5edd31fafa08bd79a6558ff2385

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52200e9f031b11210d13cc799770235ecefb5b64f8ef3706167ab649e21cb8f4
MD5 0ec8692d2d31ab16e68d7c1d57a1ff43
BLAKE2b-256 9abfe7547e390fd6ce6f385fd0a5559a22a72bab53e27e1db138691c20cf8a11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4d14d43b07ea99409065e511916afc42f6998b9f798777c22ee9cd6abd456cf
MD5 8b2a5d772d2839dc9362bae46a4295b5
BLAKE2b-256 18152e42817aa346e327495965ab98fc6340cc466160e90fab693f7dc452c27b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9874e7a4b5d96ac25b9a0d49bc5a5b8f156a2b3637dc6dce893d19021560257
MD5 e7e01f790cc39b8ccad22bc7fc02e27b
BLAKE2b-256 57815f9d21c49102518ed153062796b73c294de48f6fd42639fe7a96e504ca62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1a20a339d0e7c73068c4ae78672b568d5e2af32e0200e7aa8d9c26e09005fcee
MD5 26bcbae42c9ba773a6c67f3bb68c2a19
BLAKE2b-256 9392358d0e687c77dc898037468ba9e2f66c46d94c83c6b210ef4b789989af67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37b79d5eb9b6808cf7755c9efb1420e8958a0ef3ec58d0a2ef11e461f8745a70
MD5 5a335174849336c7b9a8e38cefe925e1
BLAKE2b-256 b082be184abe57cde557f750075b2a46541cea360469b81ed1c8d3e232a1c578

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae1b1bc1e8be637e8bcc2d11ce0506bd84fe646c63bbe9c5f4065b40e33ce4d7
MD5 e06d598cc9762944cec31817ca28ab15
BLAKE2b-256 e3e930f20285d8f64f3fbd2d4e8de0acd1ab273c15a56298b6f2ca43be75ae63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d8bb49f325c50e276aefa7913df208ed0405313cb9ee94eb63a6628845a540c2
MD5 a33cbf66b8bea3235c3cc9a504425065
BLAKE2b-256 fef82d01997b6392fd206753429656e1824a81958b7f04eaa223031293a286d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0bc89bcddea6566d7dbc5eb1838f438f5199ad11b7c023e6ba3d1653b5c9583a
MD5 6e83cdf7a39c7e792bb4f7b7535641d9
BLAKE2b-256 291f70775480e054f68d8c241afbb26c9beebd76eacabd218d9cd35f34dd3ddf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21bee6253c93301a044d6232579c7f5e2cabfe0baa03d70f3f8bd72c99d38545
MD5 a9dca91f0bed012da5aca8fd038adb4d
BLAKE2b-256 0519f6986bcfd225bef6f42ae3c7d41dcee69936309f23914d755f7cc718d182

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ceb8d0610a1529aa7d1fe65786216ede2cb11ec30d865f9a91786c630ef3a02b
MD5 72c3ba40cc89f342ff44bdeeef686bce
BLAKE2b-256 fcd6d69e0f351f6432582f3aca8b119f2a2d71e63545fbcd009f47c095d20538

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de63a1ef1e9f2a830f4bd74bc90dbc768c784f051153466612a89bc164a6d8c1
MD5 4bb72764d0d7e7729eaef0c6368531f6
BLAKE2b-256 e776e95b1882f690614e4edb1ec1fd56179446c1906d4071ba9d3bffcb3ba8bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ecf368be029683ff731768ae1870aca759f6e5673bd73ca1bf8949c0b5fb0152
MD5 7c0bfced18891be07b92ea594f896c63
BLAKE2b-256 6a39f817cafa8dea96a95d6e5246956f28e076144947910c663d40108d6de25a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7bbe1aeeda6f686fcc7eac447b4db0bc13e01f3b88ce3e7f87b36e7cb424bd56
MD5 96742141f7d3f9b0411bc40c852a79b8
BLAKE2b-256 237745fda516e49de834a18ddcf15e4a4179ad6973a614964be84a99fea63be3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 618b430ef75899e584053b5925a7d6c249ec3771a2f0390681cc1cb6ac0810dc
MD5 b305c56f06fe4df6f4e493a99c76b3a9
BLAKE2b-256 ee283d5537166a0f6118b6df3fe4fc1a0a839016144e977b13f5e09e638fc57a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.38-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a92a2cc7e5858895ed5be8aa575721512a4377c1984391399594dbf8d8106bff
MD5 30dc7371aba8ddd9f32bd51e0cbfe7e1
BLAKE2b-256 7fd8a39eb55389faf83a364e0b2b7840929097d7d7c823b77f9f166e37d2a079

See more details on using hashes here.

Provenance

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