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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.90-cp312-cp312-macosx_10_12_x86_64.whl (755.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.90-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (801.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.90-cp311-cp311-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.90-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.90-cp310-cp310-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.90-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (801.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.90-cp310-cp310-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.90-cp310-cp310-macosx_10_12_x86_64.whl (755.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.90-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (801.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.90-cp39-cp39-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.90-cp39-cp39-macosx_10_12_x86_64.whl (755.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.90-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.90-cp38-cp38-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.90-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.90-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7b50f0089ba87b0776304a4efdb4cf6e8c896e0272f26e81fcd9e2f1932f433b
MD5 2970b4332303068d4c3da142e09b2f45
BLAKE2b-256 e98fc85d9272e54ad7af71fc1c248bc3e1e9bef6ae6994e9c51639c5bf87d260

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b54370db74e97265f3baf2ca5e3dfde601c2f71c7ae4899a9eeeb03e39e4187
MD5 3972816e871b45bfd3b42569e26adc9c
BLAKE2b-256 be2eab9ca2c84ba80e3c6f64c44759051706a8ba4f8ee918c318f3df720aa608

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3eb8d0a0ddebdcf82adbd614979adda8c6c3dd5ae8942603e15a286ac810bf7
MD5 f65a42cd5c5c13dadf44dfe57490eebc
BLAKE2b-256 65cc8c56460868d9b22fd3e7e0c425796b575598cf67728b7725087ec44493fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 204a1b28024cb3d110a021b1a0fe6c7b5406c534eca1164626e5a079a54687d7
MD5 589fe31ccdc0518bafcf3d5003e483fc
BLAKE2b-256 5b47cbc25527f29f35f1e66714cd6676ad50ddae85012ff7a3f3d9fc88b05b66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b2e1bf97df5a3c3db5ef13a116b302a7958a2e0b0ceb6b546d85284a9c1081b4
MD5 90874a39b8340d699b66ca3407f8ab78
BLAKE2b-256 86084ad00d8ddc369df4f6c3c36b5c4f56ffb53cb99ba33ff7316a6a7b58d0fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8ad3fb75576cb3c8a1b1e01a9cf5a31b33d308029876584364601121ff424d3
MD5 b71ca1029e89647c8011e3653a579c41
BLAKE2b-256 58242a48a7f09f0ef0e95ad99e14967e5d57e51310bce9377f197fdd3d6c0372

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c780a56884948dca4cfc47af6761d29bac800cb2c20256c07f789ea716655eb6
MD5 ff40afac089b4db40923e4ca1182bf05
BLAKE2b-256 0ad453197877b12d8d357ebd0b79f55dca711f32ac5be6a475804198990c0abc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7335315d14523e49cf286f938b2128f7934eb6d2c5d74c320ffbfc14fe5793b6
MD5 7cdb17d4d3955fdd02f6524134fd2425
BLAKE2b-256 ca225c7955cb1c6a74ae67e0f6ead9b41074302e295aaeba7751d85ef65ec4c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0dae4ea2e3b0da7029f8e136101d815c6981c832cfd56f35871b842bcd5944bc
MD5 26d5e6a8155b2943d31d9f89e07609dc
BLAKE2b-256 570ce9c93a969753e37ef2a455d5560bc32ebe2fe05e80fbcd170b0d224e646f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77173867bed4a709d3569ee11a1dea7da5ef63acc15b1e705c671c231812ce00
MD5 7f508afcf12a1e872482b54f6aaebeaa
BLAKE2b-256 2d86557301b4eec4a07ab9dd5fc6047c3aa91cfd5fdd34aef4840d2766765acd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c62b3086c3af00ca26f1273061c3301f579672fb104f677970878fe85839aa8
MD5 e4157dd1898555c5b0e1a46829ea8d72
BLAKE2b-256 6f6f4ff15c275e6c4c731e1a1307b3d3cc37d9c67b3d3171fe8d7dacecb0b444

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cebf005f939236e855101798298602de235a35af9f83c125b7bfa10de05d5336
MD5 f09371041ee6813d0c77124382ea61a3
BLAKE2b-256 951a797b453a0d8baf31a7053dc86a91f5b780b3cd88f0e74c5923a46b0ef5aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b671d694a1e2d1cca19918f9afd0141a10285ab8620e3ea11fe83f4bda35bc31
MD5 914e08fbfac9f9fd71aea724d9422d14
BLAKE2b-256 f6243a21588858fb536f2f7dd000bd015765d5d64d31b7d1c1b1acf65d004a84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05451be9aa970433f340a78661bf61d604da8cad97ed1f9cab1b3f74a29fbd32
MD5 ffd6b6bff3f6ef343acdf60c796bed9f
BLAKE2b-256 efe07980229b653ddcd344d7eb8259db313efd72157fe7400b5af615c063444f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5e1babfc74dbafe0aa064722efca0f5381fe021a7be83dd531e585bf3bdc468
MD5 b26b1aca4b111b76668abaac06370cea
BLAKE2b-256 2286742bdaad49ee2f7a7f957c8d875e1baf4a8b83c485fd30d6aa4b48dfc84c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 af8bddab954c6c10981a766998a9926c9c7f8cc94469e64c480bb1a208956b47
MD5 14680745db8e288a44fd9f123503f585
BLAKE2b-256 d500df1cb3863d0597388c9a9195c60f4839c4d906529469a574e5ca9f230cfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bd393f7a5cd98410023c7cc8cd27f5b4fad7cbfe0bb2f669d2d1e6beef145775
MD5 a5bdb2cd984b0ac87922215df9bcd86c
BLAKE2b-256 51bcc04a427818871ac05c1179a65ad5cd8c7552936a8bcd4e8803d737883ec6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a08ec4366b86c6d67630ff4ced5459d7393426c1801195926792c9c5dbfaa926
MD5 dd79dc4a505034bcdbd39be9c608ae1e
BLAKE2b-256 ecad271a9dfbb81058ee787a94644441f3331be4bd3f951425a2df1a8218ea3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b7764b12c6d62a2ac2ce057a2431e2d2044d0efaab4f534cfb08bc4ce9b02ff
MD5 34bf54b37c5b91f69e22310dedad8916
BLAKE2b-256 200e1d8291336fe76893d5ad91418792dd67447c9ddaff93a72118500c2d803d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.90-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8fe86a2a644cacde8defb6964ba78dfcf7aa709f4b5757c163c4d0308335617f
MD5 85be03bffdec682e1eeb0a59de883f2f
BLAKE2b-256 15bb42af8dbb1390bc32182771b6408162f2790a2658f38ddc9f139e65352f3f

See more details on using hashes here.

Provenance

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