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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.62-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.62-cp312-cp312-macosx_11_0_arm64.whl (747.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.62-cp312-cp312-macosx_10_12_x86_64.whl (756.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.62-cp311-cp311-win_amd64.whl (638.8 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.62-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.62-cp311-cp311-macosx_11_0_arm64.whl (747.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.62-cp311-cp311-macosx_10_12_x86_64.whl (756.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.62-cp310-cp310-win_amd64.whl (638.9 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.62-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.62-cp310-cp310-macosx_11_0_arm64.whl (748.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.62-cp310-cp310-macosx_10_12_x86_64.whl (756.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.62-cp39-cp39-win_amd64.whl (638.8 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.62-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.62-cp39-cp39-macosx_11_0_arm64.whl (748.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.62-cp39-cp39-macosx_10_12_x86_64.whl (756.7 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.62-cp38-cp38-win_amd64.whl (638.5 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.62-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.62-cp38-cp38-macosx_11_0_arm64.whl (747.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.62-cp38-cp38-macosx_10_12_x86_64.whl (756.6 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 71a57528cfabf3f1143fc747df7298d67c381235bdf7f23298385fbd413ffda8
MD5 b41b06bb81a80daeb446e086d9c0d1d4
BLAKE2b-256 835c066d0f4780df0c0a1dc5f7f4deef7971fe8cbec52eda64612382135f2e4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0ab878d63967f96ed9c7d02d97a5ae62247527ed36ca1be5606ec2aeba2528c
MD5 f6dd9f448941b45bb3e061ff6e06799e
BLAKE2b-256 bc95246e81bd21c1ab0870ae541d6d7ed79f5f135d57decab7b186ee9a67c14e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43edc201a431a9eda5ec3e35f23477a04b530973bcfe812c74bcd462286e3960
MD5 838e14babcc1cb2a455a686c4a093b38
BLAKE2b-256 6eb81cd7d18451af024e69a417c3991299fc7b2abed6ed8caf2bcc38a5315509

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 888b57d5909aa2436187cdffcececabd767dabfe87acfb45ffc9006729a26984
MD5 e34781da42118d547e928283f2982373
BLAKE2b-256 45b9796e0a4088793062246b09cd696264367ed9367a131f4a85c2eb1e4129ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 757d039207111f99ebddc31e4ae01c7526eaf07279d6b3286ab5c5a4e9459423
MD5 be7d8db334363f9c0be9c4ff56a9f634
BLAKE2b-256 34ad8f2c77cf77e091341bcd04c241c6a7530689c50f26464a0a4f41d0b86006

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e73f200a28b888b9f328c3305f15b87af9c38b5043286063e5a324add5f979f
MD5 17dad0a19891b637338549aa5a73f6b8
BLAKE2b-256 9bf9d29f1c0d66db2548af3af1abb7393a0b601505f491bf76bf97a07b41e4e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbfa2b8cc106b729efd9da5403cdd03e4957712259f2af2454e845125e6925e6
MD5 76511dd957c4a383cba78fe1fa0cebee
BLAKE2b-256 cb8c114dde81f69e69c6c1a2e7c714620d02b86b566a39992c1902786590cd8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5226ea8cc22e8678b7dfad21951b9e7a015e93635647d39194c6bc8bd4cd7235
MD5 ffe4c44243095f8400b35884702b7f4e
BLAKE2b-256 2e7b0ca0a7caaee81928f5539e44b580f0601bd9f884234859f0d9beb8b6b75a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3a274ca1efe9e2677298ae7d88e11e2d0997758979e9c472ee0ea7aedc8fe474
MD5 d775e7aac0e2c7e0cc6dadd7227ee448
BLAKE2b-256 2ebde48c52dacf5f4fd05996cf16cd499165cf16c92ff68b829acd4a1cbdf711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f46690b19667e3a100e519a4a0c5fb8c0b4be704e8c9bef80b89dc687184bda
MD5 a90d91881189b1a4b2104eabd7da1ea2
BLAKE2b-256 6416c14ad3ed3c43e5b2f54599ed2ffa3a5422b8249deef98ffe54730a337b0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b410d361c1aa09c5ce3f786772f335c77bdadd71149dfc49fb0074ea09f383d
MD5 396a4b99c09a5b040a81b79fff46e451
BLAKE2b-256 a0882069e6949ee5480edcf57395dda1adc40dc69ba7f774366daf8a909122b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f7c198e24ff83905e39378c770cdca27e48234738d16e4e59c59c37593a1360b
MD5 31bf1cded70e5f3193a8c819e21d211f
BLAKE2b-256 ced840f6bad1bfc115c5fa6fbaa936ae8f73aeed24201bb53a3c1e08707089ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 aa4cfcd7b443fe3fb69746434a6e672c179a1ce24fae6378f9652cb910e168f7
MD5 31b6ac2aac72b913e8aed4249acaca0e
BLAKE2b-256 26391c36b609456369738fd632a8d5ca30419a891387edd79d990c1c52795e3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6c5e2cd104d77fefa1424cc3b9920abaad46cd8f50ef3a240efd01047429741
MD5 156bd8f4b35401f0f5fccd58c3697052
BLAKE2b-256 d64554bc6d05976a793afdfa278cc05c474334986d66939d56e5d5cb77d96590

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1818552634e1729997c0331df9df1d21bae3f5f062290ba5dc93d5b90719f8b
MD5 73e484bc5e7298cca5e7529fbe2a7fcc
BLAKE2b-256 2e8b2ebb18cc501c871267f81526c9464b23b2f39ed41663e283d42921eaaf91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d17c9ffaf2f2193533715a52638b74a3504448b0298af6cf58ca056833df2d7f
MD5 73f58f0666250d3b78083d7e3e42d698
BLAKE2b-256 d391f48926d48fe9f8be205f98a931c28e0c40e2c7f55f1a917ceb3d1cf6dd68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 41fb872d495942ce3dd802fe2976fce2ce2c06907579be9e4176a11d325cc31e
MD5 58f06a4cab98bcb9efa2cb498a22eb6d
BLAKE2b-256 063279799e9ce601fe9a6c068fa4c1d7867d5eec8fecef94d44379255a7af07d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 889cdd13941ff96f98e1df1c59f42409fa22545f1c08c56f7f26c829eed6d1e3
MD5 2a5c948c5e246f9562fc5dbb2b055f94
BLAKE2b-256 0cb580fd2e037eb12d658ba3b5218bc50e34a1811bda34b2a279c8195a2df35c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5334f44d319c21ab12e912c0218c470decd36be3b0e263be493862bca9969a9
MD5 8ada5c69d055fbfff8c739ad1e6ca53a
BLAKE2b-256 ec006f7407ce692234ff3b5d8c69113131060d03907f152812c8b5098993f40e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.62-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e2d698c8a246dc1285ddbf10badfbf775e90b5748d27509b1ac0a674013a75c2
MD5 9901d1b6933091b1c30b35811d209dc5
BLAKE2b-256 f4876ba4c006908b815c9fe8aeeef9effd1e4034a46d2bac982b0e1a00d0eaa5

See more details on using hashes here.

Provenance

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