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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.89-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.89-cp312-cp312-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.89-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.89-cp311-cp311-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.89-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.89-cp310-cp310-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.89-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.89-cp310-cp310-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.89-cp310-cp310-macosx_10_12_x86_64.whl (755.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.89-cp39-cp39-macosx_10_12_x86_64.whl (755.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.89-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.89-cp38-cp38-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.89-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.89-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3505fe223ccf3b48c3bcce76f18053e4ffcc5414b214dd49256ee73a9a8e9615
MD5 fd2070ebed2848b46efbb903d667d1b7
BLAKE2b-256 a76445de8cb32cc4fbdafb0ae1f8260fe626d7bedf320406312bc6a61dbc3b28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00159b38a8b6bad4668509be75e40ca40469d7b454b8796778507943f36ec1b4
MD5 08ccb8ab9ec604a34231671bf255cb44
BLAKE2b-256 3b3b969b66e4118e5f9f706b0468eb76d94849c8756756df47efa54df7b44e31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e9792d81aced86e0db45c8f10f3d53ec8ae8d805b03c93600278487bb18d6e6
MD5 cc559b86904f39637fc777dc512b7f69
BLAKE2b-256 bd3f593d764929116c22c49d7b3626b82be75f80b8217fcd2620ea59d1bdd572

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 21c86fa33137c1d037d8b4f3bb794b7ceda4558b24fb2bad17fd94b751d02bf0
MD5 d5da1a13e128e87151aa2c4684dea4e8
BLAKE2b-256 02824328181e2011dde3422014a019324c9c18d9b42930b7040faf66eb5bdbea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 db6f29e66d8be707151e5a24a9baf450d5f7f63ab532f364194e4b80f66b11d9
MD5 7f5a98a2be8327782f29d3cba8c66d11
BLAKE2b-256 8fb494caef9e4342ed781cc7398ab1459414b50bb24cc832ea15e808ad72ba1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5cc33eca14c3fb1d70324d929919d0300dfbda40f5c3f29e4137ab225a10817
MD5 55ea9fb074e82932651c0d9ddf2a870d
BLAKE2b-256 2a529ed2bfcbb81ce117cbc5992246e2eec02426a2fdf9c3785072f42bb5b36d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94bacd14cf6502d8fc520310c071f50391f14dbc1534a739ffb36539edbf595d
MD5 5d867faa1def46c268fa9604b5baa3f9
BLAKE2b-256 57d88d75ca40e45a58bbb6d5c7bd51cf100754e560b6e37c48c75080aedf35b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b626d58be5c90acdf961519f0e10421ec1ddbeccfe657f0c2d1d90d5daf14b90
MD5 2cbf99f605b8445f32374804ca54aa7f
BLAKE2b-256 8805eff95548dfdb690526736e16c22a516650b1e5e69d8a91e165e10c3f655b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 492b3609302c783a9c37b8e28e4503dd37e06ba47a131303798dc5dadd084e63
MD5 9e9771c913034d87263e80d790f551c0
BLAKE2b-256 af4fa456610b734f0b36166968e9cf42a0ad19ec8b4b629a1bbb8144fe7a4754

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 927d24d440a3e3c74c6af6915e215c90508d8dc184f7aa13ae44d1fca28f2894
MD5 3ccb537a5bbaec182d6c4bb7bc4e7026
BLAKE2b-256 540c587710fc645b849d8c8451cb562211a92893ddbd58fccb259032c057654d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dd37032f736194526953ca36075cc3956510e431761bd9b158eb315ae98a357
MD5 99dcf8bbbcb6ef67edcf8ce2d9c728ff
BLAKE2b-256 3ba9e6b2db55692eb092af1ab6c552922f2897db1088580d51c7091141ca4af9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9fe89d9bbbc509dcaf4d999af076eafd8148b41015cbfd882f298444b2c97fd5
MD5 606822e225103466fb8b9fddf01c0d75
BLAKE2b-256 39b6a93543b3ed55fe754314ca62a51b81fb78ecbfe43a71be9585afd829f929

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6544f17e7288c6c516953a6e43b78e0639b080d6d10b2bc41a992370892fdbb7
MD5 623e4edb7c4379a2b41a13db2cf965dc
BLAKE2b-256 e83f6e634ff75e21fa57412d08cc1336441e29c7f0e76523f094eca7944bfbb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a7c03a23cb69819f80884e340b2c2e96d14cd771e717f804ec22847c9123730
MD5 994e91cb0f885b35deef8561c4476f25
BLAKE2b-256 07560be485dc9cb925d0c3f34ac6b2280938baa5e580fa66961d308943ef3da5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66c5236f56558bc92762f49313b7ca7d475141cf8544e888c3853ef1d23bc81b
MD5 96d22a519b8cd9ed9f993789cd39c7d6
BLAKE2b-256 7b7455ca68f86f9c22adf20b61bc514a29a30fb6cdff0147d574e8963f07cac0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cca672ffecf1875ab4ee695c0cae08b42e5de48634a5a23b51e6dbfee5518e21
MD5 5cd67a641c2fe3477ab5e210eafde28d
BLAKE2b-256 c8206d9cde938e08161c77dc89e225342890331f8032c8c0bf2fb4c467097174

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0b3bfce437ffc0222bc50b17d18e639a68d420defb9f455f1266b6749c884d9c
MD5 ad580641ccc16e6c75d3f5e6b70c43e6
BLAKE2b-256 4bb18a2f0e71046f584dadad16b61f07d7ea3afaac22b5fb454400d52bdfc71f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15c42f9d8329ef11531b789cfd0337cd68093e9ae07cabf5d5862ed20d9990e9
MD5 00efd52c62bbac8f71164628731ac75c
BLAKE2b-256 a551a811c7b65c119e033f29d7f2aaee87217264b9109911e7238cd6e920e4df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7c89aae61eb98a84c1b1660dc0fe9afd8513271dc4554dd2ef20f6742f6535f
MD5 8c0d76cc74ba2913a361b9dc35ef2a5e
BLAKE2b-256 1495a6ad06bca34949b8854598e26e1d805deb343d7c513ddb379b2fe69c5868

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.89-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 15a052cfdc7bef6f51455278f0f9da31e2dad5b86caaa9b0ae0e56baef04d5a5
MD5 31a8a72a1b7a06fbe6941c003201abc0
BLAKE2b-256 592e08243874075a4d74c559ad9c76cf2f6478ad1dbe43f019c7735d6db54f33

See more details on using hashes here.

Provenance

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