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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.108-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.108-cp312-cp312-macosx_11_0_arm64.whl (744.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.108-cp312-cp312-macosx_10_12_x86_64.whl (750.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.108-cp311-cp311-win_amd64.whl (637.1 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.108-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (796.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.108-cp311-cp311-macosx_11_0_arm64.whl (744.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.108-cp311-cp311-macosx_10_12_x86_64.whl (750.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.108-cp310-cp310-win_amd64.whl (637.2 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.108-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.108-cp310-cp310-macosx_11_0_arm64.whl (745.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.108-cp310-cp310-macosx_10_12_x86_64.whl (750.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.108-cp39-cp39-win_amd64.whl (637.1 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.108-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.108-cp39-cp39-macosx_11_0_arm64.whl (745.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.108-cp39-cp39-macosx_10_12_x86_64.whl (750.7 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.108-cp38-cp38-win_amd64.whl (636.8 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.108-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.108-cp38-cp38-macosx_11_0_arm64.whl (744.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.108-cp38-cp38-macosx_10_12_x86_64.whl (750.1 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 57027e46c7fab799b9eea8e1d1fe389a62350ef817e29092279a0dda6526ba54
MD5 23a28c6474431e5a964ae58cde03af87
BLAKE2b-256 af23921ecb93ceedd36499045a2707f00e40f2747c418177ef5f94076160cba3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98268e662d276f7f9efbb82714cd9350429fcd2e9c0b71cbf0e08a2a56e0ddf8
MD5 385a17780cb093d117d475eaa11a393f
BLAKE2b-256 6029eb76b7242ae07747984ba6e64511f9056978f70b9cf972bb3b8d1c686fe5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 715f0d5474c4296226f23aa02442bca041d084822cf440a102e0c6aea6ea2bfd
MD5 ae7bb961012a9e055ec90cfaa335b610
BLAKE2b-256 736e73f35d7cdb044ba76662ba8d0a4ac4fbf98e70da0a154fdb84d60bebd6a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06c2923cb0aa702c8d2db1777ee3dd6ad6f3cbd4bc40cae8c4c9ba3a27d88036
MD5 5d37bb61fd9c1feecc8e561771124daf
BLAKE2b-256 12d7c3c024f42de05b5f4d6d39ded5285c6762ede7c1498dec452c6274a86e2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f23a5b6f1fc8ac45722d8bc06d064975f7bd23ddd9222f8872ab66284c1d2f04
MD5 9f223fd841f916503efa74aebff6c48a
BLAKE2b-256 5b737d8097c4ec8f4887b7c6bc1f4787d1a219f3326b46783096bae52da87b12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d8d95f13fcf2d1523b794193a8f3e91aa60c50b01630a710d5e9b5227c138d9
MD5 32ead5645f3941ba8f2dcd55af18843d
BLAKE2b-256 5e0b1e15cbe494c337e5907cad231d14ee76c5ce8ce2262c5af59a79d8c9b409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88b8ba5d736023e3e7f5c450c0b4237730c09230732f339ceeae6dff0db0d5ab
MD5 8c38dfff95ef4128e3044d97268da5bb
BLAKE2b-256 aa1f1d67ea8884fda0d38e8857925ebaa3614ef208b4bfdec79f67312daf8e33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 51f3deec5e304afdfba09dd70a9561746ddabc4bb6f219837d42e85809880bd4
MD5 71c97c594cff6890c9b3e12d63f18247
BLAKE2b-256 68bcf19ff08639bc170d927a8c5ce6b0fd8ccb59c24eafee7b5239cb187e6b3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1e2e6557dfb6e9aabf91b80026892975739243d336a28b27297bc12ce1216369
MD5 6d024006a50dc50c2521f11b0ce397db
BLAKE2b-256 11ae25dda81c5a60b12269d60dde22b5e93fefaa7ceede83a6928a1049ac40a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 494d5cb1340ec4886f8921966966d404f79c2a4eea0dc30bd1ebbbebfdc70850
MD5 6212b492b05c85ca5d5a24264711af6f
BLAKE2b-256 1bf3939caba5f23c48775e4850d92f16eb8b5afa080aefb0cfe0d07a75f6888a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5308cd5877feda7ac6b539dbfa90127feb8326168cb827e152e80616487ceb5b
MD5 f3968c7bcd18046c6ce1a29fc56bd40c
BLAKE2b-256 dfea5aef76d869efb69023fdec7205cf4e38350f3e898457951bb6ae271904f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ff7fd42daba3fcba1871d946f03e2214e9f8f5fe8d26ac226cedfa2396ca34a
MD5 63a5c5e860658d01deb2d8f5eb05f346
BLAKE2b-256 38e19ed30899ca7df59fbb59726b6c52fcd2e1c45ab4d2aacb35c655509041cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9ba6b9af98c1fb34446bf7226dbe7c9b69e5bc3b6cd2b418ab7576805854dc78
MD5 da3b18400eee87e67a2376cbb3aebc60
BLAKE2b-256 346808e9d258a6d9ccb45813ad34daa1949cdae916e9cfe0420562cbf62d14b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32d863e7b21452c16d5451cedd6d1a0dc60b1635e4650bad0c560fe04db46b64
MD5 3710fd21fc1db2218a9b20143bb3db8b
BLAKE2b-256 8182b74a1e149c230d2c796aa81846bc160628affc7291bebe57c47b49a715c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3229bcd400509bb6c29d878e96a1fc51771623aea9da58560a9c1c79423e3b9b
MD5 76836644cafefa25de9e1e2b33f68a95
BLAKE2b-256 eb01c1b4b58a3df3b9601cf22d7e422ca89139b167009e17126846bc7b5a44af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 211514636e9f25b25214614709c29a2fa22af0516304842baf9479b192ec59d5
MD5 c9b6d8c08ab1416a8e596a3f9ed7f855
BLAKE2b-256 63da6bf35f2708fd2661d72297781bfacc0bff09396020aedff3d9fb6e9c4083

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 667bbd3109bfbaf3c107734a4a9f901dd9a372b1fa3d53eb2c018691f60c3526
MD5 fa9a4c698649d6fcdfc82cc4a3ce87a0
BLAKE2b-256 ca65e91c05c4261a87f5b690268083610f9bbd3e89332ec193519b248473c66a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fecae2919fd1eb0b5090ebbb9ec0d87bb0ea7aec7e44d92158330edf4f5b6b5f
MD5 19943be00a3d022a733a043c95dd3526
BLAKE2b-256 8cb3b06c67e288378865bd250b9d7d015aacb11bf2b59dda193b293e4817eaac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f762d185da40b96108372b939a3655c13fe6e833d4c161c11e5348534ea1341
MD5 4a6a0bd0ab11512f33c35c8f2c215a5e
BLAKE2b-256 16703931f4465e8f5a4acacb4db541e516547ae85d7235272c8b1f35fd2ccb08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.108-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e2a03f928412f3682860caec732a11f863e994092d87d85ae5cee7296f55ae53
MD5 3faae1fa542071e02f611cac7fe15d94
BLAKE2b-256 f2beb90f0367f7db80dbcae0306889e92930b329eff393275e0b1ee21dab1746

See more details on using hashes here.

Provenance

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