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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.66-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.66-cp312-cp312-macosx_11_0_arm64.whl (747.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.66-cp312-cp312-macosx_10_12_x86_64.whl (756.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.66-cp311-cp311-win_amd64.whl (638.7 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.66-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.66-cp311-cp311-macosx_11_0_arm64.whl (747.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.66-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.66-cp310-cp310-win_amd64.whl (638.8 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.66-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.66-cp310-cp310-macosx_11_0_arm64.whl (747.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.66-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.66-cp39-cp39-win_amd64.whl (638.7 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.66-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.66-cp39-cp39-macosx_11_0_arm64.whl (748.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.66-cp39-cp39-macosx_10_12_x86_64.whl (756.7 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.66-cp38-cp38-win_amd64.whl (638.4 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.66-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.66-cp38-cp38-macosx_11_0_arm64.whl (747.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.66-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.66-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fffba1e48049f3572e67afa10fce68a16b5482c860d4cff56b7ef70d0a0f6129
MD5 6e63f5fd550c975d980ca8efc359b6b3
BLAKE2b-256 b58b889a77abe56be6d912d24c8bf7671e0a0920c760753deb472fee0d654470

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 430b76f534e7a10b8b1a339b9917f554c5dd074751f69424b4288ecea747b202
MD5 42007cb721028406fa5a72439c6ae2af
BLAKE2b-256 10f772152bfe16a3200c132f329155f020fb49d3f22f1bc2f3b74be7ef032476

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3be63fc2f45d6473bc40853b70019d8119a5f7e473046e54045cc2d07deac9dd
MD5 169760d5021ca254f34813c0da9cd793
BLAKE2b-256 ee4b5eb7447476348d0cb2eaa6980f0d61665b4719d1cb474c37e9548d1894ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc430c473c4caa60c30e75b35e5cfe22651d72728011ccadf95f3742a6474553
MD5 de8ba23800f56b7db4f1af946ec64dd7
BLAKE2b-256 8e8d351f380409c145226103533de8aefa452195c1e3d3d3d2d350c3c35c0630

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2f45d4a9918c8dc2a8433742d423348d4a5c67764dbbd177da73431fe394c1e6
MD5 abebec6cda5656680ceb663ac4c58ef8
BLAKE2b-256 02c5314bfc7289ac58e37a2d798bd61fb7b5d82e055e0b0e5a9cfbb18162ba8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 612b5eebdba8bce43de16e2ce7e5f569811eb628a272557b073a7bebe596ad61
MD5 9f88ff987a8946e29d9007a5b52e29ac
BLAKE2b-256 866914bd540885d631bcd32095c2c9f349c9451549e00ca34a0d81bc83cea2f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdbed70aa433c6a4cd9eaf2cc7bee05baacf1d743d0ef3693b9e9d6cae0a8fa1
MD5 94da74a0a8e09368e797afb04f07bf31
BLAKE2b-256 c9b167622df30dd70fc8afecf21bf799fe44d25819972683fd2089630adf6cb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9d2209d9d4eafee2c827df06017b6ae9a915faa0277a4a97f779bbf77aeabc83
MD5 57dc5ab831c58077f4830dd74ece0010
BLAKE2b-256 2cf87e34cd5c911a4fbd58a03e3c51e1cd84c3fb1c4aaf54a85bc9888aeef4d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4625418389f4fa51b74b6657232e98c8abcc498144060c21f4b961e4c9ff8a40
MD5 ef672eef9fe8b79b0a7b668b540973f1
BLAKE2b-256 cecdcdc1b8fea062be515a21f32daf3c3f906bdb98bbfb2a184f2247eb4a60e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b75478979f6947a2464880f1a7563eceb7422a1f2a52e833d15c86c0c0c1678
MD5 9c89c1fa3d04ccb80256258fab154555
BLAKE2b-256 11456804b1f3c93b70c0e86a5301b8d26c8840f6b1fe91e062bad0c594ef36e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f9062e9d989019200523a29a51a3df990a2694f5421d6bea50ab0d995815fb6
MD5 4638d84b2b5b243ad133b6d0e6972c10
BLAKE2b-256 d61fe6fa48cc944055a73126b29f4bf44cab68143b6aabaedce008280d670b3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 685a615453f4a2b7c51316a9417f557869d2f1764fc0c98df3b7f6ff028011a5
MD5 a6532e8a3fa2ead8363a7e848a403597
BLAKE2b-256 5c3b8b532469592d9201d10b07724c2c20eafd60756f93f9819a238539647f9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fc7f702b75974e5e9de66968a7c4eec1bad02ede079a93f101bf3d67253cc34d
MD5 51a38068bb3206b5bbbf4e88b57550b6
BLAKE2b-256 0f5d83543a97626bdf43a670fcf496cf08a5ed96f8590421b76c42c289871608

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7190682339744363b4f00b3d8dffcca2be4ea7e98662803970d8e2ed220fb1b
MD5 fd9cfb38e7077f5b7dae41058012dbc7
BLAKE2b-256 1b8c9b27afe8924addee21a2b25b31052947548f15d6e38b0dc53b76b984d1ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b07086a8fb06f78e11363a014fa64d5ab232e92b49ff331edaf180da4b4c104d
MD5 72f0cffc69f1af49c132960666be28b5
BLAKE2b-256 0514976e68338a849f8d23e9ac57a6c733a46ba9aaebbbf4a2e963e2c84e6aee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 531b4dc5707663cf2cbb25ef39851e1cc41fc12cba45b333b9e7ab8534418577
MD5 b7a47941983978488f341b742d12507d
BLAKE2b-256 070b84e8638f1ca1ba0894b15576b7a088b7afcb19dffde4f09af611a1bc275e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 022c9603e775a8ce78b81ba4bdf29d711a58dded24c7fb67d1121d9a4999a7de
MD5 4cd1cfa9de7c1b3bd60ea2f2ad002fb5
BLAKE2b-256 d2ba492fa90f844e96e96c243c7eec8212d82708cd8c3d99df9a9f462fa6c9bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ad99390e6ab8d2ea21bc42974a98218a9d9a4032db0c6e20328ac75321c9215
MD5 b9be402f759e04acb34999ed6a0e90aa
BLAKE2b-256 fb66f57d829178ccf878de8be350b84a97577032795f428b7c66784c86dbefd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8488b9853721d98c441d389d01992b8159636983d0c47541c83643b6b3c49bfc
MD5 dfbbf23d1d70534536ca31e933749212
BLAKE2b-256 4df9cb2b3b20cd2f8e96169a3600f24b25f5430bf9cd5706dbc0f253d1fc53d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.66-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 21b2a6171cc23a9ecb909eddf0f79f301e57f41f390e3a7fe8e22535b173a6d2
MD5 b26c6f711bd0e4e905c7fa39c8dccc84
BLAKE2b-256 d29e49f166bccc0af6443038f47fe9b1c673ffa88bebc4a579c5cfa7c3eab9eb

See more details on using hashes here.

Provenance

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