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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.78-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.78-cp312-cp312-macosx_11_0_arm64.whl (745.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.78-cp312-cp312-macosx_10_12_x86_64.whl (754.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.78-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.78-cp311-cp311-macosx_11_0_arm64.whl (745.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.78-cp311-cp311-macosx_10_12_x86_64.whl (754.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.78-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.78-cp310-cp310-macosx_10_12_x86_64.whl (754.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.78-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.78-cp39-cp39-macosx_10_12_x86_64.whl (754.7 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.78-cp38-cp38-win_amd64.whl (636.7 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.78-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.78-cp38-cp38-macosx_11_0_arm64.whl (744.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.78-cp38-cp38-macosx_10_12_x86_64.whl (754.6 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0d7f91de93c205362f1bc20dd213afa88bfeec535a0b7922e4fe040865251d62
MD5 9d3ba280c84a2e1ce4a55aef70816560
BLAKE2b-256 1c88c537ce4486bf4e7f92630250b7d92e5f1f96bcdf61f8416a7723ffb01d9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f28969bba744907adea1943f4a3e6b310d04d4517e75c08c569d7e3c0e0f0d0
MD5 45d684304af7c02bb77a0bf26277820d
BLAKE2b-256 312b23c0a84fb43164a2dce5124b5fb736ab613bdab7d6f86d5a36d876dd7c21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3d5163430b704e627d4ffdd6b637a16938d8b3cfd2b009cb5e0369d71a8eb47
MD5 0b7f36a603c83b193b8900d740bdb3b1
BLAKE2b-256 4faf552123e0686becbb4ffd46fd888e99b75abb30baafce9df4387ab931cc05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3aae8d6dbc228184a01d5ef68fe99e135348cdc59f5ec1e8c6626e4c78168336
MD5 5d45b74831f13f7827b2be201b219ff9
BLAKE2b-256 040ba777368ecd25fd78db8e17c90f20644d40a954948662cf888b687568a704

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a94f2bc66bd42b41e33d96c288bfbff29d5d86b9f5039e7aee3bf8b6636e58cb
MD5 524d0835c428fc7ea820617ff1431292
BLAKE2b-256 c2a6776dd2ed1b1d0002698348180df28c75f1f6c878291d64bb4c0e05a6f5b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 415c5bb307dc7e928609c701593324120febf8b5cca187c53f9a3ac4dfcb5771
MD5 b0c5866d8c7a818cc40365c52ec15ed6
BLAKE2b-256 ec5bf54e89901620617001be463db043e9130be2bd897c773614e071dd5c2fe5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfcfe03dda80267adfeae33d58650bbf99267c6397a8eab6a433d3fa9d71d467
MD5 c4c34fc1dcb8e2958b57125f2b61c8d5
BLAKE2b-256 42a19abd265e718dcce34999063b6fbe2460ce34b60e06e46f1890d91a802de9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ecba6039a69cf6417e15fef15abce9743b6167c75a890d06f535e8a48dd52fb9
MD5 709e8a9b8a7297fe22152429a09325a3
BLAKE2b-256 5d9c00777a632386dfca006d918bc0226a36386f14bea86e668398f5928534c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cd330690bebe8d3b6a228530f17179f626ee482d1f8b916de418b3e308f8605c
MD5 45ccc4566473e316aee1a3b9975d164f
BLAKE2b-256 6e75846cf0dd688285cdfe3df52c413f8100fc5ab3e1b635c9fdbabdba7a8e45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75d6db59103e233e5f0b3f142707b8ff8829b997b66614657a33d2518ddfb673
MD5 e344502db87bd396e4cebcf34ff7618e
BLAKE2b-256 2a0d321dcf3b01e9dab72c67c1cf72ffb4b7a1f1a0dda4a5684b59fcdbce8367

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8aff76c358a274b6c170bfc53ab5daa6ffa4caacabcc871e342f87b825681267
MD5 8edd1b375063090b4ca456b224ea548e
BLAKE2b-256 978c7fe30983bf5dd3291b701ca41c6c6ef742c396aef30b847f82fdc8388dcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06ccaf7045907e8dc04d05582e2f20524e29a5d3a9d572ecb56d2c3a2e93e1ed
MD5 fb3100475c37b166ee1939cf2d449c17
BLAKE2b-256 4f8e1f5d0f019987669a4129e50d236c22cbb7ba42d3dc2e3ed61a217b4bbca4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 142edcb15111c6df4ac87df5aac0886a0528d1409dabdee97f31d70d620b97b4
MD5 4e0bee8748e5966fed1a0dcd8432c03f
BLAKE2b-256 c07d2cd3480d5b1a4542f89cd4a22221efb8539bae820a53d85f46877850d303

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7118192f425a00e323ad0f09d92cb1ac6f7a0ac32df8ad00ef70881189ad6b6
MD5 f105b18baaea2e62f37db3b39ee4e433
BLAKE2b-256 5e1147578d017573dbc6c1b73eb5b841c833d0aee7a68d19ab40152e7e7b0db9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ac8a97e539b6386a09fa2076f13e60540247a8130ea227c49b9d84ae945953e
MD5 117f43025df49c4284ea0ed5715d60ed
BLAKE2b-256 ed98ac122794becbbdac5312484a4fb4e552215fe6f9e11b4aa9b9e6bb215261

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8636aa02885bbd7f385ca1359f93f572acc7ae13f3772cf0e04cc26ffb5d33ff
MD5 c6ff647238820ccad684e565647a956b
BLAKE2b-256 c35aab0b14e954ffd07e18cbdd98faf9a29369e95fad8bd8889ec2efe2429a72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 746ba57bffc1f7d34e7d131d04fac3920b07045d6ac1bef7877bbdccfd9b9e2d
MD5 d3b69d97b309e3bc11cdb311105f4265
BLAKE2b-256 0f4333238a5721742aeb575ab2f781ccc0e5d1a50dcedb2bd9aa33bf815ad06e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f2336a560f71c1bc4136a67f496c322be67ac5aea02333128d05833d7e16925
MD5 62d97d1f340974f1bbc014897066d4e8
BLAKE2b-256 b053aeacb90c18de2f8b4a91f639bc2aae5a1d0bce1a301cdfe5174259b8cff8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62f403a8dbbf9579625d88f08474c849f7688ae89b0aee1028ed68f8cf3f7814
MD5 d4340ed497197ba3a8801e7098627e44
BLAKE2b-256 ad0e77ec579df25b9d187018d3f1048748f9449c081452f0eae6fd511abf78d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.78-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 97394f0149978e78e79e2e38be3aaac4b4a0fbbfa190b96bd2be71df67ce636a
MD5 e5a46d72c4ae422ebddc370dbddd64e0
BLAKE2b-256 e87097584f9951953f1e3d1613413f3f5fe6e58bbfc73875f7a8cdc695ac39a1

See more details on using hashes here.

Provenance

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