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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.68-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.68-cp312-cp312-macosx_11_0_arm64.whl (747.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.68-cp312-cp312-macosx_10_12_x86_64.whl (756.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.68-cp311-cp311-win_amd64.whl (638.8 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.68-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.68-cp311-cp311-macosx_11_0_arm64.whl (747.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.68-cp311-cp311-macosx_10_12_x86_64.whl (756.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.68-cp310-cp310-win_amd64.whl (638.9 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.68-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.68-cp310-cp310-macosx_11_0_arm64.whl (747.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.68-cp310-cp310-macosx_10_12_x86_64.whl (756.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.68-cp39-cp39-win_amd64.whl (638.8 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.68-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.68-cp39-cp39-macosx_11_0_arm64.whl (747.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.68-cp39-cp39-macosx_10_12_x86_64.whl (756.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.68-cp38-cp38-win_amd64.whl (638.5 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.68-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.68-cp38-cp38-macosx_11_0_arm64.whl (747.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.68-cp38-cp38-macosx_10_12_x86_64.whl (756.4 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2192dd236ff38521f808fb748ac9e165efa82a4ec7b2b51ee3ccef8c84765560
MD5 bd444f7aef241f0c046df1275eb9c3bf
BLAKE2b-256 ffc7a587f94f800cdc44454fed893787516247edafd437de8bce77c6e8d8f89f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47ea6f42f29a46ed22f68e4e84936294e692da1ea04f780a591126b0cfc096e6
MD5 68755f7594e3a2449c8fd7297514c2ad
BLAKE2b-256 95e5c2edfd063711ea1f4af6d6cbcd2b83275415319b80aa08f1da2ba0a2fb9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4989ef6b305a239d72b22b5e21af7f76f7422a665e0c1b52009fd05870a5ddd
MD5 6ff56f852ef3590bcdbabb7f998e3c7a
BLAKE2b-256 7903353ee3aad3f6f89ad972a7972f60cc01d4aa0c51b4c3561b7971ef6279d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a9937b2989b3d042ba02839feb3da1fcb043784889f9f9c5bbc8309c0ca5369f
MD5 b1d5ea1e06a84473eb138c10e98602d0
BLAKE2b-256 263860f58d0e1daa5a49db2171d8a88fea2847e710c2764c0b36d63847e12c77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b8129555ee5e3e19de024f1a4be1b94a66b003abb75cb945f4e4a62dffdcd2e2
MD5 988c85e24740eaa050d4821c004d17be
BLAKE2b-256 c407c98c6895f465820a5b17df2adc80982aee432a878230b01f73352f2578b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf22a99909c5434e4188bb24d626551f00c5ab191bacc67b7a029dc4957364ae
MD5 6d9b1c6e92e04a54a3865766ec182681
BLAKE2b-256 8ecade7d78ad1fb4cf4422bc4257e1110b601382ed350c39d27ea6bf99491e92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10f263db41f7993df0a9a16b25dc55451732242dd9b35f3d8bbf606d42446f4b
MD5 360f336debce93078fec5282d9e2b1c3
BLAKE2b-256 6ee7b573f8fa136019b311fbc38bfcfa71e3b6f7a5252172fffcd0ebafb534b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80acb785a334f3c7ac511783c0b66077ac82f988050fbb6363c1db850a54deaa
MD5 9a2cc9c1b286ba8952652ece2c406232
BLAKE2b-256 e2f340088fe3ff5e7eb60e50af9f96299532d3b637bf28ba5d947cd27cc295c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 44309f41d7d9d246cebe7f32836f5ad808ff487602895db5542c94db920c3db9
MD5 6fb2fe5887319d17e8a9369d6eae6a17
BLAKE2b-256 8684893a2235b359f4e9c8ed1b932c62b2d0c901b1e3a44bcfe70796f9f622ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 487e57dff1785ae64223f3e9c482bedf6985a2040d5cddeb76a5116cddbcaac1
MD5 4975d2b9a8e06b60800f755548250aa3
BLAKE2b-256 1ab7b073eb0e610b6fc547c807f8fde76ee411146e9f2abf5697ab3f31567b65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f90404b396cdd49ca5365a87dc7388cd8267f3a7c3a9251f63fccda0ac7f57b
MD5 d50b3f29160d6737c8685937cdfd1e35
BLAKE2b-256 cd1a1af08940a3a6be6852a4aefe73db114a255289f7f2141aa3a4d430468293

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f6ab52e9224f7c4a213477d345f7941c73419931d1a522c688c5cb715aff047c
MD5 f93176476da6b7f2afbad36f5cdb935e
BLAKE2b-256 39e88aeb644cc8b76dec13ac3bbb9c1d358c1122806167012847128e841c6b37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d96d8fad1b5c05f5b8c6bb5e956a49f3fa61215215b17fd26c861b837d8beda7
MD5 be116dd25a61e9664d0929156f0318bc
BLAKE2b-256 3364daf991e6a1a7b6fd1230038fe28781ce177e8d4fe6d72049eb65ad5616e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2fe80ced7b3fbdc496bbaaea062c3a0a4563edbcbe2c2f1df85b9b95dd28a01
MD5 cfd2525b37e171f942b48c31b16ec26d
BLAKE2b-256 22283e4a3b9451b8febaec5eead217710efabd10de011deb853dc3ef6e693118

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5696b7c163d30d3fc38f289fa790a97c4900b4e100e09bbdc898fe4676daa0d9
MD5 93218d8f3188c2f1b8abdd713ae02f7b
BLAKE2b-256 28a83417b5c2d1a74b7158b4604cb6e4d499d1aafb840ccdd58ba569a1118789

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eaf641950bbb23d40ef7cbce64b77d8b81c7b6bf18c2061f8b7934e7f66af2dd
MD5 8d4d11c6440b91f27357b03ba9c939c1
BLAKE2b-256 ed4828299aad5b31e7841a806c1169237b5da1bb1de0eb8ec4c4b114e0f50242

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 98eb44d7299e2f7a714ec4fa43994a7e03f534dda541ce6bf9a770a2b78c6a9d
MD5 4674e8fc4cdcf67fa1f0500ae694f16c
BLAKE2b-256 c8acce6329e800447e04fc19b0b7905ffc7ff1600928366f4aed8d4cbf5471bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbed1e6550b622c1bb1faac7829d935322e049d4a9e7d1fa8e6c63c0fc712d39
MD5 f94856b8c30ef26faa735fbaffbe12cb
BLAKE2b-256 929e150f5e54ba6b0e4a0f19144e3c7d424442134b71dfe6a398d7d8616375ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a6775ab2098f57087e458aad241f2405599ea39e234314c06de9a71c05efd4b
MD5 9a4bf797e9252942cbc175d8f20d6d89
BLAKE2b-256 2bd8f35d30dbf6697024ffa6238ee57fa96bd28294499da2b9323f207d923d70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.68-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24938c2e3a62c62a1bbca5e631836350e688c6e155fb22bf2aed574706c8e4d1
MD5 61b32f5862a8288096183cd73065b737
BLAKE2b-256 ee08324f770b666395d1976114299e282032432db1e1c49c64acd9fe3ba2f360

See more details on using hashes here.

Provenance

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