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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.115-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.115-cp312-cp312-macosx_11_0_arm64.whl (744.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.115-cp312-cp312-macosx_10_12_x86_64.whl (750.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.115-cp311-cp311-win_amd64.whl (636.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.115-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (796.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.115-cp311-cp311-macosx_11_0_arm64.whl (745.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.115-cp311-cp311-macosx_10_12_x86_64.whl (750.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.115-cp310-cp310-win_amd64.whl (636.3 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.115-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.115-cp310-cp310-macosx_11_0_arm64.whl (745.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.115-cp310-cp310-macosx_10_12_x86_64.whl (750.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.115-cp39-cp39-win_amd64.whl (636.2 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.115-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.115-cp39-cp39-macosx_11_0_arm64.whl (745.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.115-cp39-cp39-macosx_10_12_x86_64.whl (750.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.115-cp38-cp38-win_amd64.whl (636.0 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.115-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (796.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.115-cp38-cp38-macosx_11_0_arm64.whl (744.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.115-cp38-cp38-macosx_10_12_x86_64.whl (750.0 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2dce66333f9e92922759fb9549231bfd88d113fdfe926b44613326d4f811b130
MD5 0d106b2451f16a4346a9e2ca71dd59a1
BLAKE2b-256 faa9eeac2fb4b174ec5c2a35855ba452b351f0c86fde11117e7da82b6699d59f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6826ee3f0e2cca3492d776b6b07533dc0483b1e24910bf93b70e21773adb0de
MD5 90f545086ce15b27e891578268bc42dc
BLAKE2b-256 7caa57c5eac63fe6437f10f27e81faeafeca60062139d92050a62322a4b786df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34e321e4706080fa33b517ee17843cb092f226027e8d205ed93b60586b25b2fd
MD5 9fa34431da356d8f9f61376f3960194f
BLAKE2b-256 e69e16413d427642d5c4f656cdd358f2855daf30eebf4e02dfd1e0bf78ba4ed1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ee6728a13056e55548445e298602735e4b287b74aea184ffd8fe47c32946d82
MD5 fbdd319844665287244d30bddece4528
BLAKE2b-256 69e9bf6cb6885dfdd6b2c535e4697d63692383e91aaea2e748e9b64b161bda50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c76f2cd43c54a83360311e738d049ef3f276e9352037307df3338fe4098d0be7
MD5 809b53443acdcdd3dfc2ea4bd3c9eba3
BLAKE2b-256 f9c477ffffd7d564e5729e43844462256a5e90e6799796a2174b99d1b65b4eee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d0ad4ddec55aab86f72dbbdd1361cc762284248818396a51196afe0cc449409
MD5 0ae2591569f5a0012d0d44ae36414927
BLAKE2b-256 00cf30c74a87b1d9606ee85656d4389e53626d39595bc08ebaab0409f958928c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea716f00d36a5b04e0b5328b08ad9f655ac70a5894d82008b8ec46a4d19bdd16
MD5 cb6e635e95d7a682cb646f01a2b32bb4
BLAKE2b-256 244310fa2affc5ab5ef46fbccf52d8f8e529b51c52648f4a44f6279f7787c46d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a9b159aa15910e75268b31a9d7a33437010ee6d5077f66367ddca8bef46e64d1
MD5 d551e8b30eb543f1ecbc4e5f2d9558f4
BLAKE2b-256 d8195561b05e95fc98fd25ec1b776d2d04a8c42ec2ed630e59bc36adcffb15ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 63d775a07e96c6906011eb3ed224e4bc350f7cc90f29761ed5e7ae48bf2fa30e
MD5 16900ec96437f44dc9c8d438695f3335
BLAKE2b-256 dc06549f43528fec32d42744a7bc169669bb2ac153e9e60ce31e8aa6c535ddbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d048a316bf01e1ea853771d62a346f61cd848979567784ee8796dc72955660a7
MD5 e6c6e29a960f25fd3e337c17e0b09069
BLAKE2b-256 dab83307f60199863f6cc2ac6b85a76536ecd98547eff4d2df915ce01bda4120

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 515e3ecadf56c525ee113c6fbbb5992162abb23729f1853e1dadd18525f2cfe3
MD5 563e5f78b231fd8756475fe90abaa996
BLAKE2b-256 a0a70160edb54ec23b043ff8ceab66314314fa9f7c97c328130481116bb7449c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a7132dfec1ced448055e5b70bf31775f876ecead1ecc297ad5ba5ae0d8662b36
MD5 6f7ac474eea5cc2c4a2b88559129a319
BLAKE2b-256 048e2a7cc0aa1c15546bf73623c88c7fafbfa58fe989f8f4144a1fc8488721e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 28f008a4822787893a120560fab38d47b07d5e5bb950919e565362c02633e924
MD5 dee708bd73e7912d17acc1b0f8f790f6
BLAKE2b-256 083307b65bdc9b69a4da543cb1b69515d5ce0d98f7975781e279590da26153c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05b3f9cf0d5bce6b6b4a465b13a622673f2ed16d90384e18a8c8ff3270a7f68a
MD5 23ff35c8e29063b0d55bfa40286f10a2
BLAKE2b-256 4d6c6bbfc841b1fc2839cbfa131ba18395b2cd57ef88629e7b1a211b6174d39f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40ee5fe8afa4b086998c6b2235635fde83377382f31d138a90373b96324f52a0
MD5 8f6715924905eb647c63f0eee644db54
BLAKE2b-256 89fec69becc0f62ad6edc75d24b735c37dfd7a634e37417a00b0bdbd8c71744a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 127c426d1ce472c429cd00254bf243cfea0ce9cea54f0d018d16770f6b1512d2
MD5 a39e65293a8176ce33f98f7fa4696703
BLAKE2b-256 7ebd28b519656bb5a546e08500ad1d71c6e27ee610c7e86640d43ae8edb72db5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b56c8d139f093b1e1e660b203c0c787108492be26b8cca4236926d673bd4bb4d
MD5 c0b54467a6a617ccaa000ae27a5ee608
BLAKE2b-256 c82ffd3132c90404f58691e972d9ee0d701aaf1221d1bfd28c33d16b20912d42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9dbf2954983fea8a8d3afb2350be135628dc362c7942cf2a12b05304310f014e
MD5 0f9921fe4e8eed516f619d338aafd157
BLAKE2b-256 fa226e52d20cb1f8b09ba16ba115e821d74f9e1a229822b65ca9351eb5737d60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccb68c005f677de0262190b97c5146cd0b310d6d3f0ba4719c367e2fabb70fd7
MD5 f3b411f253e72099c05dc8b1a86ddc0e
BLAKE2b-256 2fab4e3f754ed83f862a4da54ea4902a30214e707080ca55ed64b83667a085a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.115-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf1d478a92540d33d84c03957ee0b0f114daa9121503f3b66fbbb01bef16e91d
MD5 85efa8e0ba5a47d495740f14c6f85e7d
BLAKE2b-256 cb918907d9b755516459a5567e23923113acefbe3f4446ac3292a95abcfe05c0

See more details on using hashes here.

Provenance

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