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 Distribution

sprocket_rl_parser-1.3.0.tar.gz (16.5 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

sprocket_rl_parser-1.3.0-cp312-cp312-win_amd64.whl (637.0 kB view details)

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.3.0-cp312-cp312-macosx_11_0_arm64.whl (739.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.3.0-cp312-cp312-macosx_10_12_x86_64.whl (747.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.3.0-cp311-cp311-macosx_11_0_arm64.whl (739.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.3.0-cp311-cp311-macosx_10_12_x86_64.whl (747.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.3.0-cp310-cp310-win_amd64.whl (637.1 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.3.0-cp310-cp310-macosx_11_0_arm64.whl (739.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.3.0-cp310-cp310-macosx_10_12_x86_64.whl (747.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.3.0-cp39-cp39-macosx_11_0_arm64.whl (739.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.3.0-cp39-cp39-macosx_10_12_x86_64.whl (747.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.3.0-cp38-cp38-macosx_11_0_arm64.whl (739.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.3.0-cp38-cp38-macosx_10_12_x86_64.whl (747.3 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file sprocket_rl_parser-1.3.0.tar.gz.

File metadata

  • Download URL: sprocket_rl_parser-1.3.0.tar.gz
  • Upload date:
  • Size: 16.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for sprocket_rl_parser-1.3.0.tar.gz
Algorithm Hash digest
SHA256 3418a9e4baefb0be6dd15388800bd80de632cdacfcc9708623b7ba29fc7164f0
MD5 e1aada1abd3211f7ae15399e17a948ca
BLAKE2b-256 1ca5a69f92ad1359cfbce4c86486162257aa8bc9601890aad315a269ba51b76f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sprocket_rl_parser-1.3.0.tar.gz:

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.3.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a50500792f0155a489fab7484e28bbc6f1c946716064ba0a753bca9152d3d675
MD5 edc430b28b7e04a3f0660447c830e772
BLAKE2b-256 4dd105728eb9c94c57b0ee6c40ecb0e6387ed70b893360b25c1788252d0ec0c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e89ef0ce60c93d79eb5c10b6e9252fc664ce1846f26b2b911024b60b3d35e59d
MD5 9899b92a8a0e9f7384c52f826648988a
BLAKE2b-256 9c4ea24df4867c5fe8730f38695ce99182c13fae56ebe7d0990db33b0de55a41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfceb093166baaa6ab3ceb7f073451276ff61957bbc32759464b02e279d63a1e
MD5 16b931d288050cd6ced8e14db732d0c0
BLAKE2b-256 178cdc399075b0cb647bd10a202d745aefb88e8377b58b7eb919c053334224e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a409ab5bcd6263c25d0a8fd72d926ca6e732107640d71daffb96232ef5ffb94e
MD5 c2d1caaacee57de14ec2e4d801a5fc62
BLAKE2b-256 4c49d54c57dc6a5b227afc4e50b8f23fea0daa6d6c41aeb76c996eb8e3c33e88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e8f9c972265ea8b1662dce2d785fe30e396beea6fd472386b082f9607b82e187
MD5 4891c9de58ab75d46c11b812cb2ad0af
BLAKE2b-256 871709d67c828bce3739d2cc2ebaf09544084b49a5c0fa2ea6558dcc5610e099

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1db9ef3014313300983995c692e4591c21e858a4c0a437cdff1f577f97dab041
MD5 7a20929aa7a8ffa8fc0aafc36269b2f7
BLAKE2b-256 37bf6dc2c6b723f333d4eeedac81f65ea6a471a52cd5018c68cc9b293fd9c7c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 305b7db860dc39e927ca8b488235437808e75cf4d6ab881cb921fa6f814982b2
MD5 e2c5fe780ac5fd2d15d599d3cb86b201
BLAKE2b-256 d78cca69095d54e53122468ee32abf5e37804a8bc52106e0067abb307f16eb28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a9a233f186c10be4a5df2aafa5c51478105b62fce8da660851e38cc48851b5ac
MD5 bc329a2502230491508a740bd23838bd
BLAKE2b-256 da941749bbede67ee4a69fe7fa6e2fe6cec7e3086d27467d09510cb5e693a444

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6307b718703d1808dc44134f543af4b3cb815a2f103c54e91a9b3d9f13328fa6
MD5 0ed701399b307013b2191ddd53dff7b3
BLAKE2b-256 97214ec8ce7feeb6c6e47cbdc6d75fe75a10edf3aace8dda9caf0cc6d050bfab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f51a7c9ada52220e5eca230e687756e453fec018a2fdf1b48e71ca289b0dd461
MD5 cdcc5ea11e49e4458f472f9d08da2ee8
BLAKE2b-256 5831c0e2d3f4e897b463fda54143a9e832265dc951eb9ee03c25e5948d2a4388

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d0033787532ca8bd6d2f89879d703270399714c8fdc4506f4bb85c33b674a19
MD5 2f53b24ba5affb93f62e810d1234b465
BLAKE2b-256 0600e7754776ae988641d91c8a4e29ebb4e6f5b244d48242db63b4bf68cbac3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 97b955df20c7d3fabaca16e3a160669396d261dd3acda46158ed59abc08d4dc3
MD5 20cc20b35c47b5288f42b795f24546f4
BLAKE2b-256 f94693d42050b8aa013f8d8e8d4e1046674ccd742023563683541283a38cf688

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4fea567433c26c2d474cbae322e6ec24be15c49f69ad90359553a50dd287b914
MD5 d3298d7082bf8345333396a473cb4cf9
BLAKE2b-256 3821d1a6e65fd2d881541ec048cdfd41109352e3705bc7206452b7a64aac89dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec296f1772f93c2f3747b19c14e76af125d6afd5594e46a01713a30263ec6bec
MD5 d4f0cfa6dfe24f0898abc758f1743ed6
BLAKE2b-256 ed580d7518f261459359ea8eafef6b425207790562f1f9bf36fb7896f6bdacf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a4f7c326e8b2931eecbb12f28e39aa161cbda0f91ff50dbd64d5b0ac1cbe874
MD5 762d6701270d5da762c7783be2df9092
BLAKE2b-256 68c414b653eba726507bcb414e0ff5fc8df0ff4f1b53c272ae849168fc9b3686

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69e697d6f427bb2b5ecc18ba28bac0fca2af521e48ba8bbc3685c9b5ca7d2827
MD5 a089a9f3836d6e5359b2a3bcb9fcac91
BLAKE2b-256 169c22d242dfe6d930edbc7d368ce03fa5d09effd8249a7b61502570d2a24455

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f6ad647d3a9b683537975686a4028c48947f4729faa63d8e3e242d12692daa0b
MD5 57dad1d724ed90221196fe55842c461f
BLAKE2b-256 12f025528802fa9de6f9964c44ffec41fc15ffd4fb1548b2cb7beecf541cb77d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eefcf5b01d9304e4c2a9dfa6526b88ec65477d87ffb39e0b742d914cbc1701fe
MD5 92f91dbefc5113769f0312780fbadd28
BLAKE2b-256 edea08408bf020f1d188de480001aeb1a88ab11f064b69bc5284f1357c27ab5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1d63b4efa2f02f521876f6b96a497c21647dfbcad3339c2cd1f8f5c6d1025c7
MD5 240d9fedb21213ca63a73a08a4adba0d
BLAKE2b-256 a5a971dcf0c6ecce4661956917c24d37245d8868448104594a2ff1582341a11e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.3.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 71b4d38f41d3383afe7b0b6f5760d053b26f464063621b568771ce537c06428d
MD5 765f88baf37def04d406d6ebe4167925
BLAKE2b-256 bca25bbf1d74471e21f7f899ec6c981ee7185eba4d3ca3eb12e365c748559f1b

See more details on using hashes here.

Provenance

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