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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.48-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.48-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cc710097f558488cea1e4f56e5648a3d36042da5caaa7044805a92259febf7ae
MD5 3c5c0a65a39a77ac7e71d0d02f2ac3f7
BLAKE2b-256 3a4b53e2d3f0b3ecc2e505798862c2395d3f025c5ae5873bd98947dd82a9d0dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82a8e64ab6b0ee0a8d4511a39fbfbc58ef5331ef50fdd09ad781ed2e6a83bb8f
MD5 9f8de76766583560b37739e1b529975a
BLAKE2b-256 90b42a024776726ae36df2c9b79c769043706176f4dab3eecc34792ce29e096c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4fe628796d9dadb871b74ace9886cb2fe488abe564d75fbe0c1d302e38bac44
MD5 a9a6342f35c67408afad27c710af500f
BLAKE2b-256 fb742890f13a3d77fb9c63c4b737ebf9770ec9054fe2018437e104070fe2593d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f76221ad91ee655a189c1c8b9901a606cd982408e96546133c102bc2185cda79
MD5 b4794cb809b90b7b3658062d5e2d6c8f
BLAKE2b-256 2f7500313cb10b36e70ab80a290fc539e9377e6787fc3d7c218853cc6a828221

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 97006ad2cb1b8129790faf4465cdb3e3b89ba0875613762613706299e091d070
MD5 a8eaec0bd751dfdd1d564d987f9da761
BLAKE2b-256 a7af923f4527a260b38732afe122fabebdc885b27419c69a03b4ef3e7bad08c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe64cf743d2c842a11532de6756b45cf50a678e32dec23a92673b03651bbb82b
MD5 38c9637b99a2504ea3d3b2e4839e7e9e
BLAKE2b-256 f7951d8ca7d715c59bf64718ae0f115065521666af81ae0a7c90d3f6a117b276

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0dd06a8e0bd414a140aad7f31c0a5c21c8cabb6f489c3beb15ad616157342cec
MD5 22b47218fc90de940e1fbad4139b4217
BLAKE2b-256 437d9989bc963d3465bce687fafe86075cc296f86cf3ab13da38e194c1b2d5ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ea28cbdf3ae2e49fd2cae430c085e5434ee557c20e86fe3e5b9a6e69f9a8808
MD5 3aae9d1240b8781b12b9272dbe2cd954
BLAKE2b-256 195cea64023f15d888f11d2adfb62e517704ca2cf0f793e90cdd8b28f74a3410

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e5c4b342644de5ce4f05c837ef8dee5c29f082fd73018f4ddc7ee635f9d329dd
MD5 64e042aa02ee1f5ea6f6763fcd8e9b1e
BLAKE2b-256 95296f904fbb19fbfeaa31f24c3ca45314ed0b37bf7f9faa41eab0f085140f4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 331a88fb42fef6902ca9aea16420e27b13c95325e0cfec74ef3e65398ec139f9
MD5 d30c9367c536983692fcdc0bfb5588e9
BLAKE2b-256 ffbc40064c8c67eaca6584a810aeb6d033804a271c5c85c096dacc75b903f711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8951565b91c18104840595b1b9bcd9d6e4ddc31e073c643b4803b5e1d2172179
MD5 c17dc4e1f487813a4c1d953e73686aed
BLAKE2b-256 67544619eb098c87d5a47d1ed6d2404b18be1d639d575c17c091693dd213c8be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a1c5e6783b1923ae7276c04231059479f38875d06881fe9701f9d479cd9eec3f
MD5 f6d4b1b12565144d3be7d10059c785d7
BLAKE2b-256 e3b3656b652198f246bac931a5253360ec26a6cbdfe97d5630fe05cd06ca7346

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a8eb257b9301832919fea7c3f14ffada4684c66ca50da98b958586a3b9a4b740
MD5 d5b237d7096a1055d90ae965d9c1269d
BLAKE2b-256 9f5e46bea9ca83fe5740b42e923d0b3f5900e7b59358683946b6cfc7eb0545c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c4f2e9c721ec42863d3c2c059e4384cae9af132a7a1163cb17a14cd6e9ee5b0
MD5 dcf400a4d72bf4f656327ee7a30cb428
BLAKE2b-256 1efae4073cd7e812b6bbee29d4bb9e1989f1b3e8a3dff9e0925765630a673f2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d02d585673144b348ea2918d08e1ebd9b3fb7e4edc351e41b98f6b589ed37f9
MD5 29ab615cc12696c7aa6f8fa118a001c9
BLAKE2b-256 b950840fd3edb2e891222a5a0a6ac887d06af4471f58a3b3924f08a1b0aaf524

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 65578bad8c9c9c375d37090ac17017982da3823338c7114b91a324d111a5129c
MD5 425d2019486c5b830a2412eefde81ef2
BLAKE2b-256 6038df2aa301a9062105f9f66c04516f52ffa753d883f9cf8c5d57565d6146ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6271f5f6a0fdfc049c34f1f15590c2efa9bad3129b203be149c045d2fd9a3f6a
MD5 27f7ff0b363236e687b34bd4932686b6
BLAKE2b-256 eb62b93468b84052d1fddc368d5a1ec302b8e5bc379fd35cee4272e56c1fc147

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2bbe8e14f4cd7c40887e72e39487678f3055ad7e5f610370d7e8561d141ec52
MD5 b81c8df9f9a2156f52aaac1dad3cee66
BLAKE2b-256 9c553733fecd391e3e5c478f9d15acf5f1a1a53c16c497ec3f2ed1784892a4b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d72874b2f537fb3ab4043b6e627fb24495f4c8e7144700334656050d0af577c7
MD5 65a858e57708e4a7b66e42b8845a188d
BLAKE2b-256 b4f41b14188a0d87e1237f8efc7189d2e96a941f4f7d3f4db2ee825b772abd17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.48-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 daede3ad02a8d1db7d61a3c90a6510401f2907e813a6aff58219295564392f1a
MD5 9fbf0ac0acf4c9f6e3b70a25eb5b1326
BLAKE2b-256 9df13a5915c891a977a46b61c7fd2c68795a09fd371fe6e4b17290d1fc4f9c6a

See more details on using hashes here.

Provenance

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