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()

If you only need replay metadata and want to avoid parsing network frames entirely:

summary_manager = carball.summarize_replay_file("path/to/replay.replay")

# Protobuf metadata only
proto_game = summary_manager.get_protobuf_data()

# JSON-friendly dict without frame data
json_game = summary_manager.get_json_data()

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.
  • If a replay no longer has parsable network frames after a game update, use summarize_replay_file() or decompile_replay_header_only() for header-only parsing.

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.86-cp312-cp312-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.86-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.86-cp312-cp312-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.86-cp312-cp312-macosx_10_12_x86_64.whl (755.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.86-cp311-cp311-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.86-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.86-cp311-cp311-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.86-cp311-cp311-macosx_10_12_x86_64.whl (755.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.86-cp310-cp310-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.86-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.86-cp310-cp310-macosx_11_0_arm64.whl (745.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.86-cp310-cp310-macosx_10_12_x86_64.whl (755.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.86-cp39-cp39-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.86-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.86-cp39-cp39-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.86-cp39-cp39-macosx_10_12_x86_64.whl (755.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.86-cp38-cp38-win_amd64.whl (637.0 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.86-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.86-cp38-cp38-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.86-cp38-cp38-macosx_10_12_x86_64.whl (755.5 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file sprocket_rl_parser-1.2.86-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 796db2f509dc03d0f38640916159a0a772bcf90ed194b39b6510f109c4fe6ec4
MD5 85765ce3b82410dc1f529257f52b6e2e
BLAKE2b-256 c8ea64c044f9e12352920acd4111f8a803162a7e097775ff6f56025e31817c1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20de959c62e4e3a3b58f85e259f402bfede23f71bc1ff9573c81a30b7bc24d02
MD5 1b27ae601e0c32db27ff6ea6ed5efd72
BLAKE2b-256 65f978c7e63ebfb94520db31f5fb3d43294f02a9aa16b1f6ed5abdfa913edd76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e5a95663b2000f03d02caa40dbbc9cde3be5d548f2f3e783c9e6c0cd322ecce
MD5 1ace27d4cbd2fd1895a8504ca5753971
BLAKE2b-256 ae2fa138e14719b47e05f35f214a2fefb1ddd47cfcf0d2b20c619016dad50679

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20952e80ff2486100b75387489df81812e42a6dabb98417d4acc02543749f67f
MD5 f994d4e0d2c6c6deed12470da24c8349
BLAKE2b-256 7525a3fdde8c3fc0cd9640f539afd1eb13b751de8dada3b8275d634a01c39268

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f2e5677d80885aeb991c6f366c33014decd7ff286d80c657eed759b6ec3a5718
MD5 4e3456e6c4114f76175381c3ad886470
BLAKE2b-256 4269b5d3fd729c8522bf270d32711361356beb904a8fde34fc3adec3b919d600

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e2c627a04014591114ac12d3de6d12a23b4ae5c4369b8c80862d6ee0d84fe6f
MD5 8c4b63af1553768c3cca551ed0893ba4
BLAKE2b-256 1f6b406d266837d0f44524bf5b7ec75f13689f45081ca1d09adc1addca89210b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04b6c0753ada1a810f8183d10af23f3ec16e8e796d00020b096672f6b5477ed2
MD5 73ac3809f061312e444cfcec05958346
BLAKE2b-256 1cbda2b8745e26d9f7450bbc4d06c9d33cd65a8e7bc5482255487b66a672dabd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aac69465d56214cd32b051e1c9d0121bcd1aa0e85777100b78c3ace2ed9c3c22
MD5 c7b3160bcb5a5bf7fe07d0973aba5932
BLAKE2b-256 134bffca8a187354308c53b75c270e87b9739613140f2752b3d4021bb2389e41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6f99ca648716875b666861774f2fe0c4cdb42047ca1a187c8a3a6a337ba6c4a9
MD5 a9742c9e87db611dd8f921ed720fb7fe
BLAKE2b-256 b8b4b4f86902ff621d5ff22c28ed55970338d5f2770b9511787e79d861c7f073

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca9b51b3b8703b8730cb5809019a70f8b1b844a14df484896c9fa0c9eab8f969
MD5 a2236f48f18b5d94f8a8b50566f75fcc
BLAKE2b-256 4372831372940292f5e5e90990ab7ea7b02369c41b4cf6aa25a36c5584f9e6b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 254f71d78770a51ea30dd5e630c3e6f05100d7575751b29cd4f7ccfba499fb4c
MD5 8b394b71d5e0bb6e7f82c8f880d2059d
BLAKE2b-256 e33444b6e8c9f3245c545e615e63468116b29db05c88e88b0a9f12d8923505b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 302fe9dded79d11929c0ef63ccd5e1f294e9065ba1da9091e0952a8d1cfb2a50
MD5 256f8a52ac04ebb1796b83e27a5f966e
BLAKE2b-256 9b56a841bac02e760725f6bafe3c649fd5a5d166a036aa0f11472c45892b62ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 46fbe50b146ff8a21f54960fcf10289d7effa503c33f0a992be28073561d9f14
MD5 aac53811de3783f657c736d79a5812be
BLAKE2b-256 fed689881c11fc63e394bc4e9a35fb3f246e7bdc9f343b6cbb486155e7932253

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a2e5a620f4cf86c314d8d3a2c10a20417f3209b3f86814d95a34089cfddce2c
MD5 9c5fc7d1027da2d8ea20dcf306f5d3b7
BLAKE2b-256 25dec14a029fe3affdd8b764190cc3eab2dd5c621923f5bf93085d523f1c9d21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b702a7a28f1f18d9f65d3c5c2cffc3cf0cf7d000318cb550b9450ccfc259493
MD5 630b1385b384c19e3b4e00b501e284b9
BLAKE2b-256 0cf4fb5a3d2a49c6f5d050aa73bc8c3143977e472cba9fa3415d8299ae8273b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da748eb1682f360455d4443b209624639f7cc467bbddf3bf04ca2c86d849ff8d
MD5 f6f5967fb7d4d4ddd8083045e66e1817
BLAKE2b-256 671f828347d67c7bc708a2fb035c6857756fa29d7e6d9c816d5582e86ce03666

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7e414363664484c05f2521c17a25ded28830c8e4288cc82a33ae86c90d0b92dd
MD5 fc357d2ab1bddd3cfcbdc0873faa580b
BLAKE2b-256 e086a3876deb7be67bb6e84552116cc9c490e1a1f86ba21b7569eb9ec2896e22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d06768b8cc54b9b610a786ff4d3f50be9af4289d39dd0c6316854190697e1286
MD5 0559c7ef550bf5e8d7b5f913ecbcee64
BLAKE2b-256 3bdbe6eae05b477bc5626ae722278107bcc612e9c5b55f4b9501c8d3c092cff9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60766b248ecb91c337aca58747dd96fe157f125b405c07952bb30c100cad01e3
MD5 8cd8ce534609ff1e4e261386835df8e0
BLAKE2b-256 0592854b0ace523df1f8762706720f05ac15e3ed83c5a3a48955365c48af4093

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.86-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80565b69fcfc3c664c769fd48c69ae23428a3d08f6ae7577b7332e64289e6340
MD5 7926f01ab28b7ab448c8ec42ec2ef789
BLAKE2b-256 645cec11259c629f762e98d7973a31d0767fdc84bb51c012c818cdc4e3aa4e1b

See more details on using hashes here.

Provenance

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