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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.91-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (801.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.91-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.91-cp311-cp311-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.91-cp311-cp311-macosx_10_12_x86_64.whl (755.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.91-cp310-cp310-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.91-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (801.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.91-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.91-cp39-cp39-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.91-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.91-cp39-cp39-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.91-cp39-cp39-macosx_10_12_x86_64.whl (755.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.91-cp38-cp38-win_amd64.whl (637.0 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.91-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.91-cp38-cp38-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.91-cp38-cp38-macosx_10_12_x86_64.whl (755.4 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6c0d686dca868f91fd98500783fca0238c2fb8a4f910f13d17d730f46a9e8c27
MD5 1fc38a7ae2e05b5aa283c8771cf2888c
BLAKE2b-256 d3fb9819d4d88b18b9e7e608075c00b6f587171235eaff64f3b33482de2d065f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2f7204186909030a7330a67ecdc6748669e6013b5634f3f3fcc8897c6281640
MD5 7b8fd55855eeed17c7d3f7b568e3d729
BLAKE2b-256 d9d4a0b844b187adb496ad0011d83910477eb9a936a68ea864de43fe89e0b673

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af933c090fd28526b74096c4dba50f918b12796208bad717fd31939c2b6388b0
MD5 8c5b6aef71b59400662bc480162fca6a
BLAKE2b-256 a9223ab12e707f2aa4f03300104ed02407846ef403ee7b015a416f5a58198292

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 512db6b888dc649cd3dd16056c61642716c9b2bdd29595b6beae6d9b25403a5d
MD5 62a8c7d906fc4cf94ecdc172262f66ff
BLAKE2b-256 78663d6c5ad381f8e11fc1a16ae426d3d9701015d990e25075f7985c9d0c82aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2b98270222d2a37901cf9f9325ce89cc3707f205a20f1de9f7cdc0f074459b43
MD5 c94946513d1c23576740250e5bf1902b
BLAKE2b-256 117811f7a52cd19b7c620510f9ef0b48887ef2d21b1e0592d91a09c6e63907f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43c3917ead7d2d7a556d115dfc938a605286521227a6144ab150daf70ba15657
MD5 533b72cfd0d9fcc13f54dfaab0876276
BLAKE2b-256 7d33f6abf2512504d190fd6dfe6a632d851009199519d546de40f409eac043a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52b8fd00f028b622b0412342221669af0648ec5cfa3d3fb665ab968d4b82cdef
MD5 1b1e38e6a07aae557da4b36e1844e414
BLAKE2b-256 b01b617cb9bc8af08cf916ed6ea298b66811b59f99569cc1b88545771ec82ec4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c639ff156644bd41181c7d94dcdffd7f7fbf1a2f00535443141a9f5aed15557f
MD5 e86dd980368a9f9df5b0e08a6697542f
BLAKE2b-256 935ebc89d7b8a00009e0d9a8d26d27a4fc594d46ee7529faf4aa3da9ad108294

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ab1f532f025487cace0e45a17e49ee948b5c027c19cf0fae3b43bb524c887d60
MD5 23b145a5296456ecbf0d980c1a2a6b44
BLAKE2b-256 4200760cbd3658565658bc6a25f7a497d1a4b2aa93a97345cb234fb21c9b61b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34287ff506e1c9a9c7bb20596d33186ed84749f84c20cf26bdb5d5f40b7fd41f
MD5 3ad40ee7c0c3ce38bbdb7716616f5381
BLAKE2b-256 c44618885ce8cfdab91963d4b10c47e79fe8cc154a888f9896c8971e085e9e1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b50995c6e21969a94eb15d7538522c3477224ffcaf78fd7b46744e984941af01
MD5 7e6190b0e17327fcbe5332e93c963570
BLAKE2b-256 349bb58a07c80bf1163a6d3bda0cc38bf76a3ccd00449a5eb200acfd8ddad573

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f7e778eee3d1b7ded7a746effcd79af5cbcdd93a684b02719a4378c7b8384286
MD5 7144495166278a86dde9bfc9825ccdde
BLAKE2b-256 e8bda89902bacdd75efef34c0a0cd0a0d9620cf79eae90d5da782bf32c1ea737

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bb7d96b2db15726d95bd53be85954e38eb5c95ef33eb015267ab57b0331c2497
MD5 2002bfd45f146ba560098665c26d3d20
BLAKE2b-256 9317cc288aadd85547c6435d3a97eae0cbb135ddeab488054b4b029db86c2897

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1064ca594554655605805097b26875f79f8f481d9b8d409a40b28b45601c18ec
MD5 96978154c48cc001e34d581ef4807a38
BLAKE2b-256 95b016ed2bd4e3c02e4fb770e562b13ead9e0ada466aeb0bfca9e6bb67972796

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cfd9a7a911f0fd94cf92b3fe2e9831c7df3d739eafeafcc7440cd014db4e9f2
MD5 b03cbe92f3d94fe966062fa5ea51a70a
BLAKE2b-256 8d47f589a4605ee1249c5673d98aca6a9c0eddd6c44840e4e00b487ea5479cdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a517f8ac511541551bf601b2f65dd79abeddda88aa45c13695fc64b5d0b60b34
MD5 9ddad63dfe501c3a2dac1d10b82aa4ed
BLAKE2b-256 b94f1c90c0db5da0495a2d78992ede9986d750377e0056ecfe37848e65a5c9ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9461b73fd50320bed8179bf606899432a13f77e5c5d3b10bdc86a3304c3d404a
MD5 c9f0fb5b1cd54cde4bf241f5d3f8129e
BLAKE2b-256 44c21ba8d2d08f56681f656199117a5402a34c179ee3c7939ddc7978fdad9e71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0417b755ad9e42ac9f3a456b94aa5dae4d35a9872ae06523df24e90abc62a7e3
MD5 188245bd84786a4b83db74f3c4157059
BLAKE2b-256 f8d8c60f5b25cc8ebf4282e5c285548e3c04b7ab3847cfce21b8fe45274ffa91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb7d2bb6a89c25a278a8f57c6d56f5072d696dcafc13ef68ff62260fe1b32f6f
MD5 209bf9c7ebeb3016e16e2274ac4b810c
BLAKE2b-256 9a55783262d05371685aa070015b54a866ad19a846de8bb124828ebfa22d4bd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.91-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0972c3f55f462dbb21a614fa59fb6cbce474e308fe4a1f8d95110cfb1ddfebe8
MD5 37838fa79cdbe29b29b54097755a15bc
BLAKE2b-256 d483eb42862e66495c5065efa1587c93c4f6f9bd59c45441ad45ba912f8d7bac

See more details on using hashes here.

Provenance

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