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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.80-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (801.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.80-cp312-cp312-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.80-cp312-cp312-macosx_10_12_x86_64.whl (754.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.80-cp311-cp311-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.80-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.80-cp311-cp311-macosx_10_12_x86_64.whl (755.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.80-cp310-cp310-macosx_10_12_x86_64.whl (755.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.80-cp39-cp39-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.80-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.80-cp39-cp39-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.80-cp39-cp39-macosx_10_12_x86_64.whl (755.0 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.80-cp38-cp38-win_amd64.whl (637.1 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.80-cp38-cp38-macosx_10_12_x86_64.whl (755.0 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 73785b482681162211205f47079dd7936cba60941bc97231ea297162a7b751a4
MD5 32afb04ce3956997296e7fd193ed6d77
BLAKE2b-256 c760f74dc520daed19537be8d8435de658a29d9e67119639e0e66ef2431aab02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67c49b963d1ec495c734ee987d9aa70039ed9c4b6eb26dce1b33a3d500c83090
MD5 65f8289e2d8137fa47f88b31f8536534
BLAKE2b-256 005f5f792dfeb388b3b1b297387cdf022ca4b16ed93486ed86d16f32d0aec6d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40042a263831504114151b20700473a9d8d6e0989123e765b03f54c2e680d2d2
MD5 03bbc7f6d00a5b54937d08441a59364e
BLAKE2b-256 b68cb725ac7a24c8f601ea175def5ca7fe2b978ca424cdd51d534fb6cdd9b006

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e7af5586510090a1bbf7b447e8d73d02ea54c62ac18dd4ea39adae4054321647
MD5 3a1434c9c4dfa38dbb9136e162b8cef4
BLAKE2b-256 db835ed1d9cd3fe2473693a8ffcc424853f6c29f3ad27d051aac53406617b860

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 493cc951ad5f626462661250347359ce594c53cba64486dc19b8536f5451db16
MD5 01221ac7b1786bea458e483db6a3c5d6
BLAKE2b-256 8d92409b2a87b4a1b3def7e7c41dffff9f572c6d5ee8c341886f002acce08a91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcf7787649ac94a9dc08e1eef750e0aac5cf9c2e063ce2a6fdf20b26efc27fad
MD5 812d5985b2ec448ac6c0694b27f0a5eb
BLAKE2b-256 54512df15172df34ca11c5475a6705f5e8e96739113f9d797c052d01aa1b22ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b637d45b380aec872b76da7597e96f781aafcfaf41c5e72ab97975d1f2994174
MD5 6c54537896e75df996eac116cea0e43d
BLAKE2b-256 be0e6c093f3b684ab902d8296a88f476aab02b8c8c88dd6d93812e64c16e917f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80a2caedca901fa5f0c2168b6cb3ab51e3a23bb73e989777ebafedb101ca8028
MD5 5be0df59fab7b29b6117217d2d206cc0
BLAKE2b-256 b0c7b1a7f2a3f6ba7409504b584d59158d6b90e1b1a7597d149cfa9cbf2daa88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1809dac855d684f30256e227bfc7c6bb97ec0089894dcea5e59f9d069c0b16a9
MD5 4a50003b8441317f9a68974a4def04d7
BLAKE2b-256 f2f1bf08b34176d17fd3f2849f7399e48985d89c86ad3e77d628c331b15a8849

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 afe690bf3676a670bdda589bedb753f4354cb34da52d535ecaa32187bdf88be6
MD5 1cd6868949a41afab38845786a7ee82b
BLAKE2b-256 c729021f7588d70b4cc24aa74c938905c4dc0e12384ffff80799df5f3512f597

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2094f92ea6496a31240a66a144c21b874bb87e42cd05ad8ed07712d2729f0dae
MD5 92d698b0e5d9c4b0e6d1834a377dbdac
BLAKE2b-256 f8eeee56425544c18f031b6e92910454fb461fba02a21402b2c291da8e27e86d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5e16076fa409175d8c2edc67a5ff9d0ecf090ed06169e219c85cdbef3038aeac
MD5 7dfb91fd374e6ccc8def33ecc17188bc
BLAKE2b-256 99e937451fd0b518373d2e83da211409c251c368905985ded7ce59f1c5d34fbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b5287fdc3cccc98d35f2400d56b67b441a16c252ff4202532ba4c3a78fca3821
MD5 1bafba189c13c7ffd937299d4545310e
BLAKE2b-256 029ede6c5e055ef795781e160b8ce5a1d12e1efda2e30d56ae218741fd40de56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f4832fb2baca36d9313604b69f96d55a44407e53b71e42b45201c6f9eaf94d1
MD5 3d5a11bfe56bf84a1c2e811a6f5e86c7
BLAKE2b-256 a03b9bbbead2a19e05071c820031c87bd318f5bc1b75e267a684a50ba05d4397

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9adb658d3b8fdc838e5ddadaf5d27340c488a843ecd09a7dfa0b060d31ee7d6
MD5 a5ac720062b86c42e3b930414cfe8169
BLAKE2b-256 bcbd6011ff878d02735713de659f576d936bbc543056dde2380764420c694576

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b24ad3a91e63350a3e3c225c1ccd68b8e0533a5926cb338314d4fe225fe1f190
MD5 c8d0d7c7a772187811e45b0416dfae69
BLAKE2b-256 352f95a4ba905f0de0592acb8dae5fdfd12fc441b4a63e93c380fe39fa3efcb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9d0ff93e96e84bdb055f9c79afdebb205918c20c7dd12cf1ad4d517c09bb136a
MD5 dd75674ca07d0f980ba5b833244d16fe
BLAKE2b-256 39eab35ae008eeb13205a914200cea6c200fb6e9ec61d0213e1b4aad007bfc4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a30e7aaa7de2b5f437c7093f374c1a82e373180a118c2dc3483db17a850f097
MD5 92b246265f1cd4c77200cd4d885f58ae
BLAKE2b-256 331dbd34b0f6158216fcf52ea51dbc04951852ffd1d359c82564f27df3c66be2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94a9e6964b3418b816d86a5ecb011f04047b6b7ba4aebca7a6821c394355d02b
MD5 d67a0b239d77445af8b764ba4e1b1163
BLAKE2b-256 88ee59ca9ec9c961a58d16ece19de7806f7f0f5de399f24333ff82299d53a7a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.80-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e12dee08a77f57658d496922e431363e094d402b13f305be9f4a629e6f36d1f
MD5 21a9c271487d057474b3ab90a377dbcb
BLAKE2b-256 d504a8f146c84287ea0af8196614fddd253c8c519f0979ddc3a0f2018d9d2583

See more details on using hashes here.

Provenance

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