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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.92-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (801.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.92-cp312-cp312-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.92-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (801.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.92-cp311-cp311-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.92-cp311-cp311-macosx_10_12_x86_64.whl (755.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.92-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.92-cp39-cp39-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.92-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.92-cp38-cp38-win_amd64.whl (637.0 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.92-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.92-cp38-cp38-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.92-cp38-cp38-macosx_10_12_x86_64.whl (755.5 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 371d184096522f563608cbc9f529a57997194f8e761a187dd9e7ce4aea675312
MD5 97cbf90902775de72fc80a85accd980c
BLAKE2b-256 10c67ad86acb49af4bc919ef2d60fb70525fcff0af41a53dc4c52cdf3a9590e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac1cff454a0690fd0b263d6480c6922b177a3752b5eda81872e76d7337ec090b
MD5 7fd81fadd729ecc76e88291a7ce01222
BLAKE2b-256 823d46276f9c0df0e46da6fad1f7c1a7134f00c467e1729ece76c1a7ac060567

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 236fbbf3ac6b9c63adb634c99826ad4a4f7e4b6289c776de386fa9b71b413071
MD5 6c2b320189d2f29b68f2028c3a11e709
BLAKE2b-256 20d1ff2d42a6e6373aba75f93b17f8ff93ba6bbf087469804a16ea9612fa31a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bfeffedadc0f772474faf5dfd7b3f7da71694d8801e57a5ca7441c05b0696358
MD5 991cb001b6597aba818d6d6c87f9e591
BLAKE2b-256 426515f2824b59b5f77e402942c0f74b27acefe0fe96f24c650ca80cf320d110

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b917f7cbcdbf78751b729eb490df15bdf84354a762cef3d9ecb4a991bbf26481
MD5 b7c0fe3b8aa99f7c97fce3fdb05f1d79
BLAKE2b-256 e4492e5f1a864ad17aac9169d035bf016292c6f6afa45c65e9c5b050fea693eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 befb1d46348006477ca25c8ca1f101a33af4aacce28ed66c8d2552ccddc5838c
MD5 0a7c26cd24796f9b09abb473bb07230d
BLAKE2b-256 e43fbb053255057a1cbcc08fcf00a388e0b2c21f4d9820dcb31142997b6f20ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d3a768c5bd20da6bcac2c068935e38234e83b63900bf9e99823efb8e22d6a64
MD5 aa7a071f547b4700e55b6b4fc32d1336
BLAKE2b-256 da75bb733d5e63a621b43756cf964e5b0716a369f873a2860acc63437d04f3bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6214bc346ec486ecd1f069d3630d8877419eb40a8683ae0e8db427727abcdf4f
MD5 43f843708301decb4a69225afbb8d2f2
BLAKE2b-256 0f3cfd940f149746beb1c9cfa09c60a88fe2585a56ef2c3669b0fe2c55633a8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8c6997ab7263c08d35d4183327ab6af63660126a63bd5d786ef5ebf70031beac
MD5 6d9844e366600152b08bb7f2ea6df6e7
BLAKE2b-256 2f6fd8aedf94535fc4c576f8ece550831c5ba46a85c46c82de10e10e47590185

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f29a1a9576c513d5fc8e8d6d2bce13d92279fb702715c381000af95630036e6e
MD5 5d0e570f8c03b649ff8fd028da959fda
BLAKE2b-256 35e0cfa074d6bc53d118fddc016f74af6ecc743f04e2d69bc17bb9f1851ad774

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d566640abd8cc27d6ed2e5a9d87a81f2bc026bfd54931ac3d04f4a5c8360fe5c
MD5 b409165aad8b6ecd8a9d2084864b95d9
BLAKE2b-256 6e7b7ae061f0b95ae60bcdc44772179fd1523cf85ba9720ff21ac8db4b2a87a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 432908f685b938de95d8f2db71c7347a7ba2c5ab4d3825a47ecae444be937df7
MD5 7e8405a4841e925148bebb1680176714
BLAKE2b-256 aa6238a2a58e09451c753075d031b83daa49fb09e54a3346b28fe96fa5593e15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9ad8b85023c883a355b8068ca537410ea5c4f9acb1773558da49b9791f07fa62
MD5 e046b9eb21fd76167b2b3564dd36936a
BLAKE2b-256 5bbc5bd9c2caebf67ffd8247b11594e0f0fa314ba593bb696f0e2b2ab9f1adc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa37fa0120b489de18e9b0a78461d95c458f5ae289974f54e66f910627ebe9fb
MD5 949a5c61291f8d2b2e01146faa9933de
BLAKE2b-256 e943b5d542fecf7d275c6fbf1a36a3de2c04390d19e126768d7882f7e5b8e097

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a995d69ab3b6e80be50cb5e4039bb6502a9dbece4bfe3e452f08f2435835918a
MD5 998e6d372669721a4c3b3e4ce70f4fd9
BLAKE2b-256 fc254a8fb36fff118cc555f2007aa6c9e355fc244c420380e4edc0a6ef5fde9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 df853707447472147ced53df9d8632a5a527f1e20933989b038ee6cdc6904c5f
MD5 934f413d9a29a9ef41780a6c6e206449
BLAKE2b-256 3f98acf4cc60e15a02b14fa5e8a9a17d437855ff604611fa107863e05f617e06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9ce1ff9fca289632f779e42156af953973c8a9d72c5f9f06b94e9b8145b7abbe
MD5 c0ba252377998acb17413b73e33096ca
BLAKE2b-256 e60b3ffb38fbf972facf4831d68388dccb118603947c0bf08a834e40c8c1c302

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 572cd9a6bae7f63cf06d275f0559958a878e3c7b28da2c594266081704e1a44f
MD5 9b9421387a68e4a5c1dcbd1d687732e2
BLAKE2b-256 47a63804f57be8b85278023b4b510c6f7450a01f619ea5b953a4da957d44580c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fba570dd8dd744b450e632ac7ff1ce73f3112812671d32b946ea0f960244b4d5
MD5 69ae353830f45e78a0b8edd0c712d099
BLAKE2b-256 b0bb2851d407164422b497550a1b911f8365783e3854f06346dc8761d1527f25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.92-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0cd0f2537573e34d9a37953aea994868982153c4d2d70a0f979213a7810196db
MD5 ee108d5185df631beceda767a6d1edb2
BLAKE2b-256 86613ad29c8089af8864873b4d2f58b0c47b3929e3df599e9c622cd1e12cd2f8

See more details on using hashes here.

Provenance

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