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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.113-cp312-cp312-macosx_10_12_x86_64.whl (750.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.113-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.113-cp311-cp311-macosx_11_0_arm64.whl (744.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.113-cp311-cp311-macosx_10_12_x86_64.whl (750.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.113-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.113-cp310-cp310-macosx_10_12_x86_64.whl (750.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.113-cp39-cp39-macosx_10_12_x86_64.whl (750.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.113-cp38-cp38-macosx_10_12_x86_64.whl (750.0 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ffb02bf00dc0cf1dfa7213631e962f736df05b70e40d1df5dec1cf8ac4fc6b6f
MD5 2c7dfabc33d92c10f943610e47656cdd
BLAKE2b-256 415c910c9794468a30fbd05f09d8ac70ae4106dfd0b19cce0a10c65627ca6ec3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e229f60d375e0e660bc07982c7fd0abe88c675d3178b72fba8eefc7d4e44c33
MD5 d6b8ae32c77a37e8131bc5fa951281eb
BLAKE2b-256 5d93e86d869ef3b20f875f0c9eede568802f02a46015fb4f8cc5a78a55e92020

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92066d6b9835234ffe8351a837c3f514b5d53a3dfe2699ccf3ca501b36a2b61b
MD5 017fb75fc3aac267044f51d4d9efaa81
BLAKE2b-256 ec1165c0be8b1323cc9ba3a38201166a39df2d701f24d54fc4359c6812d73200

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b6b627c5c026fa134b2b74de7aa58ab7ecaf5325fcb62c466829dcc035108f42
MD5 1ccff0707c9258ff13cd5b17435a0b54
BLAKE2b-256 8de7a4bf4f31d0815ed00e183f4a26c6d56146b6f0ed3626774faa44aa8b53c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 67515a4fd53a572c15fc48dcc1855fd60a2e65d51f560b7af382d8c7da1b2c1d
MD5 d85695182137d672a7e03cc98efefb46
BLAKE2b-256 c2848b2e7b8ddc651f831dcde01ecf778e96869f25af3ab9a01b25b41e33041c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 953236e686ae03a2b97197d85121a0a8256e9b4a934c7e2a308ee65f126c2c4f
MD5 3b5611469fe2f477c69e2fa389c2d6c7
BLAKE2b-256 e9f247b397775624ac459074bec8126af3f23aa03321a1963702dbd63ee905a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c28f32cda0903a70fe4c30874b4a14198a2ddd279da22cb5c8804f0e03e57b6f
MD5 84cb94f151e7d114f8f9850ff1e57fca
BLAKE2b-256 9e436b278753f1d1988f886e469e2b2f91da7d5f55ecf5d5ae7102a64935b8a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f69fc9c6fb4baa49b19c75a931a6cc6f424f013a830ae6fad3357728492c1dfc
MD5 216984ed139e5f3035d3df8843e211cf
BLAKE2b-256 2400e352fa4eab2bcf2035334c0a18696255cdb9be16d57c34df38e67e495e1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2cfa2c953179aea11ccfd537a6fbdbe76c3a2bd660eeeab0f2cff2ee7af7ef7b
MD5 6b1ca40d7cafb8f31088046b7756f305
BLAKE2b-256 6591e73d53bd9798dbb9afb827bfef67355715861eb14d9abfed1b3410a39783

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50a280e1c088b148cf1dda62d13bdad7b754f54646c46e4addb2a6f57c0c9744
MD5 03191636d0d887e062abbef3669c2239
BLAKE2b-256 475be5ff3714fecd4046b0e1cf4fced612304baef860da05d044bc21a02061ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0aa9e23e5b18046d48d1d36ee05af368aac3d2730c55fadb2de2ff55f58f20f5
MD5 e0e14f7c4be7dbeab6681f1a58d24ec1
BLAKE2b-256 71531079c9078e85285ce36c0318e0a1e941ff2dffe9bce0c7d45f3142b79270

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3a90a3263de591c3d1f710fb372569a9acb3f7194f1a8371e7770a011b399c6e
MD5 35ef5f5f858fa47856ec9934ed12e79c
BLAKE2b-256 7f9fa437400f7e00c8afd9f9fd960cc28adde9b781427969ee9f713a93e546a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ed385c6ffa9ac5a9f0dd10ff693ca988913e6703519385f4e593faae77363bc4
MD5 5a311f49045d57c867bf797f0dfb18ea
BLAKE2b-256 1e20945c679d015aeb73040f28acad282593a582b11bbbb4f60498118bf73e5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e277fee3220f9e7defc747cc4744dd2b1596c68d34df3874bd3cc42480d807b
MD5 f6ead1c2a3dd403e1b494ff8387bad1e
BLAKE2b-256 165655d96e177878f5253c2d984a9573b64058d9bcceeb57b44bd775a84397b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5bf36d6b5e8fefca5519ee0487d43c1e8a6bdf025a92d7e507a8d31fd19bf1e
MD5 7b6bfee20f1e4913d4f1cfe0e0f015dc
BLAKE2b-256 2b7cb62b021605ddd0c25fc86b36e873ab0a0aafc22d7342dd3132bc72f6c57d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1aeb10c3cbd9a029b6f37a2df1aeeb3dfe8df2b0e597dcc16de0adb011daa6d
MD5 d78f2999b5101e3192b6d1234ba03944
BLAKE2b-256 b170f5122da54448b23932922a45cf24a3bc5b59161da1e7c4c87d95f1b72a14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6136e9f0fdea7b09574cad45a58b8a3c3294be9a6a9939a666ea23a2b441ff26
MD5 8789f8d39509f87a95b60e52615d035d
BLAKE2b-256 d86e8d5a4642ae3a3e5f4fa1295c287251e8f3f0747734dd8f94ff31b426b94f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6abd3631a845f3c2226f128d8fa851f7997318ae16a17e6342c694ed5e838859
MD5 78b46f3cb3bd3848805ed15a3c4e14a6
BLAKE2b-256 98dd58a5f68bb74433a390a1aa3b7827e9444b383a0117f6723f77b292a4a3e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca4d23b7b220e93be1f0929e0cf11e992a6670c2ba6920859d94ffae9a2ac093
MD5 d9fbcf9c0dfb4f51dccd2f07b6eefa51
BLAKE2b-256 ad53e6448d889eba390264525807fc53b298306a785189e950cb7b2f85dc5136

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.113-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cc78420b0b140be66233d7b137c019660c5d154a4eb8117f834edfb421fa9ece
MD5 aeba1e1bfe93b9d5c2a3df7dbbe6abda
BLAKE2b-256 85e6b618afb82ab50793de208915a8f5a108b750dab58887d9d5d974173cd637

See more details on using hashes here.

Provenance

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