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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.111-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.111-cp312-cp312-macosx_11_0_arm64.whl (744.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.111-cp312-cp312-macosx_10_12_x86_64.whl (750.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.111-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (796.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.111-cp311-cp311-macosx_11_0_arm64.whl (744.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.111-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.111-cp310-cp310-win_amd64.whl (637.2 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.111-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.111-cp310-cp310-macosx_11_0_arm64.whl (745.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.111-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.111-cp39-cp39-win_amd64.whl (637.2 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.111-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.111-cp39-cp39-macosx_11_0_arm64.whl (745.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.111-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.111-cp38-cp38-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.111-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (796.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.111-cp38-cp38-macosx_11_0_arm64.whl (744.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.111-cp38-cp38-macosx_10_12_x86_64.whl (750.2 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ac736264fec859daec49eb538623367e0cf30eabab225d911f71c927d3edcf55
MD5 88cefc93bf7b2c828b923b01bf8b0ee0
BLAKE2b-256 f91548a83acd70064ee64136e03a45df24039418864f7c8540e81aefdb82a5d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7aa6ff491a57a368c9e33f91fd67a6acdc696e55951355f205ed737d8f644361
MD5 a993fddad879d0fc0e48cea0d0a04370
BLAKE2b-256 f106d843735d0a50be1d73c228be17616e2d1e3b8c2d010c8e68ad3784bd898e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 404802700fac00c0809a7d5680c99cd45e57545c806a0e121aca16747f59032a
MD5 8367587187885d7679f286798514bb1c
BLAKE2b-256 445d953a421dbb11080e06e813d32791025dbda861acf7430355703b456c8785

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 44642d6e53ea2acba275296019ad7088cfc5d5fbe004cf661e969eac3fac8179
MD5 fc31facdafc4c22e35b188ab04853a4f
BLAKE2b-256 45ff81ddcf3281ef15525682d376c172771210d5fabe4b5ed6d92f7f6ed80ab9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a17b3fdb25694115c8ace9291b3d22de3d46d5a75e523bed0c681daf05950163
MD5 0438ea0e11dbd450f4e2727edae43e6c
BLAKE2b-256 c3c5218a5f3d05207aa45a9abc89a1ae03b46bcf4647fe2db48a155d0ef40d2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc751e90c3a334c9c02c8814d1f295d95b8a93b2fb6dfe08c722142bd225adfb
MD5 5a20605a5573f8ca1d2863cd61aa55d3
BLAKE2b-256 c79ac07c0b29a7792ac7c46e1a0542b6f3d5b458436014580f1d0d14a5bd9c2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0586038541e795ef7035d07137b8af1377e0297ab03977f3248e90ac578a117a
MD5 14a830a28128128288e90b7b60b1f7c3
BLAKE2b-256 adb01fd462b0784fb542a2173ac76611e23440f35d628de5928be6783991a37e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 35813ff51185b526f6ec1ae9df95d0927e4ebc2c7921d46b55ca87d72d146afd
MD5 98070ce7c616d99f65e7430306a44a16
BLAKE2b-256 ab3a566e27a3cd088278e45ff6d7422e04fb237f35576e09c517334119644a91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 92ee6a2d28382933caf1869be58759075a6ae17d53bcc6afc3586ef6e904977f
MD5 6fa100e382aeb984107a2cdcb69ca2bb
BLAKE2b-256 6ed703f124dbd26745de240efceb3b5f4bc86ed91168c033bb6a08b995425181

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4f324babafa477e75c0f7bb75c3b369ae1a3c4258c800a61edc9d39e0fbcbec
MD5 d87e27482d804beaf5d00dbaed2251fd
BLAKE2b-256 fcb91d9e3cf4d2519cac302d41186724785c88e479822befce86d183613cb7f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85082f16bd9532f898635042204c924db71a18deaeec63271a248b5bf88ba3c9
MD5 0aa691a18449aa0094ae2a57ad69000d
BLAKE2b-256 5e1d144576579e7d7b31ddf44de685f7bca71b0488677657dfe74f4723c439d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f9b09e4d4f5d0f1bdd43eea2e326d0c0816b27c8db79d6ca9eb32b523f9eca9e
MD5 60ea97212d335fc48a01f78b215349be
BLAKE2b-256 440337321bc9c51598373f27e575c06bd689bb77d75b59f487dce7b9cda59a1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5a80fbd2ca09125f997994a5d5a3dc2679da21fa104ceb0f04164a3d5725dbfc
MD5 15b637854fd6562e22a318ef5a544008
BLAKE2b-256 ae60b298b02b6a199093787753c045aa9188b9ee4c433515764deab534eea0c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f69ae1e31ca7ccd722f562afd0f102d33489eef047fabede1b261cc64a03f988
MD5 1074591d72917419852244c7f995a881
BLAKE2b-256 644cbfc5b9c8dd3d20339321b7b65b761692850a03f4a68b5653f09fa657c686

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7aed7526c491a086c57264ebd6d8a0b0cf65089dd04f17ec1e6841f3b17a604
MD5 43876740b9e9e9c6eb6e7a9260ae5c74
BLAKE2b-256 0e3cc0ee6ea984bb47237c954a5435c6b427109121ae9ec2b86d61bdfbe6efdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca44e44eb588804eccbdd46efa2e5f7632941b09fa48ca7ec81ca66f1f37f714
MD5 9aad67c71e0e56b1127ad5e8fe1773d2
BLAKE2b-256 dcc2b88bad2e6be35065f5713bcaa15781e139545b8987dc5fbfb2206b179fd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cc79608cd43a54b0ae6d646ae4cde56695ac401d7722f1d03fdb63c89dc77a1a
MD5 4ca38d7868d69cbaf0d35e5a6ef52d2a
BLAKE2b-256 3ba72b06c2ed8e82f76bba57762a6e7a85817489203732f75e61e4abfe396723

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6383339f685a8136679f7991451771c9ea5767f18a3677f005165868aea9d553
MD5 c25285f8c7d469b1b0f58dd2761af92f
BLAKE2b-256 10826d1385848757ca25a5a14fdb2d95a2ab607722f1879134e9b69ef1f9f3ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da37b7c3bef04c9d894890ec9bb15c73573d015878ecc5c7a063c8fe342ae333
MD5 78bff6191edeef31a0a9b1046fc8aa1c
BLAKE2b-256 cbde0786494bfe28294d18a73bdd59b4cbda37e887dd5710e5b55cc990ac2e45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.111-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9fbf6fe7962daf1744eb730b33938ea480a9cec09a79bcceb6baa2626dd7a9c
MD5 51bbb51295bf4cc3958facc618ecb736
BLAKE2b-256 f666f84be7494811e1f00a277c7f23c42d6a5767a7079d8044b80c8c7feb495d

See more details on using hashes here.

Provenance

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