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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.72-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.72-cp312-cp312-macosx_11_0_arm64.whl (747.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.72-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.72-cp311-cp311-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.72-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.72-cp310-cp310-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.72-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.72-cp310-cp310-macosx_11_0_arm64.whl (748.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.72-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.72-cp39-cp39-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.72-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.72-cp39-cp39-macosx_11_0_arm64.whl (748.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.72-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.72-cp38-cp38-win_amd64.whl (636.7 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.72-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.72-cp38-cp38-macosx_11_0_arm64.whl (747.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.72-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.72-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 98419d7a5339280cfc4ac118a89c2d123f37ce9da29509f5f4502d513d3bef3c
MD5 8ebbaf67e84120b5b141e0c16727a947
BLAKE2b-256 263fa477f06abab9ebc0a6982801be56023e9ffdfcd990562ec751eaffa130c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1870f56be5d3372e35085205adb56b3b3cb244bb4e2db4ce0b1c7dd344dd6d3d
MD5 f72e686eea098f9deb66a5e926222b61
BLAKE2b-256 ad8cfd4e0340baa09f6f7a512788e01437982ae6e8d68c28d00e9264234a2b33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc7639c51fa9ea2a4458fc62f04ed13a5da3ff04a1ad4b5816d7bc15e982981c
MD5 fc54fa814a69ca89324690b60fd9f03a
BLAKE2b-256 8b3d8763a1ad7afaba8275420323971f2ca416df1e1755419801dc5f7581a967

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f7fe1a7d903c67fff8b932862e112bdd8c8907bac247edd531c180b188da70c4
MD5 93e9babb2b81a7d1c11723859966e2d3
BLAKE2b-256 33367a407cc2831dfdb37750794d7698c578844eda830a75be38036ba27f5919

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ac31377843644174be4971a68bf38fb2a40e8c0fb9495394d80cd0e2be3572c
MD5 3b15e66ca6efd6a91730f9d529536db6
BLAKE2b-256 f47e5ee741da2644865a6be8228c80db82bea451c727008812955c56b6932af9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86c036bd4a098d861db2af14def61ae3b51744bdc63bb572a68dd30b3709a515
MD5 225177d9ba394cf24b642c628e0d976c
BLAKE2b-256 15c6b15c294179ed13e15e7302cf16a8f4c48d4abdeb789a43cbf24e6d13e634

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f1163ce71b82ef1a53b285cd0341c055f3f4a60f3dfcd51fbde103faa165860
MD5 f03e63a0081f90aa5c38603baca67265
BLAKE2b-256 deb176b1a2fd9373b80a0527b16bc97b0e401ff9ebc24779d20ef52fef123221

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b15b7b77a565014092784df26eb4b63fc0702d5100172ddc13bb475135f4f57a
MD5 d6631f41fdd0c4ec56fc9b80075759ba
BLAKE2b-256 5833388e0ae2bb8483eedb5f2d7e82c0acf3a61196c4fe90039b586004d64bcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 03cbbaf943c441e9dc11a55d7c44d423cef469ddbfb738688d13308bb55bbe65
MD5 f4387812456a15b64db9e21a952b6050
BLAKE2b-256 c708fd51c3fbe62d06436a02d949176446f71b915b061ae29f13744bcb5e1af0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ff62ffc5f3b6e2bc2d3ca583162642f1f424725d335193c101a5eaea5d4fa8c
MD5 8c9a9e2d28215e2c1d3255e96ddf8815
BLAKE2b-256 78ea12ecadbabf46e1169b14a295ad02922ad2547fa05e37bcf456d27aa98722

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8f8696206149df66af904d6ba7503d683b4802956cce226c01eadbb7c434202
MD5 cda25c601655f7702df94e9db304d0fa
BLAKE2b-256 fcdf469d3a3c76c227887691df75127c7da9f0731bce8657e8b95d8f61d6a804

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac0ddae3f12b421e8da4979f008ca8ec52aee4d948f7b3b813ec0140e86cc86a
MD5 888465d2a2bf093967ae61432edf87b7
BLAKE2b-256 b2645d25a708d25c229b9659cf4aa5e7c115f71a98579a3b83b9a34645bf5c7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 63c61ce9e58378c551c30198dd80b13b2b571fd924f557595f229c40755db74f
MD5 4bc793a849c8fb9f527f308fcedae83a
BLAKE2b-256 f8cb12ffb4de11800509db1eeb2403bdd27ea713baeb1a27b5790c28e7d5159f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6a42b72ee0372b33bd595b55c43a753e2196ac1c67642965e087040efa53ea8
MD5 59d3841e4a65dc57420092d362b40a7e
BLAKE2b-256 29ccb4fd1f6fbba7b3858f778c1b1084067877517015013ce49db0fd7c0e7b00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee71525b24cbf0f249cf499de4bcec2dcc184d68eed01c2b0b054540633db22f
MD5 9eb7aa1e59a68480c12729e0d4ddfd56
BLAKE2b-256 42a0c31aa1a6ebabdae8a5f3d824d1539c1136a98c1546c21447ed9bf940769b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 042831ad9cee1b02013b2666935cf07f8ce5a5d54ac1b45e6c726ec662a1b342
MD5 c8b1db39fd4a2993cd431a947485dab1
BLAKE2b-256 7377e1f24da36e5cf382f533a6c98c977e3ef86804985f2836dfee637cae0f4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6e274ed5d553ca5280c1fc2272e49bffcc2621f662419373812406724edf5293
MD5 d72360f40c05042c3b0adef6891445bd
BLAKE2b-256 12e166323b412df0ba37f02683e828e6df965f6e19788df24c5522b0ec648ff6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a9b098f34ce3b3288e496fd5a56f22d1e8b54bcd0d9e8a8e9a15ea320672370
MD5 44acf889945f3827b8eebd17c465bcf2
BLAKE2b-256 1ffcde297d3eb6b642a86e87b997c308c124ef9f854ae0230337563c81d3c17e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95ae30450910a2032878bba73f9553c5e4677067e5fc05ad572b437bd3b5111e
MD5 e51330c4a0768ac63b30f6ab77bbeb34
BLAKE2b-256 26e9cefcd31d4ef1adbf55cf0240496ac8df7d1e54b2ab921d14e56f675b425c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.72-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79e98300bb5f35c41d702f7843ad3f83bf2bcc529c23d0af57cb047780ea4b48
MD5 ecfed4f04bd691d5d5d01e395f62c726
BLAKE2b-256 2e11bf4ef819a0aecc02626488d0755f5ceab890f75a0940f9228b13d0517aa7

See more details on using hashes here.

Provenance

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