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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.81-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (801.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.81-cp312-cp312-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.81-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.81-cp311-cp311-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.81-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.81-cp311-cp311-macosx_11_0_arm64.whl (745.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.81-cp311-cp311-macosx_10_12_x86_64.whl (755.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.81-cp310-cp310-win_amd64.whl (637.5 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.81-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.81-cp310-cp310-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.81-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.81-cp39-cp39-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.81-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.81-cp39-cp39-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.81-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.81-cp38-cp38-win_amd64.whl (637.2 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.81-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.81-cp38-cp38-macosx_11_0_arm64.whl (745.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.81-cp38-cp38-macosx_10_12_x86_64.whl (755.4 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3bb336b142a24ffcfd1d3e33bad1faa242cccef4555e4a1a2964e7f2c4d6dba0
MD5 9ddd40279089d3795f59c6ba61f9525f
BLAKE2b-256 808e4d8d780fe590e01e6563e750c888bf71338f88e36fa64341df4269e01e6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdea93e30f63fc6db9dc74a5a279c7ad690a4b819544ffe5d88280fd5b12ac90
MD5 39a5f3cd153fa03baca0166cebf2fc1c
BLAKE2b-256 72751b1e719d15b81292c6749a2c9408138396ae3b74a1f0aaa51f8dc4ac0dbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b0fc4d1951ad67df82f8a722200e5005c027bb0ebd352d4b886bdb66d9bd035
MD5 69f486e1c0940b534f0aceb225a07a7d
BLAKE2b-256 d20be6d16f3543fff8f95c22b66d4f5f55f32012cf227d8c2b080238a9313ecf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aaa36baaa099319c8793ca28bd16864cb31ad98e523b87322c00278a359a8e8a
MD5 a71d3abe59e28537559304bf88b30650
BLAKE2b-256 dee0bf260753d0061a3d0d1dc4796188a53ee9961fecc39c1e229169d1a73b81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2e9398e6953a34fe0a425e6cb9c072fa9fb944f3cdbc1611a8c4ee34885b8752
MD5 5f22047cc01d844c266e8a639146315e
BLAKE2b-256 b95d6d8da33900cadf37e30639b954b900d832334c75ce1043cdfc5e593cf146

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18f47c1369d8dc021fbad93fd1c740c10084b184080c680d0db78bb14012713a
MD5 4cf89cb622852ff8807146c7ff5c9ae7
BLAKE2b-256 32d72912dd4f33b9e255c923e21fff06abbfec854d573342fae2b2a6c0990e46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fafaab5f86c974d3bee1a281faf77f9568b1bc71711d33abe1394fc5d6355474
MD5 be2774eec621796ad33b6ccc5744a254
BLAKE2b-256 8530df7d1c5403032511bef051cfed0932a75556db8bd9368f3480b9362095cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02039fa343357664904af68b4a37b179b4c37f300d567ca912abebce0cb2ee93
MD5 69dec1b3acea08061925e97274b6f245
BLAKE2b-256 4b3f827a37e0a942d10105c1d723efe641cccd7bb9a27096a688ba3cb85ac443

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7834d56a515a4aa8b81ee4cdc8dc51487ba53619705cc1db732da5767c3028aa
MD5 56a7bdcd289bcbe55a6e5828193f450f
BLAKE2b-256 4e19a7a144aa012ba05896e5f7f222dc70db4986cdd07320f2f8f2922831e364

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 549b8e698a96bcb025ac0e372892808e1ca0523601c0738bd91f40af350afb06
MD5 9878ae36d260b34fff0247ba63990218
BLAKE2b-256 410781fe9472c4249cf82bccede1179bc9b896ee84a6a325719c70208b3fcac9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b23d75dd5c9d31c1033be3290eadb861e0547403ecb9ecdb4470abb4421cedb6
MD5 08c03b45e0479e8211415ca3c4a578b9
BLAKE2b-256 cc5e9107d60d975c2f144195ad25ba3e0e4c62dbeafd1c069c35d4c98356aa93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b1e0e000839f8e9b0b4a92169001213e43123bb3370cc3db0a8565440bc784db
MD5 e4a6a373f335c8e3fbe71d14bcd0b913
BLAKE2b-256 12e8c8685e1b893dc42c59d5fb51750e69eeb14c00b38579c733b94cc8a181a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b3adfea0fb57b81b7d6d2a048bf7a51949e7cfe3efc0537e8fa3efffb423528f
MD5 3eb53fa32a2c5828064b30227bf03df8
BLAKE2b-256 e63997133700b37ad520d74dbf727b446e563978c52bbd91763ee1f0371b8f1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a182f91dc822b95d58247875f3344ff871b2200f4126e9e40d40d3a027e3259
MD5 d6f6cf0dafdf7ea70ae0e778de94733e
BLAKE2b-256 cc744ae03108c513f825ba5cc44f05f4dfd611ea079c206d17fd49d6b5d064ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20e413433c76b5727164d9041fdadd86f1929530fbef315621b8463a35c4b1f8
MD5 6f63a9a0e6b6217937445da6f64b4203
BLAKE2b-256 e6ce2d78e219baaf35d68b1c0ed87d1f5513ae432a02bb8155a10c68becb3a58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 864c2e20381f973f977c7bd4e1a628ac2ca389edcc569044f45c30a8c86c20d8
MD5 ff0d8d99093e1b2fc26afac6baa6238b
BLAKE2b-256 3a751549468f8c3dc979d58a7b9215e53a13d6d5b1278d06e55bd47258bc7728

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 477e8ab0e7ca9b6e4b4682f4802060ea3503de0c9e56c57d5dd5f9bfe10bc64f
MD5 f8c5daa43df53234aea6e0251270934c
BLAKE2b-256 a50d9c4a0657ace0d78a89dc12c341b38c42c0fea87d9992dd9cf6d13e7ed614

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2e667d5f879f1120f06f012cee51bf00eb0f513bca7e8de21f7854209d0ad7f
MD5 01c4dc36c1a9a9753be7e2c4e6fdfba5
BLAKE2b-256 3ff668a453b46ea3af9be7ac6adfc1705cb3f516c1233a6390c93180695eefb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef6de35cdb94843b19ea85c305eea867b4edf7970d9e5f128dda5583c49fda46
MD5 92a068e5566d80bd4595d86b7bdd5cd7
BLAKE2b-256 473f6cfebf68190c4f39812180240a289a0e6bcb07b0d2740aca08b0c266c464

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.81-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 be49dd2968fbb6ae4253845742e38f0d1eae8256f98b6dd0fbf826edde9475da
MD5 67f4e53235b489aaf8dbd2f01240367f
BLAKE2b-256 f58ec45414bcec50391128fbff3bf0a471e266d64ecba97ea3cad2f3e2665fc6

See more details on using hashes here.

Provenance

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