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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.79-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.79-cp312-cp312-macosx_11_0_arm64.whl (745.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.79-cp312-cp312-macosx_10_12_x86_64.whl (754.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.79-cp311-cp311-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.79-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.79-cp311-cp311-macosx_11_0_arm64.whl (745.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.79-cp311-cp311-macosx_10_12_x86_64.whl (754.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.79-cp310-cp310-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.79-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.79-cp310-cp310-macosx_10_12_x86_64.whl (754.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.79-cp39-cp39-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.79-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.79-cp39-cp39-macosx_11_0_arm64.whl (745.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.79-cp39-cp39-macosx_10_12_x86_64.whl (754.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.79-cp38-cp38-win_amd64.whl (636.6 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.79-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.79-cp38-cp38-macosx_11_0_arm64.whl (745.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.79-cp38-cp38-macosx_10_12_x86_64.whl (754.5 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0efd54d32c3e3b3e2fb5bc00652854fd396d288bb01ca48cded5c761e858ddd1
MD5 3eca22261b7443a4eb7bdec92c4045f6
BLAKE2b-256 92be84d2458a31a528a35ddbbe087763ef1c5cdcc2d462e5d811e1a57c81659f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41b638bab84eb1e28d86e3a16c12118af2abc4cf2bebc42683de5894f9b9eba1
MD5 af08f974729cb79b285b5dcf605dae43
BLAKE2b-256 81ff2e209029a098e9346066560846223160449b3b006a1bad06c2b7703add59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc419e8da9c81190e4dbca9de9176aa5876c6c843f2dbf850525bf7240f57853
MD5 e9e86f7f3dc90881af7da0182b63075f
BLAKE2b-256 77da6ba78b430b986a7779bc952c2954c4a8dfdbb5df13e49ca9328e02e42555

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec941fe4fe3a5bb6c02b830cd0937d9adb943fc42717a3afe1313ec89fbd784d
MD5 04b90cefc11c7cd12a9d638fc8363c19
BLAKE2b-256 01f7616f20f5bcb129eb10a21afeba54bf3dbd7d6076073a0f001a7128e18319

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 069ca2f717b4d322ae3e526a200f4bd0a382c6ee3274d68e4e359482f4100951
MD5 f05ee1567c71e2b97c1294712b82c933
BLAKE2b-256 a426cfb72d73d16ce51852e01d545b88cdf054f9100db0184613ee1c05aa6bfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f77826e502d5155791a438561a3560a00675557835044de6e9f505c96601658d
MD5 d00578112b18f4c86b78ca05f9dc1186
BLAKE2b-256 766cc16f694422f1af371c0a684b37376b46af695308bd3c93ff7db0e5b867a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54f634988bedd4f5024282729ed4778cbccf3c56d4534876b8ea5ac49953c22d
MD5 92728167db8bd53d7aacb3bed3e5d151
BLAKE2b-256 c30acd80ea5b58a3757947bdaeeb53148b060a9a691bdc50fb2ccaa87b56c29c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c13689ef2c4dcbc80fa610e3a9b6f41675d001663d5056f2c393cfbc89fd6ed0
MD5 a61ddbdd7f1003859992d2027f937469
BLAKE2b-256 501b0fbabd8278a08185d4f6c30f063a54a0002ff7e146400e0d668e79a3d3d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 56bb7d2f87b287fe41d2f91a3a263cee6eaa2212892bf57fd0dd25b7ec3358cc
MD5 7afee5a2e47ac27a85c572a72ddd23cb
BLAKE2b-256 ff6caa5ad13c89ceb386bb6d2ee9fd3016a6af8727a31dea742be54285c9df5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e870cd06563b011d87fc4d09dd69268e1cac3f844ce68e17c872c6964f30d58
MD5 59796604092407d415003f584021395a
BLAKE2b-256 92aa1ed5a8347a46158270d18dbe6076d067191004545545b0effa4cf14c01b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a89e4419342bd1215525b8a309c3b5723c914d77b17456566c2ed2b517645083
MD5 c134e1f7d3630b656ef585097f3c68d5
BLAKE2b-256 09da3ca9fa3bdc24bf24f16d00f4f539c0723d9d7d9c8d7c609422b369169c3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d2c1962dcd7e1b2c8592f68959ebcec900acbab56ec2aa8bde021f2d5ceb610
MD5 43f0435dbf7d4279ec21df6ea7b39fe5
BLAKE2b-256 01e362bbe0954c65ac85e92f39c559efd3836903c66a34b25bd10fd744f38ac5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c02e4892764f7616055bb8f22cc483a397a6c59638f19f79c6a10979136addc5
MD5 8f866ed7058553c9c8748a5e6851010e
BLAKE2b-256 15dd9f8eb1ce38ff2c9484fd43cc8bdb8d9e854d39f1dd4f48234d7d65e74993

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3be7cfd2343baf0a0b767b55e47d71acad4b4ee5b128e0ebddca7d99d73f8c6a
MD5 61287e3203b612462f1aa004b1c1d6e5
BLAKE2b-256 be06385eb58ecf297f9572d437b57fc38c6f6a49ffb6a2285cc5366c37bb0d02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80a3f1208afdd3dd2f3742aa87a80c9d9963c65111788a412870da0884e13b15
MD5 797b7eff283b309c2f3084b346ef52f7
BLAKE2b-256 07492faf5bf73836f2e89fb0502c0c1fc21b3d89c10fa901085c8247534d1e78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d005178171f5b5b83241682d95e53541ab5d04534ea0915d16f7ed06e1a59f51
MD5 344ea908e0d687779459735647f7e1f6
BLAKE2b-256 2a420d950a5fcb5be99c040cef86792c2638307906a40613c5ab6c642a93fa40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6adb3393e54e5f78780d3a3737c10893e93a58eb414af8eeb8c396a386473e18
MD5 c1910e4103f58ad25bdbd31b4e3c5511
BLAKE2b-256 f9d51187a51ada1ebb8e51c171c8e6b684db3d0241d13d70df4c96ac2663c5a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acee679e223e3dd1e68bbf96cf30216d4ac1ff2e3ce700089e3df7480ac0a89e
MD5 7b85c14c4571404e94c59a3201aab886
BLAKE2b-256 cccb1aeb79a27affda347be77ed85199b635dc1dfef6e66366efd8dd87e24d21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6465facc72411d1891682b471b70e6028f1a5e4ab814e91a909abd2615d0156e
MD5 3ae252e79dba87a2a152580343ff391d
BLAKE2b-256 a4b955780872f457ff765be90ec6aad8328e15ad819d2e6d3123552c3405db30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.79-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 836f5a61a90fff3b986f35fbc3c634b1e8f2513800bee0413660d79ba85690fc
MD5 162d3b4c6cdf4c0552d63845de0d296a
BLAKE2b-256 862acf4d090720ba9afd0ce282bf430d87f3ef6a97706ff87289b30bea29bb66

See more details on using hashes here.

Provenance

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