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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.84-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.84-cp312-cp312-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.84-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.84-cp311-cp311-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.84-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.84-cp311-cp311-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.84-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.84-cp310-cp310-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.84-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.84-cp310-cp310-macosx_11_0_arm64.whl (745.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.84-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.84-cp39-cp39-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.84-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (801.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.84-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.84-cp38-cp38-win_amd64.whl (637.0 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.84-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.84-cp38-cp38-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.84-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.84-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 45a74fe6d21ce3ebf955d444b6393baa294ab7edb294b3764594cd9f96cad2cf
MD5 7b41cfa217cb3357b97fd40880d15d9d
BLAKE2b-256 cadf9a57633d857d141f65f4c19916dbd777b3ad06be210110df03564375a110

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65b3b2343bd0566df7df9334db765ab205ea15e9042a65964ff2313578a5ecb6
MD5 5889db15e2b669833e993ce0b1d3bd2c
BLAKE2b-256 6d52082b40d9378f12bc8220341d02625ffa3e4c4e1ed0d9d618251ad3155148

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cf8f386dd8782c9005f0fceccf9255c3c9a64322a372aa904bd59eb034c881a
MD5 0f8e11df632eaaac068c65c0de0532e4
BLAKE2b-256 2a2394f9cf8525bb1868f08395476fc49470a1c8829b8614c8fbb1a73c32abb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b4d90a739feeb3f6dd4a95e91e087ea5dc39060194339af414f5e64f8d2712d4
MD5 2a02deae40aa8882d3ea6e17158cea0d
BLAKE2b-256 b3eae1835dfc7266f99079a9112dc6ea56303f955fd804667ed6d3a47f1e7e55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ddbe6dceea29a4d495d231e0c4a64e7a38e75cca20c945b3797e01127b788b11
MD5 0a1a10a6ff01e2e5593feb2887fc5b47
BLAKE2b-256 397a28b907e09c61c86d88f8618ebeb72a9b375f0d04c62bbb5885e58e61c297

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e30ddb063be53a19962b90a5077ae9e9a0ed5fb95ded61bc3ca70657956625e
MD5 089668774d5350140729795e851cc3c4
BLAKE2b-256 4f82086f2509774e38738ec54504c405cb49f314cb2ee30873154a0ffcb7b73b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d1d0b1462f2ae63eb8026b67a9f0ccc46d431179d2c59774634cac912a3bd5c
MD5 99110b77fc3f92ad30aab671569f96bd
BLAKE2b-256 cc8ee4250596d03e8eb200d09d9134bb6eb728cadcecfc4246c0ab83db67dc95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3130bf3ba69b5772b97f2098d1cb7b8a9b71050d72fa709a83d354ee4d515768
MD5 6d27a9f9503966f3e177fa19911d2bdb
BLAKE2b-256 e7b2a177c6d886e32d281d48364f02440a46ba2f384bf0e5d277d4086f915f36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5f3ee4a1acbef54a347e317664ebaabfbe55b67bf8d71b567b45e7eba411fa0d
MD5 73a0ba8ae4d8391bcc8bbcdfd6d498e1
BLAKE2b-256 3082efdfec2c534a0587cba8b59bdc34e8366456fbf51848ea33cefe5c3458b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2313055b1ec1d75c025f49156f8c9face9b4e017e2f5339dc38f31e835e3955c
MD5 c10fc09281a79256536921ee66c9a9ec
BLAKE2b-256 21849514fd7ba148974b6a7284a16e8498729db2ab1e16da68a1a15cb11208f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5dca7d04ec7edade210a394a1d48372bbe208cf36a92a05a7ec8686ece0bf2c
MD5 98ac17d2086dd978320e9ff900a5e028
BLAKE2b-256 7b9ab26741541ed019d2b7e771db8ad670d3f316301c309f0b0ee401b17168b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 945e67d1af0310b0bf258063c33ac0fc6216e0a5b4825472f91880c2df30f7e5
MD5 72e7182af2fa47e8d72a0cf4a68cc6a1
BLAKE2b-256 ab32140608c07cf1ac05b56339da796124e9d78972654cec8e03c2fcd9d6e667

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dfd7b1f3db2e06ed697a83c688caad7ecfe16b6d12542648df65d9243b3bdc50
MD5 fce9075f6ee28cd15d1c0f1ee0ed8e71
BLAKE2b-256 8749bba6c355a180c4ba5423a5991e9237b454731e1c0f7c052a22e29908e8f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7c26741610f3c3b26b16bd36ad526e7ecf0ad247fff1fd58e8a4a5a59a769fa
MD5 82e0b75cff759af1fb5cf9d9205e3ea0
BLAKE2b-256 338ca5008f116860bbedcd047b78d85ed336dc81ebe90e6d4af883b721042631

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85db1414bcdef4dc1ebc46ff4553695bd9cbaba7612f9271726ec1fa94f17b6f
MD5 77e264238132b615dc8c8b953dce16f7
BLAKE2b-256 7cc1604324428cd3dd6131172525b487a4142906420ed1eb0df3149d82c68783

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dc838d5458223d319547f0d4fea82fc9deee153be6ccd1a7a76dc118223674df
MD5 d28e3b8844b24b890253ad9eebdbf442
BLAKE2b-256 5063a0a53e1309ef510f29e13933dcab48892dae29ef8baa460a15473b60b69e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b9bb9f97ddcdd18758f49fd0203a4742a29f305de6bc6132f07d7a456595ca9e
MD5 9c5478f070f908457974ad66c85b294f
BLAKE2b-256 3b47c26754ab441a3251221a9a035fbd882296e189d466431455e60c3f5a605a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd8c290c1d872baedaf2c771a00983c5614443fd62611ddae65b855b832bebed
MD5 937d95ccb11b090a64cd03d757a2c879
BLAKE2b-256 f53be04b89b64e7945dd1107cdb8832da315ea71080ef907946bd430f9a304ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efad3a032ab591097c216b1b85e9dff56a03df4798f2542e21b2fb40da7bf581
MD5 c868cf72eb383d4fc63b1a34bea30e30
BLAKE2b-256 0f59bdb04aa80735f6230401ecd1d8f5c438a233dcabfa22f8b48e3a8fcc19ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.84-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b4a70deb8449c578b1d7f3116fceabb0b6cdd401b0b1b1b79bf3387bb173c25
MD5 72545b677504b6febc37a0487b379f86
BLAKE2b-256 0b9fc425e965c6ce907081603f4817166c4fd8d03923852aeb11bf0bbec15a1b

See more details on using hashes here.

Provenance

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