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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.106-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (795.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.106-cp312-cp312-macosx_11_0_arm64.whl (743.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.106-cp312-cp312-macosx_10_12_x86_64.whl (748.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.106-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.106-cp311-cp311-macosx_11_0_arm64.whl (743.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.106-cp311-cp311-macosx_10_12_x86_64.whl (748.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.106-cp310-cp310-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.106-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.106-cp310-cp310-macosx_11_0_arm64.whl (743.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.106-cp310-cp310-macosx_10_12_x86_64.whl (748.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.106-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.106-cp39-cp39-macosx_11_0_arm64.whl (743.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.106-cp39-cp39-macosx_10_12_x86_64.whl (748.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.106-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.106-cp38-cp38-macosx_11_0_arm64.whl (743.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.106-cp38-cp38-macosx_10_12_x86_64.whl (748.2 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7db2683c263e02bf2d1bfa76cbb3bd0e409f74da48fdcc5b3b3fd5624f7eae62
MD5 cfb9b5eaf66ed36601fc97ef894c62a1
BLAKE2b-256 deb9423e53c895048d40db107ec2ef08f89b0d089bf7f8060cfd2b279ea69806

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0dbc1703609be27b7b522950732c1e37c9ddbcfa0d9210b520ee5769257200fa
MD5 563f4cc35d6a9509d098f6679555386f
BLAKE2b-256 8b63c52570af45bf6da05af9e347d7e724493592870fa6691539a06f92aeef07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 388c875de3923023096c79b5158ad02eb1575e73207cdff9927393567f3a1d9a
MD5 6a03a7dee8838a178ebc5d15e57f4172
BLAKE2b-256 a1cc35bf852ee391867d40389d97441fd479c56ac13f5ac8f180b66e1f03711f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0731c58613101b0d6fcaec1ac04e3f176fee23eaca86fefd6bdc52d1840a5967
MD5 6f6b22ccace850b665da482c1e046fe8
BLAKE2b-256 f39c7d60348b567bc5e85f0f92a652f5ca5bb91da976ad2ab9ed208482cd6c66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a6f54e1e5314aeb15c785cfd28c97c4a5a341958e8316c5bda67a9f907ed39b5
MD5 3800025ed6c0c1e5bfe0943b2aafaea8
BLAKE2b-256 8bd0dbcd3eb2f951b52a4a83af57625694a0624f63a32969ba24c96e44ebb446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5410ef1177c9af34533a0d0fc6bb5740972374993584ca05b1ca9400ff17cf37
MD5 d9bec43ae95d301ee47bf3d650a50450
BLAKE2b-256 a5cc44fcef2026b485743d2272df0c5b66b8b90fe8e976d5feda6c73dc711623

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d4a2ebfb89afa6bc5c019d9e42bc3268aa58981c947142348fb45fef7063199
MD5 f60dec144d4796f5216e4741975f3b7d
BLAKE2b-256 88c149b2722b3d265da6e295b089d4848ff451e13053516e141789afd2fe389b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2ad1e5411246dde79b26949edbaf5a8d7d7bb9d790cd1db8afad08d344c4912c
MD5 3f1f0684ad203d593198cb4e85731096
BLAKE2b-256 65ca915f0d80bc96f4d62873f963118548b2fd8b309e4717b837f2c043c3cad0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f7aa5af8208c3e672ac151d39cbd37b2cb8d4f644397699b0929db6a15641af2
MD5 a081a3c2e24098c1ce76d6fd1ba92d99
BLAKE2b-256 223e86fe2c308efc8b1dabf0a4fdeee567e348a01c93a51a4c01b32f402619eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebc4b1bd653735b04389bf865074a417b9f36399adf3f1d09cf5ebef652c8494
MD5 3c9f586f8964ec657c8c4a942c2123fd
BLAKE2b-256 bdfc4735deb1b16a87292c18f3c72da8b77bd7e635d0096464e1dfc45cf89694

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 faefaf073c943bfaa4ec5bfddd5cb628174f4babfec1022948bc5f9da3491f38
MD5 46bbe47ff6465a18bf0e8fa42856945b
BLAKE2b-256 3ed6ddd89af112f71776d3827c421e0520cf1539c3b1181ae6e5ef6dc1b2e376

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aab89c6352bff52a608331f6bf2847d15fa1105432a70dc572a5f8ea58027fdf
MD5 26e6ae6516dd4978352a2bc0b2c659f0
BLAKE2b-256 438499090f7877017668ef957ab5980a6c4587bb15a3ebc7e7d5020550e0e2a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d53c2147da300add933edc0d0eb31b54919f6f9cb5137e966a9de22a6001f2a4
MD5 24bd805a95b40c0b8a2fccdbfab701c1
BLAKE2b-256 1c1dc02aad34a7f7da891c1c1e9dd7ed77c4a556d395d10132da83179f201e5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9c633acc5b818d07bc2b88e9b25ce675cb1add982eb32509868d16494dbd3bb
MD5 15cdb29bc1dbd5568df6f029be19d1a0
BLAKE2b-256 51de86358c92e340babf4222f2016e7483bdaa0b4795370aab0f696701c3c550

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b937ba20af75e6245e228f36eae6b5722620cd02301a7ff9bcdca02ad13c9596
MD5 d6bb4070505a05e6508e2c74d1bc17e0
BLAKE2b-256 6f38abf21d884d63f4b332f5f7c460f1160117d047cf7456aff1df34cbfab528

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e91a11e1caa289f6ee50ba94099e7fc3fa0efd122e60e57ff7dbdfb0b326828c
MD5 ae7e668e8a7b177ee6aaa36a40303d7c
BLAKE2b-256 6de2ed07bbe108bd9f1fb6caba417fc7c34cfcec078c1e90f0e10f0ff65e7ef9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9167474368bf29183d533a0e2fff58424ac5d110ada9a380d32db3e377f906c5
MD5 ac91c8f904d42b50643082c360f05bac
BLAKE2b-256 03c1e19cebe9f63f8654a06871cf312e1404d5a71730c40829ec7312382c72cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9df256156b9429aef34d3e0101f9db6a033642a72b5ac4790e0bd100fb229767
MD5 c85466a0a79e24bd5ff50fa2469afe68
BLAKE2b-256 0ad46b6a82e5fcf0df1b7d0c6e5bffcb841078383ef4f57a694ac84408b6c5e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c48aba19f79f6139342b0071c6a0c4aad6ee9ad43cd65741be106522a21ebaa1
MD5 a10a3dd57d6e24815391b53cae644f87
BLAKE2b-256 8f7aec4e4089917c1c6378db1784dcf80f6919bdde06ceb069ef1c76f81daceb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.106-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6d141ec5cfc15d2ea1cc2af7eae922061d985618888f353529cb4a13d52fb476
MD5 84f22dde6a2f7adaf51da6fdd6cb585a
BLAKE2b-256 7ad15c24b194cd5832a6bf249fe641f84b17f1c9966a78d6a7e07974bb3ce1e2

See more details on using hashes here.

Provenance

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