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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.59-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.59-cp312-cp312-macosx_11_0_arm64.whl (747.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.59-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.59-cp311-cp311-win_amd64.whl (638.7 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.59-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.59-cp311-cp311-macosx_11_0_arm64.whl (747.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.59-cp311-cp311-macosx_10_12_x86_64.whl (756.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.59-cp310-cp310-win_amd64.whl (638.8 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.59-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.59-cp310-cp310-macosx_11_0_arm64.whl (748.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.59-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.59-cp39-cp39-win_amd64.whl (638.7 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.59-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.59-cp39-cp39-macosx_11_0_arm64.whl (748.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.59-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.59-cp38-cp38-win_amd64.whl (638.4 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.59-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.59-cp38-cp38-macosx_11_0_arm64.whl (747.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.59-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.59-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bbb17a8291e240c3b2a01f848a27b29ed9867f781c794a938a9adc39c97c68d3
MD5 eb6e290ff0a9c61cff2e638b6c56b675
BLAKE2b-256 39744c36674c5fb2289f9ba13cb603bc83264bd5cc42f042438e065980c38af4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c763b36e66c5056d9255836a8ca88bf2675073368c683a728e1c4a67ae3f3422
MD5 0cd26f3b6d4daf519b673a0b9b7d4b8e
BLAKE2b-256 37dc79d101e797c022aca7782fa9c7f25aeba5e32b0dd439a1a05264ef336822

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 307cb2b5c51069af7cf1b77a9005debb62d00cf7fe85058ee4cd510a5c03bb5f
MD5 bdbf6636f6641add7b353211a57ff423
BLAKE2b-256 5440fd6fb52a39760dd4265338f323af4df01e336e015ae51c2f288c53d5ec36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d4bda2581d844041c9e46ab99cd71f5eb8dacca64c4668589e982351a87adb88
MD5 24caaa8e0e79abb30afed68caaa8a382
BLAKE2b-256 8237e19ed646af300ed1d938bba5fcea4478d985480845ee92045ddbcc085397

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f4e224e948c3d12341b644c6cd5762c315611c06721bb6f85cd907d65ac176b8
MD5 20994eb80cff201afdcd0db2389c061f
BLAKE2b-256 7dc8ca17f4fc8f1e4d2db08e88d6d23fe663fd8ded1d32b15a2b5eecf68b67c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c6dc95c9b60a6fc73c38d9d2c4c447f4660c8673b2cec8636207df22da9217e
MD5 f2e0f2a3d1e98b6d385d53ac936437d3
BLAKE2b-256 fa7b8016d97eaf154e290d9cccc5e16dfec05b8200ed46fd6e4fb7a60812189a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8c1b765ab9b12ffe13ecf7e8341ba657ea0614d493799db07e93fe149a83e3a
MD5 7d72ffda2aa10c590946b8cdf70ba31a
BLAKE2b-256 940fa269e4228162994a8f7d9a5b581b9b26329797a7684936f0b64d5ff1ad23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93f9f70f78e2bca8a694244cb547fe85870885f723ef9c119c33a76d6c62b030
MD5 1d1b20482b890611badd946bfd03dcd1
BLAKE2b-256 d8fc8f155c99e977a04004a6097241bbe1a5a9874401bb95c2f9740e8f21eccb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0e952c52fc0f8c1223b7050c0b4510a099ee94ece995ad95f89be73de724e5a4
MD5 3297629d433b1319d30151167dfc9f23
BLAKE2b-256 d3dba710b217c8f4396048c7376d6106d45d3afe9fc82dc9dff681b461d774a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ed6e42e0441c46d14e43609743273013313e8e08cf333459e57dca7ba455677
MD5 3dbcdba880b2a0f0671d23da8f5cff58
BLAKE2b-256 b51aeed25d189566ea4f2950f37c75cfe35f8397ded21e5fbb7a109a28667352

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afc20780c039f5a00bfc297047c7c5906afa56c6d14331c78477acec81fb7939
MD5 f63732b69751e82149e9ca19730e2871
BLAKE2b-256 e967101d51ae51b751d5f152f0b33cb5167ba3b5b66d422bfca9b419caad25af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1576d73b5144ac375558e5cf73aa98bf72cce112df7ffe02920c0e981ea25529
MD5 4f0aae8f56eb68e7ef0d6f9eb289aedf
BLAKE2b-256 93ce4ba5bf3633e875259cbedd6382016bbca5ffbada76cf91b8944bfc4f7bef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9d413748d41bb82c0840ba5cd334a9b47f0350c6fb66b0d2057cde8646b5e6bf
MD5 c39d2cdb352025e35f05c14938e299fc
BLAKE2b-256 53c90e8f1fb2f45bacfa50603d769a3e923468f086fbcc2cdeefc8a7d64ab184

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9df7a189bfaf9cfb5787b600884a57881dacad99f262d5d8ba4a9f6d16e81884
MD5 0523026cd7347d76fcadb225c015fa13
BLAKE2b-256 afb2811641cbff4aaaa92faa6b4201a4cbb220f65bfedd0b01758cd91330b6ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a49bed903175752b1a840aee29649c0838d95f64089b1698729766b34b09cb59
MD5 d451e1c79ac0b8b01b1af68d67528e5a
BLAKE2b-256 e4de165ec136f419800f563b8afc0aad9314fe8afdd83a9394ed3879c7c2eae2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 09280b691ae8ec2acbb01dc75eda7dd027f4d3674ac29515020873381f36612a
MD5 c4409d31427193c2f6401816faba39ed
BLAKE2b-256 6a759b28a7ad987d8fd6c78914fa4a9c7043bd8249f44d417ff97ef3f3191538

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bfc38f2d80a520d03c72d84c0a1479424b12e381472e358ed2d89609caf74ee0
MD5 313b3c9a4bbb20a938121f64286f9743
BLAKE2b-256 a326de28fee3f0e1aa46cface9674b72ba94baeda3e4ef8581e34179ebb56b84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c39375e2c03d8e7fe821948c39ad933feb975f6bf4c089df88dd8ccf355deed
MD5 1b828d146d2032821f6cebac4ccd488a
BLAKE2b-256 a1bb1c7c42180c01958b3e8cad592933569406402de4bb3fa8ac26e087888f14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 950215922a8ce9f395b8cd18dd3e0d6b213df18d472b765ccf97eccecf87d3ea
MD5 42bbc29daf76de90474e79c71d8ce2e5
BLAKE2b-256 c73eb77fb8b66d76435cf65288e1aabdbc0fcebb668ab943bb1948f42e29d5ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.59-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc26123b6ca4ba3a3b1a3b113b1fa93083fb84c36e77ce47f740e6528eb2ddce
MD5 ae17947e7089eb305d22db138997ad4a
BLAKE2b-256 942c4b87529c0be1a3dbdc5d374e2dec46336f14b768cf4fec55f0fb98fb062b

See more details on using hashes here.

Provenance

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