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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.69-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.69-cp312-cp312-macosx_11_0_arm64.whl (747.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.69-cp312-cp312-macosx_10_12_x86_64.whl (756.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.69-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.69-cp311-cp311-macosx_11_0_arm64.whl (747.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.69-cp311-cp311-macosx_10_12_x86_64.whl (756.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.69-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.69-cp310-cp310-macosx_11_0_arm64.whl (748.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.69-cp310-cp310-macosx_10_12_x86_64.whl (756.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.69-cp39-cp39-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.69-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.69-cp39-cp39-macosx_11_0_arm64.whl (748.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.69-cp39-cp39-macosx_10_12_x86_64.whl (756.7 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.69-cp38-cp38-win_amd64.whl (636.7 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.69-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.69-cp38-cp38-macosx_11_0_arm64.whl (747.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.69-cp38-cp38-macosx_10_12_x86_64.whl (756.5 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 76a915026fca1348d9a26ae69f36c36a176eb51173ec30b2cc6ec3e0a8c67b02
MD5 f196e2680eb1d5fde5d0b138a509f4c7
BLAKE2b-256 21de3ee7ded7de4790e18be4a297582184acd5d555ac493d8de1c4fea1a095b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ea7b0879d072dd61926bd242b1be4687322576ecb9835af42c51e812e60a7bf
MD5 a946357ef9324152f98bbc1e5c71b631
BLAKE2b-256 a869e2a9d93cda9b2e18801fbdd9b2394dc029a719658ae26acb37073b01d67e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1757a00c7b9af391f655b8ec87f9c578f8ad80bd667f1e6f35e116863a9a408
MD5 9b36edd52247175920c1a24645f1be77
BLAKE2b-256 c1becc5b88b5a385095af9eaa792dfcd5b863fbea1d9f0164bfb1f8143fdb4bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 15c6bd13c9450d4b0c7ad16b9d19a8684f6526f462e6b7936ef537defe3752ba
MD5 b29a8f88336b74e6381d22fd9e4da08a
BLAKE2b-256 9d55a8f55ca7b6a5564d91f82bd9c91ae7d0cafc2aa8ec9bb9b5b502f0b9e557

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0bed52f37231b67201c95116e4f84e0139f543b2c6f41875cd6769065794c210
MD5 314e6c8239636a15ad66d00f2ce2f3b8
BLAKE2b-256 d5cca54bd73383d2a579aaafb5934bf32692587a57414df8130606190762e469

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae37466e43194f4e82defe5d8fa7af53d9dd6ddbe95ebe99aff2f1dfcf426fce
MD5 e684d58b2d719e9cdbba0e53b4dd4900
BLAKE2b-256 e5559965fa68261c41e57f7ad19534f5977754e9df2df20682d5dfd8f6a0ae51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3ee73b7a2258bc27d94b915d13fa49818876b8e2e700dd3a2d7b55c74c031fc
MD5 54a39191952ebe8b892cea46d1a8b64d
BLAKE2b-256 7684f817ccdfb0700fee00733000b61f6b786a911b0894497ecac3d3dd8f87b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c662cbd78be762f6cc8b5601d174db4ff8e8abbe51e8d7f19c9b70c8d89704b
MD5 34ad23aaae68e6308e5be3fda5f0a0a5
BLAKE2b-256 c624e867bd2412dee04776b2e8285f334ee9a88560e9318b7a79818bd3586a01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a2d35485093dfe6a7a05ceac6096779c1fd6a0e0548b3b2051803e9297595472
MD5 b5df8862553ad7173d59c7ea02beffee
BLAKE2b-256 b5ffaf8a469cef28244c34f543c052faede224fedf6ed9ff0581e7792abc9380

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7d13c82e20e60dcea843634f38d18605415d6832b6a360989a24da07f71bc52
MD5 52b95c5327d04396e4855959906ff224
BLAKE2b-256 2bef1726930ab945b0ea3826c6f767944b2ce5f7ed8a2a016c24b3f0843b204b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8f9d58421bff8643e81c9fe5ee3fb4a031ec3f64459c27dc40e2a5a29f2af8b
MD5 f3d40b0c7e3719c87b021e6904e05a5b
BLAKE2b-256 742680837a5e59a8c4f8813b330daa3c5ecd7677edad4c8fe183e42db401ebc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1cc727f817d23554bbaa207bf46b4b09ea56ffe8b0fe14a9016a33c1f3cca04f
MD5 1d39c40400fe64bd136a96dc913dcd22
BLAKE2b-256 6401023dd5652e6aa1d734c2f206bff690e3f03d842a7fa697de26f88bed7459

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a5c252eb62a1030e1584bf075b63b1db3a788e4f6cb95c2cf7c4af4d6e500ecf
MD5 dc1877c5f21b12a2b0f569c3a773cf67
BLAKE2b-256 9bb26e01b5d65fec7d6480dcd2fa31bd9d680ff0852e9a514ccc55c1c0817f46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e267f11a543188033495921835b6f5e5181c43668c3c0ec97a4f4a707b90d634
MD5 4ccdab663dfd2bfaeb29162fa6e8fb96
BLAKE2b-256 b041dbe1694bf600962f9bfc836c53a16e5a565e2a0899f5d2b46b8762371542

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25397ada871b7e7cf93996333e84cf29b2cf1890133dc2fe543b02b7fc1dea53
MD5 929a3f4e6ad7a76a1a947ac0b87782c9
BLAKE2b-256 7262c9da5b94bf6f9f86605b88572d0ee29b15a53129792979c2d7213df7fe46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 698afaa056289f6adda5c10b41143cb042c616dacc3fd1d50e6dc86ac2f3fdcc
MD5 95d18d9ea7df057c725f1b3d86ad47e4
BLAKE2b-256 4c1acfc53e0d4792734fa49e3b1539fcb547406dd92e9aaa1447385164656053

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f0ef9ff0ffb12477bbcbf26ac1f2814aeca583129453922a42c02872fe184fb7
MD5 134eb13f5e158225da1652e13f9bf729
BLAKE2b-256 c57fee22d6ed18353fe2824c2532e82acd4896ca3028c3dc9bf8166b4b5acce8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0761a3e84ce9c5288e1ea298e995fc61fdb35e4cdb831a8d3ba2d8d1e47d8c2d
MD5 48a43620036096ddd09cb37ef8e4a33a
BLAKE2b-256 ec6588b4f44f8d3174ce1957f122b9f331ec725d7c7c71d31ada4821f7d944ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a801cf345b15a560c1bd45d4ad8b26901d457e591fc48d4fd30c435307160c65
MD5 bbf229dc3349226d8035e507ad5a78e2
BLAKE2b-256 ca037f8e67f8a57e5413f9fa856066882974432a72cd7472292332e01c88d3c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.69-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa4e730fd6668ccf2189750650dfb5f1432fa2e359f7dd59835cfc950ff47a81
MD5 3af25afc17e4a933f107d0b2412fa9d3
BLAKE2b-256 cf04dc3827db1940ad823cf47acc4159aee69ad3dc6ef3fe5bc6d02a6d88d0e1

See more details on using hashes here.

Provenance

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