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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.114-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.114-cp312-cp312-macosx_11_0_arm64.whl (744.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.114-cp312-cp312-macosx_10_12_x86_64.whl (750.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.114-cp311-cp311-win_amd64.whl (636.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.114-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (796.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.114-cp311-cp311-macosx_11_0_arm64.whl (744.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.114-cp311-cp311-macosx_10_12_x86_64.whl (750.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.114-cp310-cp310-win_amd64.whl (636.4 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.114-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.114-cp310-cp310-macosx_11_0_arm64.whl (745.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.114-cp310-cp310-macosx_10_12_x86_64.whl (750.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.114-cp39-cp39-win_amd64.whl (636.2 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.114-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.114-cp39-cp39-macosx_11_0_arm64.whl (745.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.114-cp39-cp39-macosx_10_12_x86_64.whl (750.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.114-cp38-cp38-win_amd64.whl (636.0 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.114-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.114-cp38-cp38-macosx_11_0_arm64.whl (744.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.114-cp38-cp38-macosx_10_12_x86_64.whl (750.1 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7192b0a94998c9ca05d154017a33c2a8f782d9ed42e2bfee2c0b19c5f2a0e0f3
MD5 f31f875f0fc24dcbea0cf695b8c4ad5a
BLAKE2b-256 b1cfba42a372546829fc7bdcd8b73b8cfb154abf0ed160073d656b7d1017217b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c095214bcdd338b424fb2a4fcd5a917b433be228674d367bfab2a6bd024a1cc3
MD5 8dbadc998d3c99f1f8254c5c485a5056
BLAKE2b-256 6d84b5eaa2b66fe2193c27a21b7f10744ee73434a0b9f7071001457d3e88dee6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3915582109e6ac5a70c2ee891d9437cd4e03dce15a68a7c964efdf5848e2f8c8
MD5 6605205c63e4d9171f9c33f4a2450342
BLAKE2b-256 caec6d3ecdecc5d5914dabe65dfebacd576d80d7eacf175d4fb90e5b48b81d2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b20cce2cd2d4e75e73d3fee5acba5e23ffe9539680ea3d0e4202d1ff835036f4
MD5 ea481c086a268827f0dc7f18acd65252
BLAKE2b-256 d9926f0a600ce4b004c81ca0fa9553b292bdca149473dc99b63b19a14b1a547e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d7cfc1cb9821c707fa24a80abb57ebfcc8ae09a8e14328aca4a7df93037b2348
MD5 5eee4a723be9d44d04bd73918dcac279
BLAKE2b-256 102e5309f3d75db7e22b7d03dc0b4241036bc023a9d99d9a10f0f9c367f95a70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 790790b20d55eb36759923a16bdbe543b8c804b79ed179d819e823ed85351314
MD5 a3be32953939834565110a12e418d422
BLAKE2b-256 d5da8305b561785971faca287872b74a7f817d9a9dab81942578d53f94403334

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd6f5034ed5e7d7b68a440e7386512d90006856967e1250b23cec7e99a0eb6e7
MD5 2997cf61ab138f30d37f955d45591d52
BLAKE2b-256 f0e7b4916d6113e6757a037a0f84dd53f9f082c2c969291e65fc8176adfbdd11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1764ea30e1d53bc96fbe45f7065cc2512a510db3d350bbbd5f62962b560cf514
MD5 8e3b12f82ddcf2b5c21423aea55c77de
BLAKE2b-256 ce5db657fd31805d59f8cc3c102f192db02157aaad73b6e01912ce3d7218b062

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 90f6f8a1b7de3baa26a37b66c6c892a2e4cd4898954b084ae0d49b9afdd87850
MD5 e7a12d23d69b303493a428f0152627fb
BLAKE2b-256 92d061ea13278fc3a4c21c2982ba46da5401f8fc08eee50b46544efd52873a74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fbe21591319b55ae3148935219ec7d10f1c000c51ba92fcc7d0a3ec171438c7e
MD5 74588bbfe7de83f3ebcb63ca9b315198
BLAKE2b-256 7dfa79ee61151ed4eef4e9962a74571c407faf16330ec56d4061f0fcdc7acd22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6b5ba4fa483ecd0c0c6863ad4c47839697e611614fb33ac415e53e10ff1f1bd
MD5 a215b2d292dc13df6bbad6ffacb9d2ae
BLAKE2b-256 f66be7575c20bf198ad1f5a4d6a9aa8851bb9284bdecf6888191553af195942d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a0d3220eeaa6e56b8bf9c11841b2f09a87b9e4e4defc35f19f5e50aa20fa314b
MD5 90cbcb631eac5dff7ec150a32e8a7ac1
BLAKE2b-256 88df20d02f1c3d1b98f324ec417856ea7763fb68c9e3f279bac5f6a8838353a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6da13b7e5c2738f2d10c14ecb68039c58c66de9add2b63c20009d22d288f279d
MD5 a704149c955a490da39fcff760e691e0
BLAKE2b-256 b873b58be489042efcd0e728bef5e2eff54a5a8f0c26889bdf8ea5b10864e4ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa48ca241582c63c2da27c99eb778022235e70b17f6345ff7ad9ab495ddca6eb
MD5 77474dd14d38b88297b945cd4e2dab70
BLAKE2b-256 6d626aa09167b355c17d78e266676c3fc23e50a68e390389d40c43749f313405

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ceef0d8e5b58f3b603a74f4385dca8642bdda2b7c6b4cd6f85afab30559c56d2
MD5 37e089b6a18a5fe3b6b58139db411866
BLAKE2b-256 a3f3ab5ad84a67a749f71816408922abc08d3e9679011455bc3202f4a97802ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 91d820f2c156f88f75127d3b063fd747743e1f7cc05f0375ff1f29f5c0755d62
MD5 baa5c22c6c5e7e46c1dfecbc09666a81
BLAKE2b-256 61fdaaa93ff9b53fd17e38982257c23c7a111ee686290e8aac158d066e902032

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 876c03070dafa08cacd49600cd5e782125b024deaed17b14273ab2ce2d284aa4
MD5 f6b7d6d3caa0b6b5d94260681dea3f55
BLAKE2b-256 c88d8585300cce6427c6ee64e3a780193d87a437137c7313bc497f2220d42ce1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84872727cf145fd642c1d23d78d0eade8a6055768ef412340414aa98ca6b9a96
MD5 5835bc341408b308dcd28340813075a7
BLAKE2b-256 50eb8e0e3464b29d09c9a04c32b09103aff232689734cbe09cecda2d6d729626

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2dd8576bb85e9d60e5ad659b97c8053d3c5203aca0293d848698eb5fd89ff6c3
MD5 23589129cdb10f28311e8b00c9e399e3
BLAKE2b-256 7e9dbfbf37586c37ae8bec9d319921c10257fd690f63b0a82225d834fa9f2227

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.114-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5d186b393af213d032e9eea98382a786f87f7a264d4b4d5927173600caf6dcc2
MD5 b3ee1869a8d8350d258b59c9592d7764
BLAKE2b-256 d6fc3a66717d22bace9ee46be0ae937441e552cf0c64ad50f8055980951b8017

See more details on using hashes here.

Provenance

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