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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.103-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (795.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.103-cp312-cp312-macosx_11_0_arm64.whl (743.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.103-cp312-cp312-macosx_10_12_x86_64.whl (748.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.103-cp311-cp311-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.103-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.103-cp311-cp311-macosx_11_0_arm64.whl (743.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.103-cp311-cp311-macosx_10_12_x86_64.whl (748.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.103-cp310-cp310-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.103-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.103-cp310-cp310-macosx_11_0_arm64.whl (743.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.103-cp310-cp310-macosx_10_12_x86_64.whl (748.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.103-cp39-cp39-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.103-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.103-cp39-cp39-macosx_11_0_arm64.whl (743.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.103-cp39-cp39-macosx_10_12_x86_64.whl (748.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.103-cp38-cp38-win_amd64.whl (637.1 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.103-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.103-cp38-cp38-macosx_11_0_arm64.whl (743.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.103-cp38-cp38-macosx_10_12_x86_64.whl (748.1 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b1c7313cc295ea4fb3f6768715f323c82b5c12a5b9b59f461bf15b4f6dd934fd
MD5 e3ec6951e9ee0c9e515209dc0732c56b
BLAKE2b-256 f503d20fb579b7c72ad30fab519ca0178f89bbd6c68fa7cd65d20394e8d6e657

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 563cbf6703624897cff5f08946e8f9f27147b2d8cbbb7d6b4568f3622f1415c2
MD5 2c1ab38940b5fc0f4886ac2542f7f4b0
BLAKE2b-256 f7817fe311d53e955b3799cb81930b3b626af81961df9989fbb364c7419141ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68e68fddce60d3df5f0d4f14f24dcb81e86979b218f1737357af127692d0038e
MD5 69f54e7c87a0d8366a969747bccb2918
BLAKE2b-256 ef2f6757a44c633d09f4ad42df82bcf773aec1b519b81a37f1a5fa26c9390e29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ccf37514d688b1ef14cd1e5f754eec56df98a0afc23fd2e6a7aeb5fdb8d3b8d4
MD5 606c4cb9dde2f7732310c46b177ce86a
BLAKE2b-256 7cf0aa98d5197d46ef38aa07e977612ecddec15f233f33605cf7f96f4e085beb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 463a573f1218986ed7bb7522049670f37aadebf378b9e385d5a8b8dca415db01
MD5 35d29f89bdf1147f5e7152bac26018bd
BLAKE2b-256 857c7e4a29fdf77d52eda2919fd4f5abe82f5e0102fb53bc4cc6811a88dbdfc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a53d5663f57664a2efa99760ae7cd0c786e4ae113e7f080f49c6d9961232e23b
MD5 16c4183e0cf9ed73213c0310e7e240df
BLAKE2b-256 ed6d3828e75ced850408b5f69c79283a01173e557016bc407884ce4e1f3cb98b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e4151c19c941dc0ad50e574cf216db8e67b88dd6c08084857d5b50e04ec0ccf
MD5 8075d7c9ee4f248a4549f6ae61529a7e
BLAKE2b-256 3a506af0b16fe8c4ca633e9de38b49e6d752ad0c0a1cf8b6c63445fa50844e13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c37e08561e787d1e1dc5b813ecbefecfa2ef27f21b709cb54984bf0cbcdbe7f5
MD5 8a6d0d5d558203aac152f7c905710d98
BLAKE2b-256 7ff392f5e11c9b13ea105f94d7e0515267e0750ea6ba0a7cfb5a084bb92ee915

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 60a05b64eb324c3b976e3eb89ff65a4e5106a01eb84e375513cb576092f496b7
MD5 412112fa698f26a3fc6865aa0ba76785
BLAKE2b-256 51472f3320ab0697f4a35b93d28210d5fd13211d35245374844c244e7068687e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a33c93287011c9bbf7e058ef4da5adc1cf19eca3121ba3f8a88cc7b03bbe5d7
MD5 5a0a5b319b90f589207f4476187a0829
BLAKE2b-256 be14f1b71d0b736f9dd48ba073aa351fcddfe467f3eac91963881ca070e29b87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 113da90ce63b6248245ae52dadabd1c875bf8621e6561708ea61b4d8ef69f994
MD5 622821d6f22e518f4bb2348fd29577dd
BLAKE2b-256 033f2f2131a1e66b5de234b85e088b0857a49a10388be3069e7723e5fbe47aad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2df99b508bbd2857ab3c352c79956f4cd1db5d3358d55bbc054bcaa2af342f5
MD5 963626d82c0c6f882fa019465a0daf9b
BLAKE2b-256 bbd5bca0197b7ecc6a482c73e08eee68cd6a46b399d3f056cd64929438cc7a3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 83df797e278a36126b0d9c6d6e408853cfc09bd95f6863800639190340609a94
MD5 543ccbdd995116ba854d026131025a90
BLAKE2b-256 b2553dbab4fd0a75ae4ac15048ec02cb06c3f1be10a42937fdf51bbd1e55686c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62652ed467d974c44294348d25edb7da2cfe77c781d426cdc6c9bdd4e7220516
MD5 2c88bb2fbc27e6b17ea22752d6814074
BLAKE2b-256 dcd2d4bef8d8e284912f8f54383d14c3a814ffcda4d39574ae4511d0fc89008d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df171c651907410ae1c5ac6c16469c2da62127205a7563c547a06c548d7ebadd
MD5 dd989a73c854436ce5286e4d2ef1aade
BLAKE2b-256 c173cab282d6e8e5c1088771ca01a276b46b746addde3e65b77f91f149064779

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e35f4232fe47878a9d5cb10c599d3539462429a7cbd6083888b713fe6ba8cd38
MD5 27f0f806e5094bc5153c11b6feff940c
BLAKE2b-256 947fb774f70caa8cc5c3338fb583527e50eff40534942809f2727ee4bb217319

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 51466a47fbc99590b5f972d654328c5a8f9ca83e817dc68228d30bcaa13a316b
MD5 a4b7750c1caf978ef6ae6c2ecf61a3ba
BLAKE2b-256 fdd04a7d0d0b97e7c411b3ede49b3dbe90adcf9aa0e828096501633200b5acb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc46754be48535a86d0d24f9d96bdf11c2333bd46eda2898daf89a95020acec6
MD5 5581a2ba20a4a40fd437f9a150f953e8
BLAKE2b-256 c514fba403c2bef26a70f66185b5aa3b71edeb446c239c0ef310720c53a0984f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e27964b714061416f11ea589df52e7c23949de7630870785ac1b4bd4c95a3e22
MD5 e9aa1d8f89391610e4ca510aa76e14b3
BLAKE2b-256 0c0a6f55eeb0a038222373f344a3545c7acc9c05b675b9a3f9dd63893afe2322

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.103-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 54d51a50c49c9cf1a6e3ea857df50ea9b31d540937fdc7021ba4d6aa6adec557
MD5 cb3f09bc17c53daba28976801a46e942
BLAKE2b-256 f8900f1cb75f71af0d26f52ac4c1cd57f7685212994c3c7919e42dcab0bea9b5

See more details on using hashes here.

Provenance

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