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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.120-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.120-cp312-cp312-macosx_11_0_arm64.whl (739.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.120-cp312-cp312-macosx_10_12_x86_64.whl (747.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.120-cp311-cp311-win_amd64.whl (637.2 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.120-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.120-cp311-cp311-macosx_11_0_arm64.whl (739.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.120-cp311-cp311-macosx_10_12_x86_64.whl (747.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.120-cp310-cp310-win_amd64.whl (637.2 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.120-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.120-cp310-cp310-macosx_11_0_arm64.whl (739.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.120-cp310-cp310-macosx_10_12_x86_64.whl (747.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.120-cp39-cp39-win_amd64.whl (637.1 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.120-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.120-cp39-cp39-macosx_11_0_arm64.whl (739.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.120-cp39-cp39-macosx_10_12_x86_64.whl (747.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.120-cp38-cp38-win_amd64.whl (637.1 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.120-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.120-cp38-cp38-macosx_11_0_arm64.whl (739.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.120-cp38-cp38-macosx_10_12_x86_64.whl (747.4 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 477598ce895838bbff3e60255422b4aefab8f0993952666534342c99fb73f227
MD5 be64b4824262b9f4139e2f77b0f4a7a9
BLAKE2b-256 7a4f1467674ca67c4366e19e493cfa658a16f1d1049b0a2b631f1a7e4f84fb41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53d33222d3ce125a402b97a9ac1f5644662cf24c95946047c1ad93808cb1075d
MD5 3fd04b2a81bfa6fc0f145478a03321cf
BLAKE2b-256 36ed2e0a8d12558dc1618ca9c827d2d61de7e4e16ff8e7f8ac89977fd075666d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c086febfdfc58ad2811b90c17d983d32267c0e9deef883577bab01d1142abc88
MD5 544a03fc8895510e6a7d429b446b8fe3
BLAKE2b-256 4afa671e47b6c27e74ba4cc4803f182670897e161459df0a9b3bd7501557998e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 34a059df06356c879ba022540e2e7909ea33b4eb56c647bc334b9986b17ad923
MD5 487debe37ddf57b9e9377cba14c4dbc5
BLAKE2b-256 ee369fcdadf8a7d92a8dcee85f71c09604a64388c5ea1ce79358e75038c9f7c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3d7832433ed6f69d7104be9afde039513c1467a79e9144a0dcd0395e08f3af28
MD5 e697065aebd8d84011412e443111b27f
BLAKE2b-256 a4067685d5774efa824c2365568c11227c3193a0bb117e4fb31d8958097f4958

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b6f8649d5cb48eb808c976db61629899ebb6cf9bd17f79c07e023f24beb3ba5
MD5 b5ddb354d0d01336c01e312fc9cf24cf
BLAKE2b-256 9e591f8a081917b56263c100b826fc84c63421e5d311702e54126089e23814f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42362bfb88294dc0d0ca8137625db45c180b13bb6744377737e62b03e02e789a
MD5 353020fbd195439ce0ce3d4a8c30e155
BLAKE2b-256 77e5494c86d95e32ebd853b7bef20a10e11e4f20b9348a52b8a10747c5da304d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f97157f4157ac7b057f54eb8fd9acf9a423a6250822768cc4124236bfb9df99b
MD5 8ee1563873586fd0ee4f3485cf3a879e
BLAKE2b-256 264927e906472752879c8306a293a9ba79d4844c2a4063cc5bac513161807e2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 396afa080b5de95a11905e2038e58b0427d8c94d3f94eede9cdce0d6adf0ab68
MD5 943fd974b526c57d82ac8bdd14b70804
BLAKE2b-256 da3df20cb5abd7a220cdd583da00b76b9e188078533e0819aebe2c533e8b5730

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54ad7d64318cb5598be1394510a4f952f1928dcbb2ceff626e9beaa5813d4afd
MD5 c20e5f1067fb1452356e16e7d6d15592
BLAKE2b-256 919612d9b1525a48fc3e1b7c86038662120f777efd7f92d159c37cbe4083a6c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f7eed3f6234b75bb74a0c145eaddbcbaf38e8c9935b9308df6545cbc0daf8bf
MD5 815f6ea849d8776b348bfc8940444341
BLAKE2b-256 753f57d8b11e28dbc5e8756d5a295077f51a11fe697837309082aa29a19d5e56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8631fad5d3d1ce42af7daf25317660a53370ef058c231cc3c44b3f9737e8837b
MD5 9c279d744d572cd198ebde9990c98663
BLAKE2b-256 761e353e142d3d9516f0d6c7d7066bb7ab4e19fa561f70880a56a7cf680f0cb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fca458385e46102e0d6528046cf0fec5b0b72dcf3c411eef093166c5e2a25ab9
MD5 e1c6f9ba42fe097d3a9f8acf6b76b7db
BLAKE2b-256 d0493573fd6601d4d5fcda15bbc447d2ded4c322ce669f8b3678f941473b2423

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81813287e0b9e9b544d56d44c512f7097ef3a592b268e0976589a4f736c1ddea
MD5 cab3add9a19390d4a47da06840269dd2
BLAKE2b-256 9bb73cf01638a582934a95fdfcd3da78eff51d50b8419c636fc53bac09585904

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd1041de359c1d0a9b1dd367dfb7456b5f2fe3731ea2633a1d50d315ae3c15cc
MD5 d16e3cfbf30fa29cf9c0279b91d3286d
BLAKE2b-256 f84d5fda8f0b6dcfc7ca4dc987a547bffa6a601413d224064b463c553efd8600

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c56649faee3b06123f9f39ebd868707e8370c8c8857055d5c82866c59561f98
MD5 aa213e012810cd689d1b75922f62c198
BLAKE2b-256 0d801a4b01f84bea1bdcec3dcb4df40e7d1fed418f65e82da37ec25e8e56b409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 951707c7480e7c54b465238dc3c7006fe08aa0086bf112f7374deca14b3cd40a
MD5 e3bb1f7340bca2dd8d5ec697d70dbfc6
BLAKE2b-256 86686a09c21d8026789b631b08edd278ad231344d5a3d833ac075d10030b0f59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3022911a92c55d80077ea876cf68337f144863ebec078c0ecc488b3fe7227825
MD5 ca5e8df2e0ffbc671266fac2008e656e
BLAKE2b-256 eb169b63bb2c9ed6fa04d1d3265b406bdfade170303e98b472b5d3e76dc63ebb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 764df102d40313c120c6fc02b6fcb8faf7ac5f6f78eec20a38833f3ba7662128
MD5 38ab6b3fa7157ea5e20b86ae58f6a8ac
BLAKE2b-256 e781d29e90e7c578baeffd016574d4ad75381b4297cd8f974a3423e44bc81170

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.120-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52e403cdeef727b1a8284895a6a769747f3d03fa57b5aeab8cbc80ddab32e3de
MD5 db8f41db0e448fb289707cbdbbece379
BLAKE2b-256 949df063a08b16db5ae3717ec162fab994264a37c715f15e3b36083e6f8748de

See more details on using hashes here.

Provenance

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