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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.97-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (795.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.97-cp312-cp312-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.97-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.97-cp311-cp311-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.97-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.97-cp311-cp311-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.97-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.97-cp310-cp310-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.97-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.97-cp39-cp39-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.97-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.97-cp38-cp38-win_amd64.whl (637.0 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.97-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.97-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4c85511b8d5e237ac407357a4b5fe6297c24abe1c5f434efe4d79b0b58040c42
MD5 3177bc718b757ec446db0af71b492318
BLAKE2b-256 65aaa0ad7681819107996c6e941dfc0fcf1147c3e6d9d6444320438001f901e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b3458cf0df78aa390b6114627cc6e74697581bbd4dd488858d8c096a5e01298
MD5 669bdf3337041c5e18a107437c2213da
BLAKE2b-256 52a65ce706e9637866955499944bfd9ac89d7891528bbd40835f1b62a227907b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1f73409f24578f549bcaa773d194886fdcbc9ae7068316494ee3643ada43cbb
MD5 5c6140349826adab6c1ef30845c8438d
BLAKE2b-256 da1419438b6f6a787d4d40b27e0af745bbf47406283ac700b4db566933e60eb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c3723d946bcfc045258d859dcbadd4213314777cbe3700a256c4c5b291487305
MD5 9d06ffe07020baad4b35866dfb4edffd
BLAKE2b-256 48a724ee74bff3344747cb0d70ba452beb98d6aa71af2eec01b2098ee076b558

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dbc307539858fb462bd8f495c42ec32d658239aeda585f78fcadd49e1bfd6586
MD5 3a5eb198d27bdab98a29a46212602641
BLAKE2b-256 21ef2c9432a4eec8bbb8e8172b9fc182d45a919bcfc546501599df8b0d999bf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 781cbd73f585bffd7f897a349c07533d74f8c92dba88314550252c64492f650b
MD5 ce017512546a0b87858fff75e89a2536
BLAKE2b-256 6efd426a424f099d4c2861630ca67f8705d23de0afbae653a562d072df142e72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eccc09c958dce3011e90eadc2665f5bd2bd4982fb7da2a001d69f7e9568460d1
MD5 0748854f6b8a617f93a7d27912ba4b97
BLAKE2b-256 21a154cf715e473eca51b0744ec301b0956092156357ace7c911b3fc97677f62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3f9a50c4711841423a41f5f9fc521b39261cda13e15a8be14e9df5ba47dfe930
MD5 1b2dd13d0b0b39d7cf913300340eb4b0
BLAKE2b-256 4f0f0e138858eb55f7fd6c2e72789c536267ea2b7cc45eb47a53151ab6484e4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 80915c1917f5dfbff840a73877aa32e1dbd67d9abb494bd8d7ff6166fe2c3b7c
MD5 63acac2fa748cada6563fdc2892ddb99
BLAKE2b-256 e07c330e205a76032749bcfaedd850c9419ca351b5b3f0b4c6306d0ec995601e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d388d7bfca0ee121de831ed65eebb818be4d2e0c8b5d4bb532a10ce48cbe6568
MD5 fd3c7b19e48c3bda56fc44862f8d9a05
BLAKE2b-256 853e09af661b6fa5f1abe23762f7d34cb14ec0f905be14dd26dd8b1c0c6af4aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c673948593f78c50521ae1e9a423065fd2882b1e0f908cbb122810942322bd81
MD5 1e4350520e7b1667f2cab22ab95287b2
BLAKE2b-256 4690c51adde6694a44dd40faabb5917950f9212e5357928c7e049dfed87b18fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3e31da033d05a91885041bfb06b9b0aa0e97754fea4eed75314a6e28a6c07967
MD5 06fdb1a3ba754c5f0003d8910645d7b5
BLAKE2b-256 bcaaba3593d9a2b2bf883140315288d5e70ecb44668885bc70ee9deabb1acd36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e10451346341fd21302317a4aa39c73b63a64c21017dc23f5ea7f4aaca87ba63
MD5 0df9555390c01870f2f2a3e45443368f
BLAKE2b-256 464d9e8304da94750cbc330da6eac5140f60a03892f89c4b044e97712cdacd2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f73825d01e989f61990738b29ac1ec91748b7cd7cb94a04838ae872b8a5006c8
MD5 95d4d0c3894b85e0176dc4b15c422723
BLAKE2b-256 48460d40b7cffc9291655eee79cf8c468bff3db8c464264fd5f64bf1037b138a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a810af8f1e17ba93f8283080a86d14477d7f11e816fd0a76abb6e3af3c1fe3ae
MD5 56cd581510fb55dfb629a9434e755e33
BLAKE2b-256 6785aa7277f9e2d907306851315e1094e9feaa66355a255b4eb16c9754da3a02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a199d3015d4fc9ffcebedfeca1e90c8bf6bf81b5e87c7aee4efe70d47bd54324
MD5 c734edc8591f51b98f5c45c0e68c6b7d
BLAKE2b-256 a72802aa85af1a42fa9794144074730e77682d8d09b18d6ae1fe785cc0b8a8dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7fddb98710e273b20fd63065bb7471766813d0fcb458f2ff6436a69c8a7966dc
MD5 dc2e5b6718e621a3979f1be5b288d434
BLAKE2b-256 e90fcaf12db4659133f187bcd2882f64bc8593b1f0edd08fe601283842a11dd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d8a7def9c2fcd2aaaaf6e268b143c39eceb138a6f935407ed8d4f7aa79e8ae4
MD5 7a41908e91485f90ea75bbaed0f60d35
BLAKE2b-256 eb6e05073803ca62b81ed632ce914b79e505e13b6db72888b8f046bbac243136

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ee1fd3e3301e329a2a1927d6994a7302a13a96522a64abe8caca6bb8c70a56e
MD5 2e1ac578980c7b597146c29951773f93
BLAKE2b-256 3dcb3a1995ebc87b75ca742d2d8e2c67162b2e46386048ae913fc9be37981e85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.97-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 19dd959754d1091bb292907d434bc5e2b1824c6b32164fd4f44647435cb75b43
MD5 da451a9087f419b510a8949d814de744
BLAKE2b-256 5f4fd82617d544a9425426c732afdde65f060f2ee8530fb3296dbfd62680fef4

See more details on using hashes here.

Provenance

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