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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.94-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.94-cp312-cp312-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.94-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.94-cp311-cp311-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.94-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.94-cp310-cp310-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.94-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.94-cp310-cp310-macosx_11_0_arm64.whl (745.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.94-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.94-cp39-cp39-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.94-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.94-cp39-cp39-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.94-cp39-cp39-macosx_10_12_x86_64.whl (755.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.94-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.94-cp38-cp38-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.94-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.94-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ae9d32fc2033712bd004fb41d51a5765bbf714deb1aaf9f0de2cb111a43dab3f
MD5 dba276236404822ea93598c6460fa359
BLAKE2b-256 a9150eb69518ba28fe3c7e800fbce37a9109fe3f222ccb595c5c98a31c4a76ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31c0921e6deb122b812e664a6e38193b385bc1921f4b81890a4892a8ec811410
MD5 47856f26791353a9e562cb147ede8ee8
BLAKE2b-256 939bd3480df956762255636cf894f16893111c16f19a44f519a454a36d1fc3ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30f74ae214c7ea0097407b36635aa4547258fc3727bc65e8039898da28b10766
MD5 98bce13b4b95458bf9fcff3f8a28da46
BLAKE2b-256 1599b8100e802833de45cbea5ed10f1ff513cef5035a0a05f65dec42c117d571

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 472e8bf2507f065fd710261c283510d25cb5aa691fe744211870d656ed5d31e0
MD5 88f1c89f7a60879b3766f28a3c4cf30a
BLAKE2b-256 13ccf4c9c9ad8b32a094d20af97f2b1fe01e6e3a1283eaabd50b356bfdb9efe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df1a1f26de6eb3eebc83d9b6858436ec6ab32cf669cb9eef293e20cc2c00804d
MD5 33a645397b8ce1075f083fe78bb6f6f0
BLAKE2b-256 60b6bf65056cef1b2817f1b48db95516c7a2946072ed4fc1823b0d00dc049117

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f7e5d6d9da1138f6bbed87b3adce87e9730de3ba66e137636ab4a5a53c81010
MD5 0b0f89272b6f8ede7d726c1a79413b15
BLAKE2b-256 3b205463241b6287e10476bb29cbd6f56fb7a061d49cae65b3fc62aed9195feb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e3a5caa67ef712c4d8d39f04479214e738c22f05aad0a870bdc3b541039e44c
MD5 ab4756f6941ee873ac6e11a51858d7b3
BLAKE2b-256 846e147ffb51f6358006a354158c3acafdbcc3afc701afff1413c82920cc6993

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 36646681fd4145ebc65ad186a64aa729ca63bfec8d8aaa173870e0cee45cee66
MD5 d20d78c3c6aa2ae77c4bfd0b95fd3f73
BLAKE2b-256 42ea0f1a528c2e5b7ee5509e6064a0ef22846d599d31db98c5ecaa0b0b8fb14c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e38ee764c800fcca81e93e95dc871611048410813c60133b7f322bbe69af38ce
MD5 f17464951436159661bdb12c3dbed604
BLAKE2b-256 d08d018ccd45f40fc2632160ee5c1c85aab52d2dedf2603cd8b466ebdaa55844

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18c3db1871c12d30a07fc8bbd9fe7f2927ae2a0f177a6b272fc1e52744d2bd0d
MD5 10b5ef975aa4b15939f0c34dc1b6d501
BLAKE2b-256 b0a3b08fb2f892ced244f0bf72b3f2a980700df4ecafdd03b45eeafdaeb018e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d18cde7d83ed9c5127119dcdb5cabe96c44d560744ef17e43c9dd10870f953c7
MD5 ae6f06b749aa631ffd6e9c2ee1ccdf28
BLAKE2b-256 6cbf60c29c67f87ccf8897b155408c00b4026accc90f4eabcba22d23dc8424f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e38686e4071d3935b2b1834899105709ace33a610ae05a45f4121f9f3616828
MD5 fdbb935a168682baf2b31af2e4fb658c
BLAKE2b-256 6c12032efa2bfef3804d0e646cba549e0015734f3cf595c7203cc5b204109a98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3ba10dc473ef3a422364ae05777c677b4a809131b5a0aff61c05779ccc220426
MD5 094001665bb8d8dcf7bd6437c574f187
BLAKE2b-256 477d2b2cb6f579bb4d0fb6f18f6638b89757389075ece0791c2dd0e7dc429ca8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9de5c7e411ac5788d21a4cda71e67fa04c554ee30a45e5705b2f687b550491d8
MD5 d177deba8c27f98d4169c40a53a7c645
BLAKE2b-256 f342e21b3a158253085efa46983341a5a039c1a3b17c1fc6690c9e2745359d26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf5f2ba468dc85039aa50302134e7ee4b0f116c697a368f328edf79c257a9ae1
MD5 80d00332a40d0c4ddcae0f6b0b8c8fec
BLAKE2b-256 b10bbe6b5885723c9d5f7c4b9f20f045de82158e4ff1a153c61c718798447a64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f6143b20be9e8e8b8d97e75d2bf70c3b8e75a4bad0500b75fe5e66870848ab64
MD5 1dc1b605e7b1fba50851373dcbbb92eb
BLAKE2b-256 fa61806adb278bb717455e281cc6f6df3e6c2602c276fffa26283531cd5655c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 211bfc1d3f0984665d5374ba2d46b364a4192c31eb61abf4043a0c26d413ed44
MD5 09baee085239611a9408530e1ccda7df
BLAKE2b-256 955ca0f89fb574255b854c9bcc560df6fa46a0fffa16c13b2a33b576ed0c344c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0302ccb18354b32ca24d9103a8c22399429753bc38f0f98abc77a6232bba1f9
MD5 7f0ffac1182bdf37c0ce9c92478202b8
BLAKE2b-256 032dd1bbb278f52b2cf05f9d4c6f6b885d6e5705e147ce5f5a476960324ab77b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c999ee7fa82da094b71c0a498e94af4ab4912ed6a85e859ff807cc2870f92b45
MD5 0c1036784a5485913e2684e24c1e7823
BLAKE2b-256 e9f8ba50ad4f1f9a539609567d48d07f6b370b7c422fec88a94a6de104989cf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.94-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 15f0c4b8bbaf0348df6c1a9b6cb328792cd3b11fd86fe3f3393d14365f04e9f5
MD5 70dfa52932ec1a311f24cc2c2f4e7114
BLAKE2b-256 c8dcc0a2e8ee40a2c9873b958a925ad1517ce7f87f69853b7b72a24c53d64a6f

See more details on using hashes here.

Provenance

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