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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.93-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.93-cp312-cp312-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.93-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.93-cp311-cp311-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.93-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.93-cp311-cp311-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.93-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.93-cp310-cp310-macosx_11_0_arm64.whl (745.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.93-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.93-cp39-cp39-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.93-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.93-cp39-cp39-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.93-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.93-cp38-cp38-win_amd64.whl (637.1 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.93-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.93-cp38-cp38-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.93-cp38-cp38-macosx_10_12_x86_64.whl (755.4 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 780fbedb9e80d7b834440c67f63ce704115872a69aef7410d6c5aeaea16311b5
MD5 df850bfa8142077bf1b96c16df3ea4d8
BLAKE2b-256 637f24588b0cfee47e8eb94cbf79d78a96084cfcc298cba68d20e58aabf638c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00f92aa82ebe427c64b643ef89e45f4bd1479a87d44b2b7466d83c487f3c2ee1
MD5 8ea239255be478cf3368f9ab48067e53
BLAKE2b-256 c574fd9277ed8cc739a1506a67bbf672989c20d6c215882b29fb15f781c1e49c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6adc855cad11f2b5724b11d8d3c7547e551f7e2195ec3e0f3c8148cc383604db
MD5 b264c605276c61e312765f838d23683b
BLAKE2b-256 32816d88c99e69df09d05249c5cbeebc4c77df3d29c5c9cb788753266712f026

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3fc9b97ff70bbe189d409be0acbf5c3ecea3005d986ec69325b6be85108f321a
MD5 a4e650c667c3be52273a93862a4f1f14
BLAKE2b-256 de6d48d4a56d2cf34bd7d9cb2550389fb6d93b9e507f613be980a49383f27541

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cb5e29ccf7ab492bc25c0d16347995b51a4a77edc5bf5b1bb026eeb98f5d16d0
MD5 a01f39f9432153bf8ae2fa1b14f2e6f5
BLAKE2b-256 02ed4748feb55fb68e7e2b2e73a5a82545705e3ff20f9bf3ce877f88def390bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4345335dae00e644eacc04f9b05dea265d057628dcae80d3f704e9c26ec5e18e
MD5 0aa807a853f60d89c64f087b3a812b16
BLAKE2b-256 ac81157fabb1d3c670d02ce275da45fc0a1281389e58e7b84cb5d580b221f86b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4bfc357b2aff2ad301e6c45ae44ff2d9b1d5840a88a201a20c60d3107dc5bd2
MD5 9cc3b10160bbeafdf71652ed7ac22cef
BLAKE2b-256 5207358b14fb02b7754840e33ad84445b475cad0adcac6277d7de735ca03c647

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4b1a9381b13caeed0b16dc1c32d91bc394dde69f2e731acfe08693c02f95e37b
MD5 cc8e97755a929a3623787fddebdc5dc2
BLAKE2b-256 8fbbafbc785317c255cca470f387b5a585a74fd813e6994dea4c63759d73e832

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 05fb874699ca4ebb145ef207781184de356fbfbcb261e18417f29efad3dff336
MD5 469bf8873b16d5dced624edcd0b5429f
BLAKE2b-256 75f2d9eb68a51e54559c1c0e00e2d5f7c14e39b9b3bf179092762bd24acaa9e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17933ba0b3f78fc5b75fd92d41ed290bae1c5a7322066113ee52a2bc184eaed0
MD5 d2509988e1af557b2f14d6bca6179c79
BLAKE2b-256 a22b873b5eab5a3fa38eb9c73c5af449a954b5fde674fbc8a36b23b1518d07ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac0d4434a68293e92ece6070855eedebbf889824f4aa9bcd851bf3bf27d84e9e
MD5 ab20c725edd0946a3af25a4ba5378cb4
BLAKE2b-256 ded2f9a58bb91f2599c5ec82fecb4243f51a6074a1bb322b449df35a72f45fce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca37c613ebc7c2d12001ad6d8b1c3e009c62bf6a3c24b02ed0b26f9764ebb532
MD5 a4b2eb119aafcf156dd3d6f5c1bae08a
BLAKE2b-256 6c88309ee03a0132f63f41d7ea27d1727bfc27f57244c3e060de3d1b255cb163

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d48bc3b4be0a85ba0998b94a53fea4060c54e2804ca50aaeccaaad53539ec5f3
MD5 491b78b5a653c028eae3a758750bbeb2
BLAKE2b-256 352bb380fb434110df9bb2d378c2825dea3fde8f1d7d683c1c13c9f0ddc53dc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f44e89c5127e4db15929dbdf277f700551cb601de8d4b83169ef8ab6bc129b42
MD5 5591c22e7a07b4833d4496b14b795eb8
BLAKE2b-256 6337123cd234dc1bd72741072244455fc32db76f2f2cfe0fa38c2614ed09d81e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddd12c5c070694f86aaca0a4a56e08088b65d5da8cf2fc2ef58cbc727c355797
MD5 484e35d0c48a899b8e84d13c7e42fee1
BLAKE2b-256 bd042b0cf974ce08c0127f5414d5b46611bf4f74cea3d71ac9daa80007246748

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5b497f26e6acaa92d385acc93fd05757bc60c0104e850dbeee48258075e352ab
MD5 5bc15247caebeb5cb8e3f11502c4e981
BLAKE2b-256 28ac35efbae4efd3fe8cd3ab91bfbf04ef9f5927d6e79db9663c2b95fe5f354e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 32d7e819630921ac78492f03a685c077780377ee67a8fb936e794432b1e57c48
MD5 abef53e1b52787a61d84b133b593ca97
BLAKE2b-256 922f18ccfafa10b41b4555b3bd27a29f238bed883c63fcc1e27a3119ae7254f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 beb09a2e37452b425d63e10dd84793b196d9448ddc60943db96f686c3484ef35
MD5 242e93420d237d0df798bcf48324a9cd
BLAKE2b-256 88146d8ba13125a87b6eb4f9fd9c222827685b2de2ba29df20b85385b0a2671b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ca2b6c6f36a49a2a9bba3e40e7f89afa77ceede2e3b38c502946cc4423a50b6
MD5 9c6d91b9944a7bd5f7e5b29ae8f08dac
BLAKE2b-256 d6450860b0fd0b4aa4c4749b29b761e313906ac7a61547a0a18a67b8c37a44f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.93-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ff1565534e1bb39a4817e81112a97f0c7d29ca091e4a9c682007a75f6560cfb
MD5 79f34ce292eb45c485c3534eaf8df815
BLAKE2b-256 2e78a0ca01815362320216fc9c5520b7e356d431c907ed2753c0b7154838e165

See more details on using hashes here.

Provenance

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