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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.98-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (795.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.98-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.98-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.98-cp310-cp310-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.98-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.98-cp310-cp310-macosx_11_0_arm64.whl (745.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.98-cp310-cp310-macosx_10_12_x86_64.whl (755.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.98-cp39-cp39-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.98-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.98-cp39-cp39-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.98-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.98-cp38-cp38-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.98-cp38-cp38-macosx_10_12_x86_64.whl (755.4 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 572318dc3d6e24b71369e330b5f628624486c777ad09d16a1eb78dae889a6ad0
MD5 4024987ea94eb89ff4b637dfdb62094c
BLAKE2b-256 caad05a667fbaa4ec1f28e94fb7978d596a2c467c2813b80dabfe89d06ce244c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41bc281678707dd03ab952dfb830df26155bef18bd4ea69b145eba474a1ad02f
MD5 3f911acd42f6eac7a60a5dd679f2bb6c
BLAKE2b-256 9b50cf5c38e4b702fd8f04288fb81ffd4c2c4971b75218735deaccdb5863f891

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89dfbc3543df9736505be7796aaf9b7fbe6cc9d0720bcc08be9b1388d4b8f844
MD5 80f995b0958af6916028f8e585d5c147
BLAKE2b-256 d3db49754090a19b24dfe93069b4c1ace9e48781b1272fc9cac5e80213bba435

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 30f24328d75058c1829153015ac2f1a9a31368e2b15a2cc02c384d291780eedb
MD5 618ffdf755b182aa669dd29deafb33ef
BLAKE2b-256 aa9156ed44bf8dbe362edc2b885992f35092598a1feb50d347b97943305fee17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 afef84b6f8f4497908ac60bba787b2d366885d0bcb298f860355094a807efd90
MD5 20c1981520328a8f0c155f4e4207efbc
BLAKE2b-256 b7d028ca6f9d8374b1c10ac46ec795753e539aee99e54aa3433486e7f245229f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c062fc88ed4ab5852945dcd96c9eec13b6ea90c902fd7306c8664ddd8fc1baa
MD5 5a8331742961d4b80467bd3ec8168a4e
BLAKE2b-256 512de91419d73e8ab502b148118861e5d3aa87f23ce6692742da00c983dfafbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f7e5996d32e9787009fcba1a66282f1631f7dd6328fd8419e9bc7bc3f715a6c
MD5 4e566434e0c280d8766cde17c754ba27
BLAKE2b-256 7dc8f5839fb6ee29b12d94be01a0c0ac40c61a05b66a1b3a6081f3eab0f5f2bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02bef8434be76de9b123e180eec11cf26af9a87165ec6673e15e560893255e05
MD5 11ca31752faa746677a886736969ba81
BLAKE2b-256 242711327c16e6d92872d225ef2ba58d235b99f263fdf009ba18c5e46f662de2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7891922f05281860aa42cae68661a8bb450a8554783075d8c6bba2b7e9e273aa
MD5 7df27fbc8015745f59ce67cb946ab452
BLAKE2b-256 8546a2255baab82a3e274be97fbd810cad219765b34e45c9f58ebedd043e7eaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b81141b30779b84dfb74e7c8227259ad29f66d23340ddf40c2c098d81b74e689
MD5 15c925d702fb42d5382f9a5585ae7d71
BLAKE2b-256 42fe719b6b1f2a1ac781ba23a276853a7f8f8ddb5ce6ef45b57a9803ab867ef7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfbf33c3b5c61608507eabfa78ca843023b3f53591967968077741cd9159d218
MD5 06440e4a1b8c672da95170419ba79f72
BLAKE2b-256 fb403a27097592314b347625d56227c2a7814744389f0d56cd8f79ff746faf54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79e9e8c4935920b6c200296007912b494918ed82d98c2d812b3719a1c9ea8942
MD5 399f3424f2a56743bb60d4f1d4022cb6
BLAKE2b-256 31ab7d458ae91e8f100507f07d55559808d9add2033e4076671fa62246c1c132

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 63787a7a8b81673b8e70ee4c262fc70737b488576ac74bcf511b435a66bd0ae0
MD5 3ac7b823bce433f1ceffcb6f483356a4
BLAKE2b-256 49f49195a9360265a0c9acd8327f2a5fbb015b0887a07be3aa518ce43e5ee5de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c99386e78d734c756421441514513e494d1d17957bd578c0f31909453553470
MD5 f0ef4ba9b83b835eec837e62c16724fb
BLAKE2b-256 90fee03564e2ec875ceed50a172840691d302abf105d51defc0b7204288e0f85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 876d015df3e49e17c2c29a7dd3d24d346256df64ddd0ea61279bab592a27b6a6
MD5 c887556a2505b7d3199b515e9901194c
BLAKE2b-256 e871db9bf41dabe46dd03a925587cf16df62f870c840243d3a8f434641eaa8e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 01b956eecccc56668362eae06ccde4a696f3f968cbcae42ec349a21f801cca89
MD5 18c7e626dad5d889a11f5238ac71833e
BLAKE2b-256 591d5e7a871c8b1004e979f5f9487e97f02cac76232a5558d470b79cb2f72dac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7e39ea63465f9d4a96e596779971d7d2a6cfd4357ef40d35e893beddac91b3e3
MD5 b139165bf4e35c860e40d6d7d8d9a11a
BLAKE2b-256 a2270e12b858b496a439acc26ea96cf42ea579b363371822d029190de2100fe3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a89d17532d5d808e8c1887583e12fdb12a7b5a82913d08feda77965acf41198
MD5 e7a3b70e6973b4faf1073a5505bbe2c8
BLAKE2b-256 e41a014e544a6e7796aafa229903cf3df02cd0fd11b9973325f7c5e20171663d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 775819951e17bef7aeef94325a37997043ce928c4e7f88fd29da944a00dd1b58
MD5 163298f6677b3e10da0505fe198e8839
BLAKE2b-256 a774610262016de66bdd98782613548b93106ee92431b0e191208e81ace44d40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.98-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bda5e16645aa1bce223e9de085821167609e1bfe54f92a8f4e15284156214516
MD5 8dd85f5fe5ec7325d161bb75e1148122
BLAKE2b-256 c2800e80d60d3c5fcefce701646d40485c038f85d70d7de556f090ed6114c9a2

See more details on using hashes here.

Provenance

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