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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.118-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.118-cp312-cp312-macosx_10_12_x86_64.whl (750.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.118-cp311-cp311-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.118-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.118-cp311-cp311-macosx_11_0_arm64.whl (745.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.118-cp311-cp311-macosx_10_12_x86_64.whl (750.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.118-cp310-cp310-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.118-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.118-cp310-cp310-macosx_11_0_arm64.whl (746.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.118-cp310-cp310-macosx_10_12_x86_64.whl (750.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.118-cp39-cp39-win_amd64.whl (636.8 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.118-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.118-cp39-cp39-macosx_11_0_arm64.whl (745.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.118-cp39-cp39-macosx_10_12_x86_64.whl (750.9 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.118-cp38-cp38-win_amd64.whl (636.6 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.118-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.118-cp38-cp38-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.118-cp38-cp38-macosx_10_12_x86_64.whl (750.3 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f10b81137b4a6d7f480ef34d800484b4a5266724ae20fb0845eb220f73bb098f
MD5 735008994551afc1908ba1327326e63c
BLAKE2b-256 61bef8e7be2bc116ba281693cf7c677b258275d22043e0c65a9d68a436f1dee1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 774113290c01def0ad2f15e76a0e66a4b62e7dfbe4236227db73d12acb6e9fcd
MD5 11e56f93f2f3aee62da6060c6253b4ed
BLAKE2b-256 73fb5b937e5e5452e69e85d46648fb9ded45e1769af1280a4dbd807006f92361

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9e3f95a08a3699d511e2d2f5f67167f7020199adf327c910cb352de6a71939f
MD5 177eaffe00db3a9d948b36de7a803da0
BLAKE2b-256 d74e4447ee55fc0514e6c61847f6cdf7724a48d5ddabdeb0b03c1283b6f3813e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 faa046fa6e5c210d30022fdac9ccc2ab2cbc51f9484721d36592147b2aef5eac
MD5 d23e0944509225dc901be285c31b4c28
BLAKE2b-256 36614058aa048471f56de57d06f0edb27e2d442293b99119e2d2c723675d6083

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 89bf06c6c276c49d3b9be3a4ed949d9c6ebe20e9f099d63025e07d17b4f83456
MD5 07966ee915c1a027bee70fdf2be217d0
BLAKE2b-256 db81382b571a8aa2ddde529a3122ee4c3a6e12ac1b997febbea0d5753529f21e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8e6361141de08bc4f547ba578e5d5f9f22b5ab12c8318b2171123ebcabbd5c4
MD5 5c64665c00d7c917a0a91a03e98bfb3f
BLAKE2b-256 0cd9aa63fa9f1cf105328b006a3eb489804f61f1510312f10fc4a53bdcd9bb51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4badebd2f5d7325bc704771a59dd6f47fdd9a9ba13d64abf15654184e5e8a97a
MD5 3a0b63c877d2a6db8db4626c71951d35
BLAKE2b-256 a513daf0077c7667dd0d093159b6e96bafadcaadaa99ecd00a11a78af848dbee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 49a177d6f2661aab50ecf4432ebe5eb956fb0a0f786a80152daf435e112b27a4
MD5 390ef40a161a62f345236d72ed173334
BLAKE2b-256 9e93cbd59659c8b027d9981f74cc6965580f6ef7b47b8f35bac8e98032a565dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 136df9ed44d32cfc2d2797532d3d0dab7b3da672bbdb3d333fae1db41778593f
MD5 44e44ef2580179278bee29f7a73b44c1
BLAKE2b-256 4362278cb87a1fe7ac2076f877ed913c3a3a60794b7bf2ae4caff2fd67a54a63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31975c80c65cc8d9470e1fe1dc915dcb8203169ba12e748afd6853154f654c51
MD5 3abb8b01dafafac6f8c85fb8e017c300
BLAKE2b-256 c3b8868e88742ebda680acac03951448bf1f04a031082ec65133ba970c3ecf19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 644929be074acf14d577633b7c01c765ee41978d12fb716673c4db0cd6a31e61
MD5 3f05c55c024007e35bf0fcf921e22675
BLAKE2b-256 8483ff3024e1b6e3d307f8c878b958e6dd58638c8be373be372f9a39dca08cbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6d90605a60312467618993cebf19cd8f3c037b6eab7f191520b576e4acdbb2f5
MD5 46ce51a4601fef9d7b78da7d9977fa5e
BLAKE2b-256 a39e4afe733f2116397ef4d374b1665a3fd53bbdb27a9192fd9d2ba9fb6c0781

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b4f4ae3a18562bb775d83501410516eebed1dd98941d0f17121dceabecf476e8
MD5 879456cd6453890f91fd5bb1b03b8b04
BLAKE2b-256 222276e2aa12a304033d8c94b6f305c5a0e548ee349e2f90bcb2d5f4c26245e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcc84b5eace4ffe15cc7f07c9fee44e32d890f1e7a7c2df52766b58b74301e0d
MD5 45a5b4405cc3efaced1478a853f71e6b
BLAKE2b-256 2a24a567f6b232dea9dd4da4d24888042a6f848364a75ca01fa7c43f5d458532

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41c0f4e7f01f201c60b8d7e738dc48b22bdfed171b2481f8f3f014de5e83484c
MD5 2592dd9ed93b4b751d0fdf0aa472baf7
BLAKE2b-256 2208de13d409665893c9a61db3dd2ab77f75df274c6bfbccc7f0b51a2e331141

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0387bcf5224be8a0dcd0f0314510ca2060fcca677ed3a919bedfada284cf8dca
MD5 51a35895084b12fa680b9d10f3e9ae84
BLAKE2b-256 a3057d5d53d2912882296ae6033232e68dab559b0fcb71c088aa8ce5dc4805d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6a93f8d69f60f9b288ea6f517859f3cd531a2f69b4be594ad66b87cd017cc811
MD5 0bf93cac2dfaec3908c90610efff9c24
BLAKE2b-256 bb3f9e16a1b42202d189f2bd36ba3da62a6b07357a6a0a5e271635a6e13cfb86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef170024bf5d5241f5829749baf7b7b8390760560b1e383d66d52dcc03fb3a3e
MD5 adae5033e3456f8de755efef48a95476
BLAKE2b-256 cda65c3401e2fccf31bc43a496d2da24c88ea66d34454735bf5ace6a0cd696b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 196ea2b9892c76c84012c582e51b0902d3e551bd602ce0859dc34cdd92a105ff
MD5 35325c55355e7cfe31f262cef57cb0b7
BLAKE2b-256 42432d6ee4a0df9c4661085c1dddd193d0d7c869537c4d9c86f7a07fcf69a16a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.118-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cfd28e62d8be992eefb692257e0a03919e33b5c4aba669bc05e2afb2ee2d17fa
MD5 ef2056ae4f5f9e0b124188c0807e4c83
BLAKE2b-256 01c38b223f6386472768d8dc14a056eb8d38427dd05b35e79def5fdda18c5df3

See more details on using hashes here.

Provenance

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