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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.104-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (795.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.104-cp312-cp312-macosx_11_0_arm64.whl (743.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.104-cp312-cp312-macosx_10_12_x86_64.whl (748.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.104-cp311-cp311-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.104-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.104-cp311-cp311-macosx_11_0_arm64.whl (743.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.104-cp311-cp311-macosx_10_12_x86_64.whl (748.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.104-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.104-cp310-cp310-macosx_11_0_arm64.whl (743.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.104-cp310-cp310-macosx_10_12_x86_64.whl (748.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.104-cp39-cp39-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.104-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.104-cp39-cp39-macosx_11_0_arm64.whl (743.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.104-cp39-cp39-macosx_10_12_x86_64.whl (748.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.104-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.104-cp38-cp38-macosx_11_0_arm64.whl (743.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.104-cp38-cp38-macosx_10_12_x86_64.whl (748.1 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 36eeb3311f17d5480fe93c453af25568fd650e79aff947b24d679729c1e9dbb4
MD5 d843314c0c7b36095569aab8550b7008
BLAKE2b-256 33c9a6795abcc034d0bc340066286bebd6cee6389d7cce70b4bfe03352f40c10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31bd9d4eab4289287038253dbe68aa3aaec20e635af6c6696d98a8aa6b304833
MD5 d8c9e4118bff065753c61d23d5d93dde
BLAKE2b-256 cd26ea890cdafa27a213f3a8b56a843b2a5df63800b9c25729e8d13752283727

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50860d5b034b3a15d367848a958567bc766c5438fb166aa829104a201c1a77a7
MD5 0fc951eaf0e97ed7cf46ea31abfd89bd
BLAKE2b-256 e058e9da2ac0afa792e0ab6d9c590e54f2ba4603237b3ba31f7cb17220bdf8d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 335f1f45e7f341522e82ef225d4b88c6fb7d948c2bac6036bf39454bf16f99a7
MD5 4b7502a699c5cfad083853869074e8a1
BLAKE2b-256 105ac1073091d5a4af9f3106a2b9ac7a173b97165a7e7d9ce3cb385cfbc24759

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5e0db3e13222a2354031643a819177b2dd4276b3c52b797d889b7a129c8dc091
MD5 88984bee52b32c1ee1cc59b9c9f38d4c
BLAKE2b-256 222ee1d27c80338fa7c9df76fde9404eef8cb863745f5dcf9c1644fdc3beba1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2e1790c1c84a509a2937ac29417d034e234cf687778a59f07654f6d345ad5b2
MD5 64f940558cc61986f3f44d0b5ce366cd
BLAKE2b-256 28c59a3bd1365bebe3712ca560d84e5be2cffbb425ec7b6317d91c2e26a7508c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bdad2888846ca89308e3d3e7b34cf89be78cf2adb410edd5d9e18d58c9bbbfc
MD5 4a1f701397866fff512b29e45d947351
BLAKE2b-256 5c91ce16096115a7a86b38d3ed2d57e23da5b1b845eaa5f658c8b15e8a43d5bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 23a8217af81cd4de89e116f0f00f3d0c6a1df90c3b3ccc0bf89bfd7fc5a12d76
MD5 895946c3ea60c400f3df103f30d8f219
BLAKE2b-256 ec65f47da2aadc2f64b4ed964c08f9a9d0ac6c6a675d0f485ebb3b6f46a56b60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f88dd37222a73c181c8dbb98626be2ba780f6f28abf80aac0959c9fd631af87
MD5 5096553a75023d3d8881cd0a149c2734
BLAKE2b-256 86920a1607e46ebbbf7b59ff3e751520845e33b653112c6bed43eae82b81d9cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d69054dc5046dca68427322d3b1d712b9263cf0ce072e6e58688589582953732
MD5 6d10033d8ab482627b5c39f79a571408
BLAKE2b-256 b91aa1a2f269ebae95c0b611e0ac5928b04051043563f38c9597dc5acf8e42e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3e9612467c8c8a74261bbce47882e1cd02e0faa3e790811fd1c96f2aaa45805
MD5 d80a7441bb49f3bc23b8f8e46db5da90
BLAKE2b-256 196d6fa7312adf028d96686a82cbcd02f96c4502f43555925d1d5c703f96da4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93d4f2a3eeafa560c7229cb0bb8ccf65e9f1b6f340c8947baaff9d957eb73d61
MD5 278d9d28a76efbcc7f0ca2f63c12697d
BLAKE2b-256 73df8158a9f72e598915c9a1fd090734979e41330303c45f5a11ecf53b1fed43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bf2ef05d6b855eb0c6be024204b25586e1c9dcf78465d753214cada20d413e8f
MD5 1309b4187ffdf0a17580451bf883403c
BLAKE2b-256 7d110de5b4296b82deed7659fcf44fbec865c8baf87220871b587882d3298355

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c70551813ca93efb9e76770b3e6c12290f4d0df5d283fe1c6b55164cb789fe75
MD5 3cbaba12cf975861f9d98fcefa7ad433
BLAKE2b-256 b63aae54b41b24b7573483523bfb3a7910d9ef2812651a0867d18046f9982e08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 760242c102fbb3f91bf3cba2d6c320f56f567c26e4b4dfced7e9a57034ba0f76
MD5 4483c78db1c77acda6c6899b8756c456
BLAKE2b-256 c88803e6ebb0172e1801ed1ba7f0340ae98282aebdabd1997d862cca1659a9a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 38eb6355b4a8f680bd504ca003b346ad64d0dbf7b056f7c501af61c6674641a9
MD5 40f74a618bdd10514878bd67e6012a70
BLAKE2b-256 fe595c6dad408cda31675ed521a4990df5a821dc7494e4704901639adf8f220b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e326813de30264d142fff48a42ab3f593311a0af1852c07bfefafe95c735fb4c
MD5 99c64cf0dcd3a0c24d6197c4df98d98e
BLAKE2b-256 6c4f1b31f8534ab42d6a462aeb8159ab5cde9e103e235106bcbb8304729a04eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 776db8bb0b447231bc22ef7845c918184b7ad82d0bc18f1b40237136e9951f94
MD5 90dfd92e5ba6ec8e2a4088327c11e9d7
BLAKE2b-256 b7b9867d8926b17f2226a30d6890f3333285ee0e56943403dd19bee269691ecc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79e176ef38a4e2a4f8b14ca373baa6bc34b45038ee2ccbf94b92ec80a6db03f5
MD5 b24546892cce6c22a367171153d049e3
BLAKE2b-256 5250d1f3919326ebe68d76f86bc7a3ef8cf18ce9d7ac776d1f7d4549e2e802da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.104-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 980de713e09efdfa27b51b136b23da65d8ac25109d5de5aa20a603e34e71f97c
MD5 dda46659505da56247a50eaf644cc3f8
BLAKE2b-256 2029b666fc7f1ca8e099c3ffb3f1a511e845b84cdf3b59ef5de719b9edb570c0

See more details on using hashes here.

Provenance

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