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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.112-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.112-cp312-cp312-macosx_11_0_arm64.whl (744.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.112-cp312-cp312-macosx_10_12_x86_64.whl (750.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.112-cp311-cp311-win_amd64.whl (637.1 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.112-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (796.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.112-cp311-cp311-macosx_11_0_arm64.whl (744.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.112-cp311-cp311-macosx_10_12_x86_64.whl (750.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.112-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.112-cp310-cp310-macosx_10_12_x86_64.whl (750.5 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.112-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.112-cp39-cp39-macosx_11_0_arm64.whl (745.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.112-cp39-cp39-macosx_10_12_x86_64.whl (750.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.112-cp38-cp38-win_amd64.whl (636.8 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.112-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.112-cp38-cp38-macosx_11_0_arm64.whl (744.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.112-cp38-cp38-macosx_10_12_x86_64.whl (750.1 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 96ae3b559b58eaec627858288d973d5d8c3ca732262282c3d4aa5b7639faa92a
MD5 b9ad6e028ada6b851a94484ca3584320
BLAKE2b-256 aa8f2465ad681a71165f2793268cf19ba8003d36b60d85af703d2defbe2461d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 396c3e3f13be791fe83ef2c5276d43a9f4ba4468d8e7885d85c6ef63fbec15d5
MD5 b45a625b9f1057a54c46cca5b7d558af
BLAKE2b-256 440f1b6493a741c72e712bed30c00f5dcff23c70b31f417e6db220112f8c0d01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff1f6cac40bcb987d9585e9165a2721a174c6e99a7d0ffd61ff493695ba35589
MD5 330f22e671475449e3944aff252e3be5
BLAKE2b-256 264d0f85ed4dba645ef5e6ccce37ebbef68ea6cd6fbd68e592b0a54e27931d7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0694de07317a0453ba1256aecf3031664cff57b84876b5816af03fc6f8f64fac
MD5 3849bac163b8d7922fc7e53c19970260
BLAKE2b-256 05ea935d13638e3021b6069efac9864ceac119c4111a99c7c4b2fff044281ae0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 685a0af384ecbaf0e117667f9d9fc9ab605ea2e83022221443f7c0f5c757fc56
MD5 c3c6a8db5edba6968514cdf9fad556f1
BLAKE2b-256 d973f506551919b13db690de2b580d401024ed14e6b6b147f025a3356976faa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 042236bcb3220eb6c97cf7298323fec6bf2ed43415429f32db5746d94b81ee0b
MD5 441b00ff3d65fd2da292f8a4ff8fd45a
BLAKE2b-256 318af76d4bd37f9d379f8437209d80aaed30cb459c947b49694ec2264253967f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c240597e3f875095c01f63a5b00bdf1d0f16433de2b7ae5935d9e666fa66e658
MD5 54dc441f3be334072f0fbb3ea19c32dc
BLAKE2b-256 445d638919e95b0813822bd97ddd76289ef6b3394543b102f3e7bc7d83174f11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eeb031b43078124b98b6308181e69e89b726303acadf0a68cd38df7e4b684d21
MD5 5319feb76465e6f16dba54a1627ef79b
BLAKE2b-256 f7c0ff993c09c7917d1dbc7804de3ea4035fd398a2911e7bce1c87bb29c44762

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 20d46aec8a26ec5c9979a58572f5f17c22b43d1b2f75804e7c364508d57f08c8
MD5 aeb32db1bfecf88cf6b72f80f5a0e542
BLAKE2b-256 cd11dd504e64947d9fea5fe346b01f412c051c47e97c90ee972eda48f7e5ece1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ad82d59ae6063bd8799e28c52c0e4e122e2356f6cffcdad192733f6a149f302
MD5 0b7516a2ef3e68ebc0d0e3b885d8f8b1
BLAKE2b-256 b85276f64012aed809208ac40c77d41ebad97a81a8f401c7eec589748f70e9aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15cc4159a6b0a58fa66510db28b2ba6371103e6dedb7a979281bb18ddc13108e
MD5 467b3dd0cc7d474ab0b29f679bd033ce
BLAKE2b-256 9dd86c531be685ae54c8e6b2dd4fd6ef89f69badd5bd76411ec521ae6bce1148

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fb1375d6abb63c9fc1ee954e4ae821341aed73d1396d02d609f989227313d062
MD5 f3cbec0e75395a9b14a2ceaba47bec3a
BLAKE2b-256 f675461a3073feddaa2da6cba37a407cf40ba549fae08e3a346f13fb7634bc3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0e272665831efb1969cb5a8e627b6980851459900fb20d3cd4040a57974e4dde
MD5 a96281317d19df3edc7e65f0717a52ca
BLAKE2b-256 440c6483c13b373ea3046b06fca824f6007acebf6111191f09d4262d8a98386d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdeeb762cc8e09584eec936e976af8699e99b0fad9d419a094c1787a31700105
MD5 cbdbd33cddfd8bcaeb365860382f7da5
BLAKE2b-256 c3e7c83ad03e301257c552b5bde92d11746465a61b84b172a4b9d1957795b7eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e36b5adec7eb1eb1efff382ce867be1c1bc83ed0b935571d67b2a49a67ea918f
MD5 afc9a2a200c96feaeb8c6f3a508afadf
BLAKE2b-256 f7e70f9ca66d9c96116df38b6bef4e55beb9ac3f0fba698b5ed87bb1b40082bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f96376a244bff5942434750a6c5716da4c46324b761d3215381c894718fa2109
MD5 e5e8591e8b9c063198ef16a720255461
BLAKE2b-256 86ff0e9472909b981a99f1d65fc195dcb8948fe8bb8dbd5d707e7dad565192cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ad939931dd9b85aee698bd37faf685143468778aae714344b53c97066f6434f7
MD5 7a43b547b64892ce63e657584a0da1f9
BLAKE2b-256 33dfe9e345258150be84b8575063b4768898ad7bc8828721e89702dc63d20d06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 732ef27e6c25e54dcd16f87af2e5fb13e749455d4b8821d9469fe5b70b1a9ec9
MD5 5f01f43075edd53f1250868fcf111d27
BLAKE2b-256 1d7697407838165c4adea387a12d26490e55868fd3d6982c308995c31218fc23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e944678262415007253beec93a97a80e9323a879b3dfb8c28bd4ff25de3f630d
MD5 1f271f93b26c89019c96d8e797b9f325
BLAKE2b-256 228653880b60ab6d3a97e514a2ffbfe92479fb5eb77764a654c54274516fe825

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.112-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 178bf24b1acd06835a6cdd8ae705c86c4ad0421fb56b06536b88fd2cb5843831
MD5 3f66e5c9af5956556daddd7c027854c5
BLAKE2b-256 3018400d24f518f4863995900efe765a58dfea62cc6be2f0aeb19ed53fbacc36

See more details on using hashes here.

Provenance

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