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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.33-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.33-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d4bd89d07c1b2214f47eece5600954a5d0f5bc9aef5a1a859555ab291101dfa3
MD5 ae9ca0b053cfb368f9e31fc7d6a9b7e2
BLAKE2b-256 772edc3a09d65b6033d320d200d331db59d7cc3e16d8af212d65a2a91bb9e4e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fd17be9598cd9746a1460f48877b1a0728b968422c83c67eb771a168f334cca
MD5 874fee02112aeb032030cad2ebc5e62e
BLAKE2b-256 a8df53d6f3e9d8519979f6c772fcf99465aa1b5e60f50d688ce9e1d0f7cc49ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d46ae9ba9fcfaef0a6d957253d5ab73078e8770ebebd00921b12dc400ec883d7
MD5 5eebcf0f3d3b1c63bdfd4e9229559903
BLAKE2b-256 b0d22cde1bea5aeb4b79b28a66a3f40e1282b8a7c27fea059cdfca4d1fd9f35e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 038025cb81f70840f8bd867ee483f1dd72b76ff0210f7d155f35be521a217d6b
MD5 93b7af0b55cb749fb999a4617827849f
BLAKE2b-256 e40e7d8b4a48b060b27ac96e09d0fda93da3100a8ec52f321207d6429ea2e5e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b7dae70efceaff130d1983d3d38d2c9ff3a72027d346078b4266ec1b1ec1edbf
MD5 e1167f9ac32bd8b2c9b2636246b7a40c
BLAKE2b-256 221a18b59583203a035759f6473c1008b391298f6bffae0edf67157c28844ac4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc7a4f8606df5f63f2aca9df2869a3c2ffb2d5c624cefa9bccf09ffebbd0443d
MD5 2a396140a21190080696cf76ea7d3133
BLAKE2b-256 034a4cfec0851e52512a430b2645478537aaa5339cc61a90aefad5a205600d25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f59dc6626aaee3025554d19327f44ac2be23e40e1923e3b8407f247903617517
MD5 487607ad25585b4bfbcfc2d2a6338e4a
BLAKE2b-256 9ddd9312ad4d44b5f0260519bc81fcf47eca9b21b749809b302cf47ccf8e0725

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 71a377b66f68ff84af405bb65d6282c082fb09bbb3c3f7c68e5e4d25f7963673
MD5 c31f0800e17dd98e92afe6c7de6c1f0a
BLAKE2b-256 7a4d57ec618523cd85c6294d4bb8a122111a4f54f25d7f3bba09639bb4308fa9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 823fb6dcbfa009174894db77d3d15c67530e9eb6a54de7b380173293acd21b6a
MD5 27125645b697b92f437bb4bc5c07274c
BLAKE2b-256 73d2205b1a64533ce8f9105a4e9a9f86bf262e4231372fc89d6fec92d066454b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca7b5f475d032e9927aee81eacfe0859b76921a406e0214a32e8f21e63e160ff
MD5 53717a4b0fc605cc4db2c5607d503872
BLAKE2b-256 71c934d07f3cfd58684b4461db777a2938d02e68fdfce0ca63bee3aed7c3e862

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f583c869161fc09f9e035ac9b4e58e75a17ebc5a88dd7b9e30c78aeaf624c2f
MD5 166b2228f2b2b2558c9b068b8e76537b
BLAKE2b-256 b53b3c50880de3994fd62f0b5d732bff8b7ecd54d4590cad25a677e157032a10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ecc5f20457c6aa923222596aa0223417bf545c5ecf66b830478667cb00c75afb
MD5 7beaeb8cc897fac5c159d6331a10b6d4
BLAKE2b-256 f88af475f393e1c2d6df31ba9bb043ff13a0ad708e05061b341ef6c4d420a938

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 76e9ac312875a9da29b2e85cabc6b5701e4d7309d581d4ec3975c0319466fe54
MD5 fa060d1ea06d99e1b43cf11382e80068
BLAKE2b-256 329aa4082d127c252f9e68970c1a82870d78ec48df71b01e1df202ba2481fa6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be0403d7ccf6266bd63d0c451cea1ee0482785ae65b0b913e4f672dc5bb1d022
MD5 4aae96f0e349e256947c8d85dcf9480f
BLAKE2b-256 e6152f59a4f545e30b95f78687bae71a28b8adc6c9a264cc7e223f5fd00b39d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32f7cd3df072325e35dafc39cb0c418e960d06a0b794c52f3ad6f62c1d4b0749
MD5 efaf39d619774c60a37eb654e5a72f45
BLAKE2b-256 d821aa8c2219fe3f94eab56416c1186f5f627f472023456e3df06a175ca3a645

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 95ef43d6be3e3d71b01a43d248ec0732aaf7faeec72e85dd0eb413a1362a890a
MD5 2275cfcd10a3f85c4a27a70dace91c9c
BLAKE2b-256 fcb17dfd07aad858d9de06ee1e4f1255541df57508f10f8b33d71d20d699355a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b7f0027cd5e9c47e3174af9cb151401e3c61d060be31fd45a2180ce45adfc6cb
MD5 904026490273cbd8d66eca5c1485b692
BLAKE2b-256 46ee7af334902daf06510953871c80b7d03e43862de427d707622693b26fed04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec7e922ad737db4736aa2f8c486371f12ea1dd5999d6dd500416a9719f2e365f
MD5 c50d6bfff60d2fa33f25dfad171d8e93
BLAKE2b-256 b4d2f67a79292537f2257fcf922c59f996ca062fe171507f5181b64cb7fa7a2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7fc2593805d4e7cc0b990472e8e153371bc65dbedf617dd2f386b8883d060bc
MD5 8e0327910474839d76ae7e157bae7afb
BLAKE2b-256 8fa8db91d3ace9dba9887fa84cd0b5e7cf58cd29b1a601224353d1de27e30f9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.33-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f87a9cf4ccc94177757646718cd3eec9a8aaa66350d8e2033600e5851869975b
MD5 76c6e79e0d5f8028c24f1782fbf1275e
BLAKE2b-256 0e832bccf5459188b40fcdaa953579260c4a1fe288f27c19a76d8bf32b33445f

See more details on using hashes here.

Provenance

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