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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.95-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (801.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.95-cp312-cp312-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.95-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.95-cp311-cp311-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.95-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.95-cp311-cp311-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.95-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.95-cp310-cp310-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.95-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (801.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.95-cp310-cp310-macosx_10_12_x86_64.whl (755.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.95-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (801.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.95-cp39-cp39-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.95-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.95-cp38-cp38-win_amd64.whl (637.0 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.95-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.95-cp38-cp38-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.95-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.95-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 435a23b6eaf8353a4bf41ccf58470b127d1f88c9c9a582a16995f0afbd574f5b
MD5 f9dcc546a7be765659c586e9025dfc98
BLAKE2b-256 4a3555d161ba4eee6a2d32216d3009fcffbd9f190341a4cec88f8d402cc13bbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d322056990e45d26cd357923342efbc3d38a71e75780766b56110cc9be0b119
MD5 8213a6d163cb3e2943505c0e730af286
BLAKE2b-256 93d99f8d65a85c919f8480b453df45253a870d2b7a5808fed6f68402529959f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc43b97d5990997dc377ba41e49ae4bc96c3252b5d5459f52cd885df933e2966
MD5 13c1b388c916e2b465c98a82268b0c35
BLAKE2b-256 1ed863e9abee79d8a35752d3639132e6ff743ae7d5c013594e689976c6c706d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2abe47b5faf575184095d739f4224d48b16bb239de4e10bb4534fac4d39b8134
MD5 322d8c5dc421c3cee8089470b4cfb730
BLAKE2b-256 f85f13847bf93282568d85756a5959eab2de4b0eb62a5964b2ca10a09a08771e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fc60a265189a67bd39f52e97513df74ee37344afd2e89f45c5d82ad40bef68dd
MD5 17c3677b1b30d0453a42764dd1040f43
BLAKE2b-256 013c33250701dd9bbdc1275265737f0576c024a7fb870c9472715d938ec4350e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b52a601f7959fef670decc6cee7cc3c0025ab37ef7e09671825e0e7cfa2447b
MD5 f099bd9baf56ca9c913448d8abad0f1a
BLAKE2b-256 40a86019aea73eea2d1a261d403b9d5a94eda7424785cb99d199532b190763d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 843954058fafba4b790e0dc1500abbed1fec6f724c26116a5ad6abea2281408c
MD5 35d8c9151ec6b3fc19551ec97e306c1f
BLAKE2b-256 8154dbd0bc26162eca54aec96c9ed1d846a42d63c73f5bccaeb6fc5d6232c8f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aded67523f4a377a9e02195bfeba8894986fc47d03f1427120accdc106beefec
MD5 395c283fbd6b8b2e7e6b4767385cbbb3
BLAKE2b-256 c2dfa8b0afe10d7f0c244d67ebc93e20765d72ad925496c7e069dc88498a0351

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 02296b2c6cf972ebb570439735f3230edbb6a076783f15be5bf0044709ca1a11
MD5 d18b1c4283d76bab860425b93ad9dbe8
BLAKE2b-256 02af92d64d927a8d347aee19482efde0800cdae1bc96cc12b8c723db1f0da7d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b103f351d6317b377b1d786342f453128dca504ba6ae8461f5fe93405059ed2f
MD5 074e4ca7b2092a1eca252ba08629d123
BLAKE2b-256 dd832cb3452c4c22ab00c4c214872d9a53977c0615471e9b28e60c75884f8e9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bc46bfa449fdbf6f14879e5002eb3fc63c4723b2b7ff224ec4c3fbb1c5986b2
MD5 4147950510caff5b4060f7922018f140
BLAKE2b-256 d5fc9e8d4876cb7a1d8804b1d22619f89f96bc55c00e43de7d88e789e00ce4d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e66f4ddc3f3b9ac40d1e2710bbcfd0927a8d539185108fef658a6210d25a0295
MD5 918882eba42a977ec345f6d036d98eb7
BLAKE2b-256 b7c5761cf18de50f27a63944dcd666d8d42bb648614c338536f5089f239900a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1473f670200817bebc8b1c4e8571e3d3e0d6c2957afaba69346bb205c5491720
MD5 0012c4c0d14b7e81514919a27ccf2880
BLAKE2b-256 c2d1b712d145b8086d3c16172c41cdacd1bd27804410f539531e3ba4c5ae6dd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35877a6f28116f7ffb5a4eb0e4e1ae9019928c7a1f584f460620ebc9e1bfe92d
MD5 45e47deaa8ffcf66859b223e29d9215a
BLAKE2b-256 a058ac77657ed007f5d71195ad67afb3d03c968bf0b387000429b9f3ec57f999

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 373f94f1bf3d2a777e6d9986ac4333fa05193939eef2c1e2f050c91cdbb7e123
MD5 1586b62c5f1c571a03b802503abcf2fb
BLAKE2b-256 c64a52eb18191626e60bc5cb22f56383da51157136fef5c50c65ca31e81871ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9655631b4fc1b4dd4893958577f547f10dca70a02b12fa983085778d31593b21
MD5 9002735b23e66bd4f0a25d7d5eda7d2f
BLAKE2b-256 8fc0482ecb036c2df20bb45b4d961ed570ffc306fbe5ef8d23eda837936cbcb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 417807af9fb5ae3887e61ba2c5a8498af1294c13d163e5beee26665ca9969f3c
MD5 076d1e5d98b908cb6f036ba6b14f4ac2
BLAKE2b-256 24f14d7669b284b1a547738b3e1b27e409b29ff7a7ff759ff915c07fb4facf0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10b10de85f1cd2245595ae3a71df071f402c9069170fa86a39178ab8c60add67
MD5 6fa77bfe8aec617af3e24e03c0a3373d
BLAKE2b-256 0ccb11cc824a23c5f5b26abbed96c00399609196fada87b657be73bd292e95b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e99839f9088d6ff4c2a05a69d364922c1ff9ee161eeae0dc9b5443dcb155dd45
MD5 eaf87d9fa8ddddcbcdf35c6ebf13e190
BLAKE2b-256 1795e56a6400ed9bb55ffc890da22ee9bb2401c38d3f25b7f787ff6613e54231

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.95-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cb0cd3bc553b29aa09241561bbf3272fd77716d9da4796d67cfccd5b5a70f3b5
MD5 90bcc0b6cef081f4baa2bc30da4e8f14
BLAKE2b-256 7f99ab389ddbb5ad08f3238c7219a6e0137aa310a5a77fc2a7beccf21fc5c18a

See more details on using hashes here.

Provenance

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