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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.119-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.119-cp312-cp312-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.119-cp312-cp312-macosx_10_12_x86_64.whl (750.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.119-cp311-cp311-win_amd64.whl (637.2 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.119-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.119-cp311-cp311-macosx_11_0_arm64.whl (745.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.119-cp311-cp311-macosx_10_12_x86_64.whl (750.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.119-cp310-cp310-win_amd64.whl (637.2 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.119-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.119-cp310-cp310-macosx_11_0_arm64.whl (746.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.119-cp310-cp310-macosx_10_12_x86_64.whl (750.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.119-cp39-cp39-win_amd64.whl (637.1 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.119-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.119-cp39-cp39-macosx_11_0_arm64.whl (745.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.119-cp39-cp39-macosx_10_12_x86_64.whl (750.8 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.119-cp38-cp38-win_amd64.whl (637.1 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.119-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.119-cp38-cp38-macosx_11_0_arm64.whl (745.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.119-cp38-cp38-macosx_10_12_x86_64.whl (750.3 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e82bb6c047a2544bc01794aa6e82a8e0caadd291dbe0a78296493afd7f917ebd
MD5 e2f789be550686b0bf3573978cc5a57c
BLAKE2b-256 6dae640ac17d156695d79536990247d5c72b4372928d366046feb40631a16611

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e925d6bccd2489a251a61c2d648a33289c9fbceb5cd927df479a1fa70667fa57
MD5 21f088208eff3acb45e8b0b585a38877
BLAKE2b-256 81673ed0136fc48d8acb86c43fc3b5329c0a9bcd4c9fccc13d92ea41276e656f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7780ba3192f48932930fc423d9f52f03acb92d415884b550a40ebfec6d2ce783
MD5 6f16a0c6417e7c6f089173f51bdb7813
BLAKE2b-256 8d7a7f8eb21b4726021ae3d2cd3419627400dd94d2828455595a9870596f7059

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ff92edabcb79d16e9cb6b05500dcadc59c30dc4ca4a2372895d76aaf5942409
MD5 5cd1b9b7da3533fb018f74b910caad1b
BLAKE2b-256 bf0f07de136c5c3fe1610cbf7e9c091b8290ae747529b251400fc3aa5976eee0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 054cd4c78df9960003ac5aa2766362bb8b1d3f9f890b93dbe8666deaf89f7bd5
MD5 b0cc2b3b1f69ba815765c24f1a79d447
BLAKE2b-256 145b4e97eacc62e4667e484b0351652cfaf8fdbee2b9d42607bb887159f1429d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9d3f703a7be1539a2cc72236c98949ef86395e516df0911005984e036b307fa
MD5 e69d953180540c4975662e9dec4a1cf1
BLAKE2b-256 685a14037426ac81b684a30455bd1a915efa1d1e2cb9e00ab0bedb40261671e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 547b955106936aa66460ef6cda5a74c659d1e7371160cca861b5519e581e155f
MD5 1dad8e7080fcc5967193c09d50a4ebe8
BLAKE2b-256 9675284a2f27512133b99a3df90f5ba434fcc30fbcceb1fe87b9d58131c3f7f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 210d7c86135e04accc894c514c5ac8a3155ec87f27a950419e90313d43f757c3
MD5 ad6f865fac4b0dc627694f6f4260c2d3
BLAKE2b-256 5eaabdc467862ea900c9dd2d0b3e28e871daf14380cc2679b5a78407c4ae4f7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2a104b73a1c86648605a2c424abbb4599523a4d148538b931ed46bba23d8a948
MD5 91cf9cff13cd6cb0b214d0a729ad2086
BLAKE2b-256 299aff7ea4d726063c493f5c58d8954d19e1dfbd606038aeab076006f22a0882

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d067a57329c10ba5bae0daf008f49289b55428e363636e7438bc947cf25a7a5
MD5 7735013c812422cae83511c106fb6d8a
BLAKE2b-256 e5f16354a8db36ed50a67f67ebf6e8b84e81563a2a6272b8fa2d1924e49399fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d458e414c55e3f7b76f427b4e945137a756246cf5280ea5427042e3afa6d03de
MD5 505ce74b25c7b981b0ea987b15254f54
BLAKE2b-256 85f84ff1179e8acda4a4e987c6ff7582a9ac0d7adf4d62de405846dfe98650d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3c469f34cfca1ed3289f9e28ad4d4f732a2d719ca32638639de3be3efed0fe7d
MD5 3030138403e4081dc66a83bd3215a83d
BLAKE2b-256 a9663e90b26bc9a877863cc674fce76dd801da67dc90117e5f9400081068ea42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3218dcf1dcd2b8bef12a11cf7ceddad7757c3e266c7f8f54c47499fcdda13653
MD5 5fd03ab97b04727556858a7abc001a52
BLAKE2b-256 8b06a28a6fdb325c988355b29e6dcf5159aceca3478b2e5e2917abc03767d184

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1a215f693a87de2d0b285f834106e61783608d25d95c8fac3a4332917322b5e
MD5 516ba3e77d9c1040728933af943f015b
BLAKE2b-256 ffbe10e5435374e1c981381576d7941521ab2d73b743f29b200195f71e6b8668

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c655775ae1d1022e0e094b53957cf8e06a9bdc3299bed92576c66bf7a884217
MD5 36b7f5c0e93d4d5e9ae4330387d561c1
BLAKE2b-256 5dbf050c95a2c16424706250b5e4f5fd3b03fc26351d95437d5726882702fb2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a29531421dd4b5647ae0d4ab705bd8029b0141e57490536e24e9028efbee8bbe
MD5 453171fb778727c8c9f8f4a85c8633ef
BLAKE2b-256 c58b314d69fa7970aaa12ee528703bcd48379ebafe3caaa38380fc631bd14f84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7db7e3bfe0b6b6c550b716eef0a59c6a2851a2cc8ee0dfdc3b2048613ea9cc16
MD5 51da7880c50917197720abeff4bd311a
BLAKE2b-256 62680be0048ac35d2f32bff8021e48bdacbfa3b8cc1b7de8014cc38864873cc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cbc07c142ad0791ad56929b75cee7ceca234143dc2282cd262e3608cea10fd1
MD5 3a1127e57e6c61ed6d3e32e193a3b568
BLAKE2b-256 d3645525bf2eca9cff5fbcae7420d87b7c44042f75e3285566227ff81ff11742

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed02ad68a39b52a8e64ee58d096c063602131e76a4d1902ad10a6b0303a4a64d
MD5 bfb17bd24f69f8e55b36e124ae18a110
BLAKE2b-256 6ad4b0de864ba00aeef90e04e3f852bba149c66d9dca13c78bc6d29b4457face

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.119-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 31584a314f7377b0f4cd358cc40801c31366d87d7184afdc31e2ed8c1c913d34
MD5 94c899d52866174f96f20a4e11d30ae4
BLAKE2b-256 78bd707763a29323a6d330c5deeb5669956afea4df663acb74887971a98c2b01

See more details on using hashes here.

Provenance

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