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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.100-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.100-cp311-cp311-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.100-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.100-cp311-cp311-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.100-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.100-cp310-cp310-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.100-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.100-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.100-cp39-cp39-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.100-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.100-cp39-cp39-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.100-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.100-cp38-cp38-win_amd64.whl (637.1 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.100-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.100-cp38-cp38-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.100-cp38-cp38-macosx_10_12_x86_64.whl (755.4 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a9157a602bf9bded1adf256fe0d5fc86eb8e12b83cd8628f0ca7ce6e7f08e9cc
MD5 f1acfa141aeea5049a0c9c836f6717cc
BLAKE2b-256 0ecf3504e23b5067a75e88f036330d97577abab9cc7d85c7bf8a91aa47a61c7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a9b1a4cb18b8d66afcf1370434f1368e122b4beb12a6dacfda313ec5ba15fdc
MD5 697228958e8ee34191b2162caad3007d
BLAKE2b-256 f566d540d560f630dbc66981c9972eb6c48e82048cd107dd31ed7ca7cd6d7f60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53d9b4e4a2adc45727459633bd8658569ed6bef9ac51281709a118342d043e3c
MD5 1f2bbbbf1e5edddb3096fc0087ad33d2
BLAKE2b-256 d5e4e516654ae3544ffe179a3aa5561484dc824322917f420b7758473d9c6921

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ccf9ad220a264f2be44c3daf3cf61abe3b96a85fa13679c20be10ddafca17aa9
MD5 daaeb0814ae7fd67e645e3ceb1ea22be
BLAKE2b-256 34627f9da6456973f4e42f9a582cf601dcb6756d6173112056582c71ab0b5ae6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3bfc661fa691ab7db81c4548cfe32f269c30b799f5875296dfa864030dee22d5
MD5 563cc1005328fcc51afa3b7a68a0ccae
BLAKE2b-256 78b7924781ebeecb794b59a961c1bee84dde54d2fe3b4812cf6f7fc90846c78f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eaa083294aa8c78b2323d3708cb354d710e8d24f57d623cc459015c814b93e04
MD5 59d49c3b4a3bed974ebf270ed9557769
BLAKE2b-256 2e2f1822b41d9323700016910a329ea56174af4a34a1880f79dcf88f30be09ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2060c3a3f00ce908ac58ac2a7ba7cb11d7b47c1de2eb6a453533a7141db8385b
MD5 246dc02a21616f5a1e4ff90f423ec61b
BLAKE2b-256 e4275d11d0569d5108a848f126316e1bd00d11abb16411ef1b4945212b6628b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e07c11b36879f246fc660c202dff7d8b15c238d494fd4e7f3d8421adb8cfc260
MD5 92b28345ce189b5d382aa9c0cbb34689
BLAKE2b-256 0412dbd9a6d95f4afb8b46865cd1c3e6fac6fb15ff426340e5d34be0c4fb93e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 554558818f8865d9a3324d3516b295c3c3ffc5506cbc11dbc60c16a4b54cecf4
MD5 c1085245e403f3b34570aba18d49a24e
BLAKE2b-256 7255998973639dfcad724cce5b844a19bea4588f84d3f697a34c309714ff8f9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5fb5e9537911071cf127b64f32e4b3f18865cddaeb3b2d75d05292c95651602
MD5 bfdff2ebb27b33061f0aac101fbce51f
BLAKE2b-256 b7178ed7507067bb2fd5692c35d6387d3330322ddd0fe790389006715d59a71d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c1381045b9e46fc29e163e6bf6b3024d3acae27dd2f3fe11e2e09ef1dc61b90
MD5 1936d5a110c599284ff27779fdab36f6
BLAKE2b-256 cf097db414f22dd96ac92a3209dd20317dd716d5f114fc3b7283bc723062dd49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 adafd650ab07314bb3ba68c4346497c2eaa4e086fbaf0e282b65df3a651db4e8
MD5 306544a341767fc6c79c2ceaa4957b6a
BLAKE2b-256 0031b6949fd438c75fc2b2e058851111a5bcc514737a59fe369955df06b9a642

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 89ab6f8b5db1a7626966a8bee518881e77e1f3af4a2a3594d3d288e66539d081
MD5 523f73abfa5348b9806104506b671af6
BLAKE2b-256 0d6f18b6da4eb103c0f61ac95b61ce77f3ed0e4d00d64f7f33e10c30086d9fa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b112c1aa3027ffe3cf56148cb5a79e7e05543e2b91a0ed3ee961fe466b5f9d3c
MD5 7b3980a189c718e13b452ae88600c3fb
BLAKE2b-256 038ac07ecea306767e6a6bce4bb62c5adcb84eaa8d1ec816e5b0f57bf7542c80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0715693ff6f317d3833202850b66ae2666147e2f01f70ba9b21cba3ff3cc6a1
MD5 7f01959a962ca13ae3a05267b016f778
BLAKE2b-256 adbdb8f03f2c4e148605903168d80b1736aea31ba519969b8e61d0832aa0c713

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f5edaa40c2bb9b8fd714d75993f0ff593e41e01cf090c519dc94c8a8ba4c79e8
MD5 481104609322d658d96b2e3ecff2981d
BLAKE2b-256 f3be5bb2b8ed1d370042af3d533595c4e6aad7c0b6259d6dfdd7052598dbe730

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0906da82b60c6baa57d02cb90fe3c2f69a360bb5d665c52da7af62f514a954a7
MD5 70df220b645036433fc868ab72eda767
BLAKE2b-256 3f6c2512f7cff064e7873cef01d39f6f846fc36307c6cf9f31c68100142a3fa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7790e8ed033e05cff99fbe4c85d4d69ce2a996362d182ba14774414b4ed4630d
MD5 219dda2ad31025b7230fb00ac1d2a86d
BLAKE2b-256 8b2d30e68b276979f0f187ea3a559ba6d9010a1da8b5c5c31dd3eb053e6ffe3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 069551f50f00337ec9292c19d9b86fc1ad728c7b48ef8dd399a9a2f69266ce36
MD5 c0615e93146605f06ec0538c72d47a62
BLAKE2b-256 abc405b918b76a076c76d592a1ce392e471e602d08475b5e78392b5182f32bc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.100-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1cd3b833733b102b07fe81c655bbc3e24c0223ea03bb6970eba0fd874c62f954
MD5 de864bf9eba2cdf675ca3d017e00aa69
BLAKE2b-256 5ddd7a903f25313891e6743a7223abdd12d7a498553c5a5ab0accda6f8f2f523

See more details on using hashes here.

Provenance

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