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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.73-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.73-cp312-cp312-macosx_11_0_arm64.whl (747.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.73-cp312-cp312-macosx_10_12_x86_64.whl (756.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.73-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.73-cp311-cp311-macosx_11_0_arm64.whl (747.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.73-cp311-cp311-macosx_10_12_x86_64.whl (756.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.73-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.73-cp310-cp310-macosx_11_0_arm64.whl (747.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.73-cp310-cp310-macosx_10_12_x86_64.whl (756.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.73-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.73-cp39-cp39-macosx_11_0_arm64.whl (747.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.73-cp39-cp39-macosx_10_12_x86_64.whl (756.8 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.73-cp38-cp38-win_amd64.whl (636.6 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.73-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.73-cp38-cp38-macosx_11_0_arm64.whl (747.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.73-cp38-cp38-macosx_10_12_x86_64.whl (756.6 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cc882e5fb6a8a661eb9ffbacf6286d7727f33702db37441db354c6c1b73bae30
MD5 11c8bc340e49a9a5b217d196f4f2ab48
BLAKE2b-256 00be92ca9508d9edbe46c49a9645b3a73f1f2b0a466c225dc05908a00488a1ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dc8a0049e96add48858351814220fe39da4855476c6157b818547d86398edf6
MD5 8cab48547f343f3b193fea036018ecd0
BLAKE2b-256 8093b0f09cdb14069111d37d2e72f718e4a2ee49fa1172b9fc1cf3e1a7855717

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7fc8f0167a35e67e7773dfc5df11841ff058e5bc640372e6b75125978294a33
MD5 6d88b55f9f2ef4b3fcb67b6c7b6daa15
BLAKE2b-256 820fe64721fb05b212c8eb59302d279fd44f9c82ebade062d07ef9aa2c9b2c07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fb2471d47a8b293626f524cb4a07e1568bf41adffdff3860d6f356c0d9616320
MD5 838d49338f6a2d9461e23d0f825082cd
BLAKE2b-256 91002d9d6652a3dc5648bea8e8a9acef7867e6479a2b2d78aa4b2710d74da126

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ba4221e740a5eecb55b32a837fb9add56be2b73024fb144649341e4bf5031032
MD5 cf7ad34c3f501691c9a3a099d4e62dd4
BLAKE2b-256 a1aabcb2c231644123204c4e0e5e970597b045a16b6638d8276ceb4d71ce29a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e12be63739bc38d65e701476ed43cdcd334e63ad8ad09eb4ac48257df63b0d2
MD5 d25a985b8e376c6e7bb1410d47cffda1
BLAKE2b-256 b106e1522bf83f9cf906704f510a9315c1ba49c18d325919ea326330ff9f921d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2962fc759d997866f838dd6c7b33b3d32ba2d05901d9b4b34cb5ed5ca0d02f44
MD5 96e48ceccb9fb34aa6e80cecba504809
BLAKE2b-256 ae11d4a7faaef19550dad90438b9c5df342d82e9297f2d232b6ff761d91286aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dc231293d0c8db385caf71ab3a94f39c58a9fa104c0c9034112bdbdebc2a354d
MD5 a2a7201ef2da6b2a65a711fba36e5e3e
BLAKE2b-256 ab7b67b25041a68aca1c486083fc73b5f5396e8b78cea552753e5555ebaca924

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3afb8da21926ea4f90ca606ec8f77f9072e9aa04883b4b0dbcbed5e1307a4f03
MD5 614f4b3cc7fd794d1c82c1f405fa8598
BLAKE2b-256 3d14b0a2d6fa37ea4a1ee7487160da8d5d3a019cd865c38ad50ac131a41631ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7342f90ec89a13ba5797cb36c66ec9f743cc697ccde1a82a4bbd9297ffc6ac8
MD5 86d0741f1aa3c0a69acb2ca3fabd629e
BLAKE2b-256 87fd6a1aa0a8b6f4f78065cf595ac052957c11f6eb0a9a99adf3e7186a67fa14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7737a108a6002afd18366baa589497ff27a8e9334537bacaff1c0f8701b31f5
MD5 c48e0c9aff97aababcd3a537ed854623
BLAKE2b-256 36c135bcafcfe30fc8d94699d7c0f50bc326b13ff077f485d71df37cecb6a1ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c5c1f86b12a9e34504429414132619b4ae14e137ec3835b09fefaa84c992236
MD5 ca7c36563308f0c5748cb82a72af8978
BLAKE2b-256 ddbaf5d9f3fc4a8f847b89ce960f34ffbb80009d26f7927ef4b9df54be278532

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e71024caedafdec134abe0557100af961a562370233eb2757ecace2094d00412
MD5 2a10e2eff649e12df2aea67b9d3aad19
BLAKE2b-256 20898043ae35449e0be5156920becf428e4cc58dd025560ecbcf9fbfa009b8d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fba2c1687a470db9fb535cd6e287c38afd55d4202f35cbe3d04b22c3885c0767
MD5 97f136feb76fba72dd81009612bc0e01
BLAKE2b-256 f1539af0c98d5ae52350ef6bdcb051de6cc8edfe374c1f6d832e99bcbadb2943

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3de2ed9cc5021d48aefe7fa3fa974592ad6f62c9f6ca6c69fb8b9930536f38a4
MD5 22dd4d7c4f2498bacbb370e25fc5934d
BLAKE2b-256 f5c0d7ed3bb88056e88c7f1418e5dd85a4c9a9d6e0b59ea28d4353a239792ab7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4a35b3ce4a95e9510fa5c48325fa818b0eae11f894d066c4e0f8272e404567ea
MD5 ed6402923cc4e4488211ba48082ee0d8
BLAKE2b-256 bd018f61fc9341f431f9f1cac7a8a85c429d17671023f6180cca964a2b8027bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5930cd3976459a4eb488c262beb049c3853b9091a5ec0a33d85b1ab3394d45b1
MD5 9f7935e6a2631e756e8b44bbf79328f4
BLAKE2b-256 3e14cded13e79925edb0a2b0d9d01032d3957f544968c6804c4d9853ad124112

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebfb2467f7dd1b93201a5869c4a6e29342b39d945ac16d35dd790a5bf98daf8b
MD5 7b6a789c70c6d1add8de5b80e44476c0
BLAKE2b-256 ce047c744f5fd308e83685fd2549a843e1e5b56d744094ec9a76be47001ccef7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4617fa4fc363f2bf60a67a66c9f1ff1ecc778aef5d6c1f1989058fa75bc1da83
MD5 e619dbb3985ddde94f4490e39b59124c
BLAKE2b-256 66b30ecf09b90b422c0bc00f3c0db27da95602384f66679cdaf17f4cde7b7074

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.73-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2332d5eb38e0b43263bb8f4da7a25408b02d1d907ff0fd97f13a1ad5c8d7bd63
MD5 b6f5a6edf5ccc2bf310cae43e8071b38
BLAKE2b-256 e7e0c8e860a13391082792a968c26ac44f64187a8bc85b5e1fdd15d40d43b2c7

See more details on using hashes here.

Provenance

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