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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.123-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.123-cp312-cp312-macosx_11_0_arm64.whl (739.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.123-cp312-cp312-macosx_10_12_x86_64.whl (747.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.123-cp311-cp311-win_amd64.whl (637.2 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.123-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.123-cp311-cp311-macosx_11_0_arm64.whl (739.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.123-cp311-cp311-macosx_10_12_x86_64.whl (747.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.123-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.123-cp310-cp310-macosx_11_0_arm64.whl (739.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.123-cp310-cp310-macosx_10_12_x86_64.whl (747.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.123-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.123-cp39-cp39-macosx_11_0_arm64.whl (739.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.123-cp39-cp39-macosx_10_12_x86_64.whl (747.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.123-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.123-cp38-cp38-macosx_11_0_arm64.whl (739.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.123-cp38-cp38-macosx_10_12_x86_64.whl (747.4 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 992ffe19240e8711876de1d8f9014b8b6352dd878127489961b0be496c20688c
MD5 c86bbb70a421008fafd942b0181ae130
BLAKE2b-256 7d1d4c17b7cec379a0ca8e098f186dd7d673a8b51c5f70d1009cc5755340d0f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e203efbe13cffeed8a7c43e043cf00921b2a790992ba8c5eb350043ace7828ab
MD5 c69d57bff15bcc25dd042004f13bd19f
BLAKE2b-256 bc20c7d60fc301a4d749c558b972d10ee07dbc2cf78fd8ab4e0ab7bea36893be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47dce43df46dadbb00e170de77c3548b2bef05b44148faf3cfbb857309347f6e
MD5 1cf0efb3d3ec0b52c05220d56c69831e
BLAKE2b-256 4e4277b385783fe81d65ff824c205bbac382a39b65c13417d7e31c3754cf55b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ed6de283870bd68ecb533cb245032db08150ed3c12cffbd06a98495785b74e80
MD5 cd7b7a7dd59b4b8e3868f9f8e1f35aa4
BLAKE2b-256 0902796c189abc20787594518ec3de8cbe2c83e1cfb24d0c59a2920ad91efc3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1c66e11b6cb1f8050e1d7965e2565839130c86a2a02a6287468a250f04212a3b
MD5 a890a609a1deccda7f72a18c7f36a0fb
BLAKE2b-256 435bbe609cc1577dd7063774abdf5d0198f336a7abe8e4cbbc75f988ad057e1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b46ce5c45a6c2f5f9d77be87447b7659542d326de40d366e4fc4fe2e28311ed1
MD5 30724fbaed34bb3b56aa77ade76246fe
BLAKE2b-256 a90064a1ed34545612994e79b2220264078201a5a0c2b15214d93f5ffc2e8a5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85ab057f49fd5e5cb69d108cdaf4650b7782cccd2b55a4e81eb60dabfeed3e4e
MD5 108557453fdf6dfa49646c13b86ae32e
BLAKE2b-256 5e31e2c846ed00a523ebb736a7e05374d7fbbf0bf0a24cd3f639e1ee7038fa53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c50cde8fe2b9eddacb1587f1150d75bac1a01e271d8450363cfe63a51f957af
MD5 8c42360a3f5d1bf950ed8f53939078d5
BLAKE2b-256 d066d13ca7a9a70f6dd11b5132904622a5adfcc7f5379879293152a3bdba4108

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f30ca534ba7084b462783608cb35e811bb6fcfa75e7ae9d6c2b377dd6f1eeea1
MD5 2f00e94e9e9dbc94c803cb781595b113
BLAKE2b-256 51b46c8a979015161c960a5c1633506159e86105a612f1b8ad37ae4b9f6cccb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f8e3f9e7a66156d0a2d6be559d3492c529d12ecf8dc7e53b86258a71898f2ef
MD5 38af64406ed6a9074cf78ddb9496783b
BLAKE2b-256 d69b33cc879796e578996ca0a35b13655e5b1031638b4c7b25d733c783ab61ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f499cd1de19e98121cdc27dd21e99868ce73106e44db64dee2c73ab43485db05
MD5 1c4a11036015a81d8c8eafa3a68363b7
BLAKE2b-256 65b6129e9f848165ed957e910a4a8a754c855cb432fb3f48cd8aca5f3daf72a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1ec76aaed3e8add72781b66d2547f4e1e337016c431b38b1d22c8add1a41777
MD5 9d403f66efd8a41541a891ab621c2351
BLAKE2b-256 2460c9e05821be545f4c4e4dd552b584be0229a6311b2d4d5ddf94b41953b2b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 609baf2cfea8359e2cb33d13c9f939bcac22d03b8024b4d4c49f78687f13b71a
MD5 2819d0dc7027d313992eacddbeeb7166
BLAKE2b-256 bbf250ded6cdbbb4a4e0d6b0449811cb6438e8df0c018ee70cff5b74ab8be6f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4e4ca2cef87aa3b83001a2c88b68e46689144b4572d73bcab5da140825d2224
MD5 76b6e44cfa636594ea365f8a2bd6e676
BLAKE2b-256 218b2041decd4a06a41544afed7d9edeae12f64e71a75db9b447a54c23b8db17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 060d9425104f4f88c720547f9f9fcb4c51323f0da07c87ce8021ec33d1421322
MD5 2f184f79a67a1dd4d7767926ff5e8312
BLAKE2b-256 343901a8f08b927fd840ea0ff93715630b21e61f8a82432258bc3a9965513480

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 36ca2beb1ce9dac7a2b1e0787eeac7019fd263465efbd745d3f48b76530de391
MD5 dd08e452c9b6ba3a839f37478a984f74
BLAKE2b-256 f9f5be7a8d4f6d74292197de1403a262e64477034fe781017d6e439cf0426e42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 06f84470825e3cfabe203093b9f421cfc5ef62b8cecbdd2cdc6306c89bfb1355
MD5 13c3023c4418f66c185b0263ebff8791
BLAKE2b-256 63a6f6ee702631d026703a1a57f679ab3b061b7fce300b40f8343d8eb55d803a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 113665f78d6493adc02114fbfe84a724c2a393da360c14c929ae9d2293fda0da
MD5 0e6110e9ca18a57df28431702cc90d03
BLAKE2b-256 bcc159892ac7d426e6c08af7f2ad90b397b7988156c2a9697e7f1020d5c5590e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45caeae259527ed6d4dc3fe46604a18cf8838a19dac6ae2a273b85e8f2c538ca
MD5 a8c681ac9078d8c339a76a035e3665f9
BLAKE2b-256 bb29b02af54887c20ad540f73165feca9958e91c22340a4893dea131705040ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.123-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 abc65d03656105e42d428bd2bc527d82561c4eb63df815279cb8765af256fed3
MD5 4e0308eb96b12541fe1fe7db1aac3bb4
BLAKE2b-256 1c49ec9dbca878371bd56e33f6ec9fb481973ab2ce2a98a5da4fed1bace2509c

See more details on using hashes here.

Provenance

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