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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.26-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.26-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c8b70b928cc614dce81e0f7e02f4d5706a79c80c1f9487549e2766e70843fe32
MD5 ee78d8494475cdeec95db7947bf9ac45
BLAKE2b-256 b0600e42c0091b93d177241048d4c38c017ce823b4a3a7b53d6c0053b9f8579c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cae293ca5eb906d0376595b3b72505ad2b20ea053c0f53e44386b8af8319a992
MD5 3ca6debbfac74f443a521bff392b2b59
BLAKE2b-256 87dbd4ffbf42ef796bc026040a45e438d27347ac21a49c0702c7c5e4fa152c80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d45bae6ea2be81277664f17a036c0b741424ec2680e45a0cebdd1982b3776e62
MD5 43cb9f84dc24282a03c83aeb97364cbf
BLAKE2b-256 fbe491709544669f248747d52a7e4dbc6c86bc2fbfcb22e54e16f10868805ea9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03e1cf2d50f9439e818ddcc53218a857c363bf0911efc364a0371ece8a1de75e
MD5 7219cf61a447797d64df35af84261c2b
BLAKE2b-256 c4b875a840a13c7756cd4ac3788ae9cf19d2dbe15ba42c4c61792056f9fd3951

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4c7c70d9c722116c886112b30ac60b5fc4ac1250dd487454a6e167eca29232b2
MD5 3e2a6a1e8528bdb3003b22939661518a
BLAKE2b-256 35306af13fb1ef0f51ce0adf595caa14699fbb9bcff5a04479113c7f589619e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78e2c4f3082855eb9819ca6f9247d26727b5911531b7e12989bb2a1ac4e6e61e
MD5 9d568f131073dba86cc558911fe37b2e
BLAKE2b-256 009da9b0a2342e33707a3ffcf2846b5c77b096264212499624fd35a803d79449

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6604cb78ce184913591b20b64888cc5be0ccf777217327bd24b1ef75cad2780
MD5 179b2fed05f65e34442a008fb65d9a1d
BLAKE2b-256 184bcc6f42428e5e04e247daffef9cccb49474e82c112bba0148fc06e591c413

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 27af076d1a7aaba17293824fc563028a96cdb72f477c5aa5e234d037cc2cf3e7
MD5 ed1b89caabb80c60feab0a654f56c65b
BLAKE2b-256 34f8b0b1186c64fd52d9c9dd2629ce119ca0e624ea16016103ab31c1caf45700

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 398b96714102a4298294696da75537020e6056e24d35fc8ef1144a9de85d09ac
MD5 ab1a9f84ccf6f3199f6db9c612b3dd18
BLAKE2b-256 fc2ea9cca9de4fd140bd5e167be0b123668a16536ea84042c39665e4db00e3a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 169cdd0263fa6c7dffbcdd75f8d29fffc8fba06c7c6ee322f39ccc4cf6eccd0c
MD5 e0b8e5633f2a0b75036474986f263c70
BLAKE2b-256 ecc3a751a84aeabc75e1f7dd9d664195ebfbfe930ed0a774369d6d5e17191d0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbf8feba615fba845c0dc74ad7b05a80fdf33e3705a8c4c375c190d7b76805e6
MD5 77bfcb3229173240b126e9fa9bccfc9f
BLAKE2b-256 ca2f9c99871bcf58e75bd6f9756b96a0c12621d9c4b6ba5f28a1de16d3156641

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff1c4eb4b9e24201bc2d2fe2eb84dd05b2d4ce7929e06746e9ed5ed2798d9fd6
MD5 330b06d853615643a851cd35ca46f595
BLAKE2b-256 5ccf54d50a2d5748040185936ee5143eb0fa2c4d6790d8998f13fc1477c331d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6d790bf3acacf4f132be605d0b5332f3f943fed8a2554bba259cec14f4d30951
MD5 09d31f5aa13dafdb7b8743c3510849d9
BLAKE2b-256 0db87ce4f8d0ff5501d6789bf4448108f856367bffc11bbaf5c3fb9c33c455f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e62cf1aa8c91f3caadf7f977975c875eeabd1bb237357ec660adc92aa43af0fc
MD5 2db98b027055203c0dee7f0b7ad77da5
BLAKE2b-256 27873d1530e2f8a8edcaf0e3098b51c66f963b3bc01b0792e17dc95c242795e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c328dc874c60714ac565086fa76314fd6aab444c2edc5df31f90e7b834832a0
MD5 c10afc7515f813b348ae351d199724bc
BLAKE2b-256 05e21d103ee226ea8ddac341e15ff7ac53b33841f75ebb213a6822c54a23612e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5440d7e02449b3f857a1639388bffdb62660877bcfda45c4681ec068d2b1b575
MD5 e21e230c0ac6cc7a675177f3e7eab1b1
BLAKE2b-256 ed68fd57ee2d7edfecfcbdd386c0cce3fd63ac3e64819079e80017547a33e45c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b9b1765a714bcb72264b103647ca741bf53a345636cef0db0e6c9a04abd6bc83
MD5 ea89fbb71fb67f08a1f97bc539b00927
BLAKE2b-256 b3cd2f617f7cbbb23d82fe7bb6f08736a0d0ded4a2168d9fcae2ac3c70615ea5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e00739c41a3d4e8386b46d2946c85c3391caeba0f2d384b1cad38e98f29a8c5
MD5 8257a0a7453bd281f15eeb11e992b03c
BLAKE2b-256 4eec6cc0685643b18cd8a495fb6877143919566c7523f188017819f15e8d5434

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 845a9499143e29c4e46fc199b1d8e5a59e66a8bb503c2f227cd03d1efc136200
MD5 68c1d1eaadc41af62f602aec697a94f6
BLAKE2b-256 ce98538715b8f930bad69af9a27ce8228cd19a748ecd06cdda7c2ed2fd51d832

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.26-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8cd2e2907b529775b0fbb2be66811b980eb5392866fadecb40b6f6a538dca583
MD5 eb1f0a1cc8792076f1b24526e1f00380
BLAKE2b-256 793e7eb4e82c896db434ec0074bf80a0fdb4392bd452d88a10f26cadd4671754

See more details on using hashes here.

Provenance

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