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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.88-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.88-cp312-cp312-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.88-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.88-cp311-cp311-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.88-cp311-cp311-macosx_10_12_x86_64.whl (755.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.88-cp310-cp310-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.88-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.88-cp310-cp310-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.88-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.88-cp39-cp39-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.88-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.88-cp39-cp39-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.88-cp39-cp39-macosx_10_12_x86_64.whl (755.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.88-cp38-cp38-win_amd64.whl (637.0 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.88-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.88-cp38-cp38-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.88-cp38-cp38-macosx_10_12_x86_64.whl (755.5 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d5d03341be532e5a1bcce573cf4db76f3e9d092617a9a1ce01ad7bbdfcb802a9
MD5 97a4af70c7de28063a49a011dd9cb292
BLAKE2b-256 205cf06a942adf4a43a97bf2f690fcfd2b7db39b08174fa3a405be46b9e3dd9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 744e41e9c51eee351d418f222d3297a0c0e82983a943461bb42592e602cd9ea7
MD5 7db6b4fb20ea61cc184d01bc53c023f3
BLAKE2b-256 f86ca9c5633e31ec250a95316c6a1b80f83e6e3c799597e090bf52ea657df525

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6946e252e15a9006e241de094050111357b61c18712158999d4f5a589ad991f6
MD5 d4925cd1a453fa116002c1477d78c264
BLAKE2b-256 1c10eba40bdbf4f3c8f2e013a84b9bbd138e44a5a405483701a2b7da94a72e48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 54ca7be4d34c624326826538bb4407ffc6e6fc6da7a6fa279e9552aa06ac546e
MD5 d9e85edeec7e93b182c0fb4ab74a7f34
BLAKE2b-256 acb5fcd4216d81bf0cdb618afce49cbbc088f81c4a4451f0b8ae7fedc2b970de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8d45a42d991af4935976fa99db8386b4e0acbae4c3ea17ac0c97a0389f68c634
MD5 afdbd2af728130a5ebee8f1bc6b074da
BLAKE2b-256 8ffecc6477c5cac64e6a949ad97d7a3078a2af50a8392081f304b599ab785875

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11dc895b784d838178c39120989565547fd118a21791543ad4aa9c5b91774b08
MD5 d06345655431884ac36e83969d4d4cdd
BLAKE2b-256 e1db9760a910fdab0f168d4d5636a1168e6fc98105b6f13da3b09c1d3f7dbf64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4008565ad11dc0547b3ab0a3bc1c86698e483bbba911560317b8c559a916d805
MD5 eb25ad22a4c6744fe4674162695549fc
BLAKE2b-256 be891347c91f04da605ee6ba1576e9f4c0a83b5f9612e187a90ee744896de30c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93962ff72fd3edbb5233b483851ea73e351c5970816e812b32ba1e4147377f9b
MD5 e26dde8c682ef3ca52dc1c4ea802c9c1
BLAKE2b-256 b814febd7ef3d0b21e6f1e6fe23084d4b27f9bda7d769e4a381f190cabdfdf91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9db09d1cb75c6fcbf09406320b7ff9d82b647b44a9642be4747bfbbbd54e01ac
MD5 ab3abd182c7d842ad0357c44f014942a
BLAKE2b-256 2d826c51aac2d95056d20569ec9d1db7304872bf5ea679ac26e13c349c0f31d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0c37f3499cc9331db3cba9bf06efb8c3ef268da621c9c633126d0ff24390e95
MD5 d1413c48d2e7b3e1a4b6846b8e081898
BLAKE2b-256 f25a06bc3a7a32926d8b0e4d0046217b47a98186c4dfd8747a74a838b1039573

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30fca4e4981f51dfa07b71c95b7b4408c04807aaca4b18bb7722154666466868
MD5 47feadd02bce82199b92733a4acf19b6
BLAKE2b-256 2b0f7faaccc2a3a48d78b08f4c7d40f16c18286d08f2e53a89dbc088da1fc60e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 17a11155bac7a212ae2592c438f43c0c61c3415f7b6598bb1dca26f3c45f1449
MD5 ede6f1251c2ff9e73ed5637e4ece6bd1
BLAKE2b-256 15d3edc1fa5229980384d1615d9ba7441a566a0ffd15ad33bcab3ce3b158e7f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c538e19eb86dd4a93ba3005a6a89860064795912c462bb93e15eba89dd4fef5a
MD5 ab60071ecb8808a05965a0b377ffe9a3
BLAKE2b-256 9b1dd7ee1152e71d61f74f5a8d9d58caa9b84f0a1083d155d40eb9a24ab8f6c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af453fa8c01f2dbdb14e96920381e43b232c05817e20ca14e762e1f2b3e54f22
MD5 f653e5da0c8ea63eec5db1059c6d6806
BLAKE2b-256 27b06e28002e676cfc4df65baf6760c36d60c763d80b040caa01529bf3625b74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0308ba9bcdc34c93700ce42ea4610543761d2683102e5024396b7c50daad3b10
MD5 19e0793476b93a5389cf36e68b3d3721
BLAKE2b-256 866deefe4f98c54897e1cb1656c4181c3f289e30ffd9c13810a05b3a94705a18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f55391f269eb986bd4bbf2b8e3a59de11515a836cbcfa7ec75dc233dd7d38d0e
MD5 cd0fe7290d99d40d98bdb70a1fd0bf6e
BLAKE2b-256 d463c2229bb4941c281d05b5dce015f51406c19f41d95a8a0cf1db96daa38ebb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b222e8f23a82dc378b8a9c7536b64f57c5f4a40f556e4df74336686aa0e2901b
MD5 6b9c23d8719cc7168bfcf75b26bcbc23
BLAKE2b-256 eb93038ac6d679b9b2868eb30020c79ae197a91aa35033f30e8dadf3fa77e816

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e01b905bdfd42ea9ffa7e25b153b2210cb798607ba2685b185744f9414611489
MD5 d4c881ff640d9d1e88748479bd4744cc
BLAKE2b-256 1f5f9d19daa3cae922544b2eed8443f39b02aaa902ec3616b6518cfd3fffdaa9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e76c9835c1f9577fd2785dca36921e4119db45ce60d06c603749c7c8e46a10dd
MD5 f749cbc8c566c79e9d34bd7c5fdfa7c0
BLAKE2b-256 8f73f7b60f5bb6f3feb3649d0e93bc2176e5ecc1a373b247a06c480ceaa5a97a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.88-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 63c213e92a61153ad54fa649eb0ecaf9b397a9e54c28b7f4890fc5af42921f9c
MD5 3d99e33736e06980e7ef3d77a16f0a0d
BLAKE2b-256 bb01a1ff1c453fbe49a394d763400aa07cb7da3c08109f2554f06e5ffa5534d1

See more details on using hashes here.

Provenance

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