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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.99-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (795.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.99-cp312-cp312-macosx_10_12_x86_64.whl (755.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.99-cp311-cp311-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.99-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.99-cp311-cp311-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.99-cp311-cp311-macosx_10_12_x86_64.whl (755.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.99-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.99-cp310-cp310-macosx_11_0_arm64.whl (745.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.99-cp310-cp310-macosx_10_12_x86_64.whl (755.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.99-cp39-cp39-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.99-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.99-cp39-cp39-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.99-cp39-cp39-macosx_10_12_x86_64.whl (755.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.99-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.99-cp38-cp38-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.99-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.99-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a0bcc8403cd7b0b784368486411ad3fffab1938c3edf6fbb11264acb525e8a5f
MD5 88a7d0b3b2e52cc5923e6c87984191b2
BLAKE2b-256 d8b84ca896f4a99a9e539eab440f8464523b202d063d82a65b71f0d436939f43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44c609522fdf3be4d7d69d1a4390fcbab6d98795fd3d6c91d24f1f208bd0fc74
MD5 06caeeaa33dbc14ba51c7910db3bb766
BLAKE2b-256 2a79d1aab8c163eafa774146c4c7d353fa78cf125abc9e652a1eba961af9d4f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1aa3f884f8c273b2ac2a2759535b38bcdbe975de86fb9de2df9216c7728e3826
MD5 08c40a5eaba86cef954cce51f813f58b
BLAKE2b-256 9a7e10bbea12d02ee5a002374bc07822f42c640eec52a724825f87bb257b136a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a4893df553ec2277e3c61a34286e96c82769cfe343e5fbb86a0c53cfd9555015
MD5 5993d5e0aafb185e7a59cbe7b6b17f46
BLAKE2b-256 11202fb05d39646ac13e7390e49a2fd94a96b53c3b1a7b49ba03c5e185ec776c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1680345989ee0bc6d7bcd1bd11104d49f1c756adc078d01abbea74d405deb056
MD5 4b893b67fe36c9e3141d0a9c93d557db
BLAKE2b-256 61b323094aeb0bd0423f1da5eda3ebf76374d2738cda6e5cfb8b262483e9459e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d1a2ee20b0e22493c3eb1257373b856863bde97c864af1a7b164651139b3899
MD5 0a90dfa9c8f35db9668903356958a9a7
BLAKE2b-256 8ec6a77e0c8dbab2f381f1241dffa5818c87b7781cc02b72d62f9ffc3e7ada58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcd46063e4af2a240219b242782fbdbef3dde96371751ca6513e6d2417e0d4ab
MD5 1021bd2d053cb58741ada198a7be69f2
BLAKE2b-256 c3169fd1ff0ae019514d00efe380e52e8f54a2a609eff2432b2f71a56b86b5f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ea7eed247ef2a4c8cc00c035ccfdbc8f80e4c7fd0098efcf1f480adc8e37cf8
MD5 653188542486d5725b1c31c8570d9741
BLAKE2b-256 7fd89b19d9a64f1f91f38152197d76883a861af3eedf850ee6181d566d041767

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c38cdb69dae963384b8217eccf90f1ed104eec0ee786763cecc05c81165ddb44
MD5 1ad3a5c1cd17e97617c81c92db731f48
BLAKE2b-256 14852085fd80f807691c09ec8ce045b68ed6e8a9f8217956903dd6923578e517

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3aeff0e9456016bbae49114f932174ef8ada213790281697434c470baa3f37fa
MD5 fcdc72e60078dabdd52c877a93999e4d
BLAKE2b-256 bd0fd0eda6f7899d3f58f45779b9a196eae3839d547178df9b2cbd81cb8530d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60139d07e0073cff4d7e3c65d5ceb12a0e52e9cc477adbe5dbeef453622a4ab7
MD5 e24841832f0c0f1d7162ae99ad998d1c
BLAKE2b-256 d82a5187b910910b311c75ea634bb1f5f1aba2932d0a0dd8c9e43c0195884387

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93a7af9f9df8552b66683e90f5e1d00a9f667cdbf97fef103f5a40e5ed2e90c3
MD5 94a5a58b3a71c32baef26e8dcb192ea6
BLAKE2b-256 5442f6dd29c35759833560bd40c8c97be67de09dac25b184a39dac37b6d42963

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5918ae682b39a6b7a1e2f6276b1ea14655a435afec3ab2eea06701a63f5eab46
MD5 29c9dc8cbcf4f05725da869fdd58f5a8
BLAKE2b-256 eb16451f3bc78ed878c7aa4daaafc82cf14ddb2a780f3a01407cac8abc703959

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77343a2d5b12882819f1f49d708b1e6d3f62c2b0271e9b0ddc3b682bdaba976e
MD5 3d58331ad3f7998b7c4379e90d5b0e28
BLAKE2b-256 5a5407ef7e63e7c4f4279d1abd7a7fef0314b62670dffa2cd31ebdd38d62a3ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edd5af2509a49b4de76af842afa1b0e3e239d928cbfeb43d15e128f897143131
MD5 dea8521e582729253cc9ead8a4c22c9b
BLAKE2b-256 e8c0e5cea9fd60a2c2121f441e72f3c973a4d8446093c8695fb1b53e6b20b499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 947ec0c596118a8f1487a65eed380edf61ff4428888a93da24ff23c8494b9525
MD5 9ed437c3a31e1964e62c70ef742440c5
BLAKE2b-256 9597a39e24c2c6acce2aff0dabcb458ed58c4efa08e37e9c1a7bfdecdcf95529

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 335eeb7b84135b745b2ee4e2e50646a854cdbf936fc2f5cd186dfb3d145e27f7
MD5 c171553043927a42a848a4d5a5cc9491
BLAKE2b-256 eb65e5e6e104af5f5ad2140172b0dd446ce4ab9937c51509ec6a102253e965b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83d56dab42d5fac88a8eef46223a7cea1967f28751c8ad6c2e4debf6ac558de6
MD5 68032234d6ba40188a349afc0f31b8c6
BLAKE2b-256 7b636c63a6b0e465ccc4748716326809b88fb8b90e044c1c0307c4e59f51a4bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec1fa8120ff61c0fbea3cbead1705cf7ba0b5ccf1056b3247596cec426e75faf
MD5 116d97c21f5e8719cb059f7f3a8f0358
BLAKE2b-256 4301b76d739b60611b6361121fe1eb597ed32bfb64199ce56a63896b5db76967

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.99-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2576598205ac844ccf04a83b5eadf08c377fb9b16f5d6e1b5868bb083b219dfb
MD5 483fa8c5cacc6a4911eefc89b5b797f5
BLAKE2b-256 7f00f7d7cf1d0ab83ad6a11aed52574368929125db361861f7fa2a6364cdf371

See more details on using hashes here.

Provenance

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