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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.110-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.110-cp312-cp312-macosx_11_0_arm64.whl (744.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.110-cp312-cp312-macosx_10_12_x86_64.whl (750.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.110-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (796.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.110-cp311-cp311-macosx_11_0_arm64.whl (745.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.110-cp311-cp311-macosx_10_12_x86_64.whl (750.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.110-cp310-cp310-win_amd64.whl (637.2 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.110-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.110-cp310-cp310-macosx_11_0_arm64.whl (745.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.110-cp310-cp310-macosx_10_12_x86_64.whl (750.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.110-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.110-cp39-cp39-macosx_11_0_arm64.whl (745.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.110-cp39-cp39-macosx_10_12_x86_64.whl (750.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.110-cp38-cp38-win_amd64.whl (636.8 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.110-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.110-cp38-cp38-macosx_11_0_arm64.whl (744.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.110-cp38-cp38-macosx_10_12_x86_64.whl (750.1 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 343537bcfdbe91b8eeaebc26f08e18cf80bc148a85cd476d87e3b2fdc4e9a119
MD5 0f9886cdfc152997d5d21351cc4df046
BLAKE2b-256 9b8e06d87631f0e0b2ea31eda6eeb7d7fc74a76359102260e40eb247411aadf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d46b6d138753370dbc0853b1621b88047cc5c868cd40721f7c0b4ffaa49ec559
MD5 e11ad1bb20efe6447deeaeea602a872a
BLAKE2b-256 9a4ba2d286ee57663823c10ba4b94076102ec467d3017ff994a4b319f97b3cc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd52b1380718a220f516af667cd2b69f593b9677da1a71a54f18df0f390368d0
MD5 46defbd8cf3bf69e2eb9a9fd413223a6
BLAKE2b-256 030213c9c036d8d573ae1c84ab2f361346c203e5d8157aa4fb589b15cd20b757

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 05139858ef4e30c41abab15754d7bc8933159868a7c09c765d5b153ed8bf5840
MD5 86118971be91a33ecf75e02ffb500120
BLAKE2b-256 9094890bd55f53501a9410ab3c5f20a82f351b43071bf7c001004a6f92a581b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b82da00b167c0241ec497f34e338ef5d015e177e580aeeecd2a235b07a24bbcd
MD5 bd3b072dde9b9616df43897eacab998f
BLAKE2b-256 8b8321af79fd16e36966c7ca3d616f3079ec5d5271d8d9452b3d9243b9c4508f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e376cd3ed1567d3abd38075d7dad341e6763a67ddd49487cf1fe37f1bb8d6f60
MD5 c6502a35b6be583d9810eb792b08557f
BLAKE2b-256 900873f29b6e04216549a7805c42b94008a367c1c74ca1d4436e99e3098fc2fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1850d20273e04a598de2b00c31f3e6e6095b8101b73d280701b9093b564bd1fb
MD5 94c5265b3b2bdf49b1a9f343bc5130d5
BLAKE2b-256 4ba2f5b26a7aa91fac8d57e51f3b7cdb2cae935dca8496950f0a9bc693818266

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e849a5a7c609c042ed77ecc3a6ab8fffabed6154b8b56254dd696a1d12f5e604
MD5 472211afb01078e0ed5e6e8fe2e68d03
BLAKE2b-256 ee980e6f966752878a43f32238de33b40ce2339bcd0084d7917c269739f47376

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b573bc8b18bcb11360ffeca9dd63bcf30c59bfb12ab1cf114ec97384fa09933e
MD5 0db527b78215e5aa41f4f13f7f9e4712
BLAKE2b-256 8844ff707b675a11706a8f8096dd874cdbe468bda1b4d1a3d5b5557626621280

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e7b20d22a943b73f930beced5d119aac722c983b445b90432f22dcac6e296fc
MD5 c10289d5860f79784a6200a7fd73cbcf
BLAKE2b-256 419c2d56c5352b60f479516209d5202ec506cbead4691386369eb2eed7f0bc81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59a179d39587820568ab920bd2b2967d79c7ed9cac7b95e123d4c294a344cf48
MD5 a3d530faeeb1dc374f2a45f7822170be
BLAKE2b-256 28672f39931f45dbaf9e15f08975bc848514a873b830a78f72eed226f6050ca2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f8437a735974001844f953b9f29f9000f7e85946a17de6309151a25eae2711e
MD5 ef843a9376e4258221e6dbe95621a6be
BLAKE2b-256 361cc769c4015e33c5b7339ce03a491035a96f654cf1dd1c9bcd5df9e4dd11f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 aab9e4d944fe75abc699203561aa0f004cf039f9c919289866c29d80fadec152
MD5 1fee9c9d29d441d8b31d025d52d1f32e
BLAKE2b-256 896ffe0478957b631360d9db7b8bc17bc28f31f94901c287477a34abf803dfa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30117324574dbd2c80fae24492258214736fd5099de0a81f4218805a65b6f055
MD5 58cd7601f8f42f429cc1ca276c3c0c6e
BLAKE2b-256 76b615f4bec950b6152e2c87ea2bf7bfdfe4525930308a68bdf3c06dae0300f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 faa6e799ea2aafbedef6752ca311aba9ed10cad9eec3ab2265472703e9c30eb0
MD5 008c0cc6bff77653140220c3df9df846
BLAKE2b-256 cf6d45dd72c5f9203f987384df1c2ea837849bd66495c8328edb217d9729bb17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 26c035e9ab6cd8cda01c3ed22d0f950730ba7800f479a48e3f442a16c109d1af
MD5 96b5a53540b42819402817f068ec4490
BLAKE2b-256 a923c405c7b492f54fd358d205b8f222b9597a56c3fcd15c8a15c901e4d57737

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d30a3366d42c3ba2cbcf8f11d7840cd926f86b8654e1e637bd1d68186c044f6a
MD5 b6d4784915b7839cba99f5437a195be1
BLAKE2b-256 2bb7307177df258716d488073293d6fdc5c7c3d52ff0dc2ea19a45e345e5a45e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db81b19d3e04fc3589bf1611838de60b583a88e44fd2c0faea38c3db966a9e04
MD5 f7718baaf66a3730c3dd506314965e10
BLAKE2b-256 dea544588aaa4ccda2854ee60736548d68d57cd582b4807e4be0f2f5bd50c6a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00afec5c3f767d371659d14d14148c50f9bb7ed9ebc89dc94368dae77cef4308
MD5 f745a0bfdafec5bd1a129fff1f814810
BLAKE2b-256 d409ef0c4ea6e1f72229d1c210d02c6652c70ffd3c1ff82bf766437174519e9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.110-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bd38c6ddb5221804b6294d9530513fff0c40bc1f67f53e0f6fb8755eca7bde2f
MD5 66a4b4fd6c9bfe013900c2f890f4eb99
BLAKE2b-256 d187d1b9447b9b41b3024205091446699e7835b0e688e656e30511a941d48062

See more details on using hashes here.

Provenance

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