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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.85-cp312-cp312-macosx_10_12_x86_64.whl (755.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.85-cp311-cp311-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.85-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.85-cp311-cp311-macosx_11_0_arm64.whl (745.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.85-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.85-cp310-cp310-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.85-cp310-cp310-macosx_10_12_x86_64.whl (755.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.85-cp39-cp39-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.85-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.85-cp39-cp39-macosx_11_0_arm64.whl (745.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.85-cp39-cp39-macosx_10_12_x86_64.whl (755.7 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.85-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.85-cp38-cp38-macosx_11_0_arm64.whl (745.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.85-cp38-cp38-macosx_10_12_x86_64.whl (755.5 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 43a4a76b175b416ebe6d1bbac8d9b1cdcb1cca36b19809815fc5f882ddb7afd8
MD5 c77001d67d145f37b5b3e0e801603259
BLAKE2b-256 d43ccb8ce07ca9907e9dd160ca8ba062582008ee2e3a40b4f7285179315e7375

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fbbe3ed7f91d86baef78a7f3e2c3be76a3a55c19b4b03782d751ab07901d1a0
MD5 17feafa98e6d0e802ab6fb00203180bf
BLAKE2b-256 8ace4cdb5b7bb8388a56d8325e218a2d456bc6dfd14713ac0fd58ed98e410b58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 498c7ddc4621a674facf51caa36eb50f8f693f87972bef593225c877555d09b9
MD5 0a711de48f23ec5f213bd0b25be1fb21
BLAKE2b-256 bc4dc301aaa504d9d893c72e646c5133a8ff96afd3ac6da813251e61210522c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 53b878b3387080e655dbe9c42fe3e6db3579d0e260c329f139e27ded4d44d8de
MD5 12c372e0bdedc0ad4ee922aa70880816
BLAKE2b-256 96f119083c396420ac21470aa4e5a656795f3268a42f1a34982492a1768e69fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 681571110e59548568ccc52e84e8aee10da880503641a3258a4490c4bbf7213f
MD5 36b59aaf69413b3698f91f209bcfdea7
BLAKE2b-256 dc6333d27d64016bd539ca5bc18de50bd754abb94d79a56d344d82ddb41979eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55499a45d41fb605e83e89a8fe43e56b3728f3df6cd39f840118048d0fc0ddc8
MD5 da9962e93e982b9c71226ecf461ce9b3
BLAKE2b-256 668f5dff564ab19526a2fb3b5eab56f4c65f7278879cbc2ac9a6f0b10d5bdbf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c86d18b1b5c1676d701c773afe8e41f6a6b42833e443a9ef862ad985974b83de
MD5 04e662389ff1ef612d69e37fedc9dcb7
BLAKE2b-256 bef4d0b3449bf843265f248aee50c598d5a42246170fd1cde820164874aa0a93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a0c4cbf3ff29fd761e6613be74067f3d35f630b2b6b6b0f3fd5e9828e472c18f
MD5 d0a392cfadc24a2b614d3fdf9f275ec0
BLAKE2b-256 eed8b8722caa245c37221bbd4dce206e51a86245059e8bc11f93a90b34bf09ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eebca7176f6203a7616d9b6ec78c5dc67ba5f4a3d7badcd7340618cd0960dc2b
MD5 c3ff82601baf6be7a271a49d138895b8
BLAKE2b-256 357fc8db09c3427c58dd1915c7e17153f1e229cedd4b9a70dbf21d8dc77cde4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d24f1435d54e76f378d2b70b1d650330c11335f475d00528df14220c60330e8
MD5 fca814dcf72bdd2942b4fcdd6c8a1c77
BLAKE2b-256 6036503b6ff6d2885c972894a179438b409bd8013a4914473d1efeca2faaab9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 432682682f40657e12ea1991a372e455a60112773cf48c366e189106e4947f62
MD5 f373798d20cbc7eb7022ecf56910789b
BLAKE2b-256 f968f14667c843b48587eeefa3910a5cee0e33e0cc595ff419ffd3f3b2670c3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 133131ca7b48c286be8c9096f146230146d277fabb4eb529fce2c3830cca26a5
MD5 e5c3f0c8cd039ca8459c5b24683ee66c
BLAKE2b-256 b164840dcadcf4f16e8caf34bd8a5aaf36c77c1908bdb0cf24fb9264155e2c92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e24ed612fa92dde7044f26fc899cb8498f2f4ceca473c543f1bb630dbbc30e71
MD5 a8b6d7cc584ad1d1dab46fcd34c052a0
BLAKE2b-256 1501a36446fd1d208988cfd48c5522b2599326261522c1d50ca2c30a3ecc4fe6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0ecf882c94835790282986ddc164e4a162dbabee1c8da258987457a05661195
MD5 af5cd1a8179930a28d57fee3b2164b11
BLAKE2b-256 09dd29ac0669f6b6bc91d607b674643ff7479673522248a87999179c7db2ca7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e50bf624291322d99b96d18450e6a9ef3fb025e8a32830e226c3ef42e62fd87e
MD5 a1c57bf9834ab9cdf14eaf53b8c23389
BLAKE2b-256 19a8899882f32f7e646d43f868fd365c9662c54051a39e6e2639bb382b6f496b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6046e991cf9425546a51ceaddf923ce9eab1fe579aaa5bbdd9f95aa501e51f6d
MD5 6442035c353d3c9645e90f47e5ea146e
BLAKE2b-256 68bc2693058ab2c214a2ba849a6ac07b8a8a86878018a1697ffbed20c4c42600

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 29f7a9587d243ee1ce5e9af5cc92863e8c354e0db82a2fab80e4aeabcbb7eebc
MD5 39b5166daa0198f90bc7a618a5b0dee6
BLAKE2b-256 95627c7b95de7a1d75e4e536e44bdd884bd5123fc529aa7c09387a94572837e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c524205b2ce84d52e19797a775a9cd56abf37bb84cb69127d91f30097a750abd
MD5 36851d9c7c2604d92e3b5c0f8c685b4a
BLAKE2b-256 413dfdc22a1669f68a101ba2acf9d39462c6444ecdd3af4bf9fe588c27370240

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f86cd1cc5d0da94e5d4693b798b67f39920aa6a69871e6e8cf644a98403aed1f
MD5 690155e2b0a211f3a3bed98c05c4a48c
BLAKE2b-256 e6fdc4e3256f8236b3103c5f8c80d9dd806f79afef1c1398428d2b5fb300e4b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.85-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 288c4f56e5a83785bbceda72c7c09401d5712a8d6eb34505a7df21bd0290f51a
MD5 96bacfb0cd1acea0d58adfbb31850488
BLAKE2b-256 7f4ae4f4c3cbe36a901228ecafcb7166040cb29a695302f43e25c3d2118f0d35

See more details on using hashes here.

Provenance

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