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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.105-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (795.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.105-cp312-cp312-macosx_11_0_arm64.whl (743.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.105-cp312-cp312-macosx_10_12_x86_64.whl (748.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.105-cp311-cp311-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.105-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.105-cp311-cp311-macosx_11_0_arm64.whl (743.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.105-cp311-cp311-macosx_10_12_x86_64.whl (748.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.105-cp310-cp310-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.105-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.105-cp310-cp310-macosx_11_0_arm64.whl (743.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.105-cp310-cp310-macosx_10_12_x86_64.whl (748.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.105-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.105-cp39-cp39-macosx_11_0_arm64.whl (743.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.105-cp39-cp39-macosx_10_12_x86_64.whl (748.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.105-cp38-cp38-win_amd64.whl (637.0 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.105-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.105-cp38-cp38-macosx_11_0_arm64.whl (743.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.105-cp38-cp38-macosx_10_12_x86_64.whl (748.2 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 72ec3a1c0281b611d4bad96ee4b043c565d5473d05963c5b14153369ff2a142c
MD5 b25d1eb59f254565288be7f1d3950c6d
BLAKE2b-256 a640bf6dd7ecab099761ab291e970a615944562a3470c3753cee6196d7b5698d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d2bd0e551d8f37bcc3f3df3856df56cad8a21006187bcfc16ede9cfca9756f2
MD5 54c5b0eb9663474b598c659c05bb99a2
BLAKE2b-256 cbb5438012be05764e1791875ed4f620b14c4967809b5bbb6d4dfea607791feb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 087b2e03d32ff6292133d15da514061ff720700cd174dd9754173cfbb40caf4a
MD5 815e565c56d3bcbac7463cf0cf88eb16
BLAKE2b-256 4e4a529af464d14c3a945790b91fd4a056a4cbffe4fa83a744321ea57ca69456

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e574ba7d23396b349f96cc8887332401803030b878d6e74938d97cb96c2ce9c
MD5 892f7e193d4d3af87921eccdf0b96352
BLAKE2b-256 872f4588fbce64909d83b71dbbf59dd5c30edc30b0d087f0123f56f0b22139a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b947012188c96482ddb2d9c7e5a3a06b6def7b998c53ea28b043dbd7b218d385
MD5 0e9ada8f04defbafcd54cd484d9ed2c7
BLAKE2b-256 c86ca6d23f0e315e5b1eb101db2c056f7953406f85d1312e0273745c392fb225

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b74658dc2cd942d47d73243ee8bc6b936aace5530d4776f664d7d7db49bd9eb
MD5 e59809a05da5a81c66d04c4c8fb57256
BLAKE2b-256 f879fe943180936a0dd7a693c328bde8d16716962b3b492325ca290bd27f2b75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b86540018cfa6758a14e8fb1bde1b201f4cef925e2cff37f205de2b6f36fcb58
MD5 48de366ce7591108af6a0793a623a309
BLAKE2b-256 b061217849fac12a20fb13cf111b5970395a38cbaf9d10ef81d2daabcae345a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c227b1f5126a117dbf2c47180feac825a4e2028ba7f6d484d2a029fd72186fe2
MD5 ab8655d37c3ab987011a8cc7ff682692
BLAKE2b-256 b3ec37f378c43792806fda5ece10ecc9fd715c791887424e1ce392e5c2f5ee40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d22b08078bd9df9b9d4102ab7dc9995fb16ce72c1548b7a7ed6182eb22fb45f7
MD5 3e08983342cee112e36016eb784b2ba5
BLAKE2b-256 d439c21ac82dda924bcdfe5a86c9dff975877d0d699bb4257651a535b69b3a2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdab531bdcaa0377529ca5914f2f7c6c28fcc6fa602d221536c5fa36837edd79
MD5 c67ddd1512ea051e0d9a1ef4476d23df
BLAKE2b-256 7cadf4329df851f030c466b04177e6f2ef0556197cf4c4b4c03edf5d1af0b544

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f01cec6f12f1f2b3694bd3a5545516483e2b76585576ec987561553f153b591a
MD5 42f89b9d97e3a7bda3d59884e253c251
BLAKE2b-256 c61c0da91436771c571bc99ab3aeafe81ee2e785ce7d03844e128389af229770

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 788d84730e4aa763df3f1cbda9e8530729ea841d56c7a8eb884c3332e3107bc3
MD5 638b0658ec165b33a5b5e14e08122c0a
BLAKE2b-256 69f47053d44af84c708998934412b3c146a130cd6a624fdde259f38f9d1cea2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a367de87db566210618582c04d193dd7edec8e49f37cdf5d5b8931a1e3c1b1ea
MD5 60abd658415434f9d0865e7aa22b6aaf
BLAKE2b-256 08887b13bcef75cf9b0483f63eaedf30966344f56e6dc12cff6d1e9f9869c6b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ff204e2391d83c949f3a9f3feea8b45d519d9d33e352e15ab52ff51b977b601
MD5 c57dc263f82f3daba9f4a279f2b9ca24
BLAKE2b-256 1d8f43fe8a03a5b4050e1c308c21a8c3c7b19866f99b7a54a76d299a9cb7fecb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d5302bd4f655333afcf3b6d9a7118ecb961fa7f059d1582a719bfdf74f24fb3
MD5 fbb8a57c28b1e91d529478237f8ccdda
BLAKE2b-256 6542363e9815ce6d38560ead21bf24c1c0fbdb14feb91a35900b9a2d560f093c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79a7ee0e6c495b871b985b707087885d79ccef951b2531859bce49785c5d9da7
MD5 75dd6e8ee9222e22e8396a3a7aa34653
BLAKE2b-256 665e1110d5bafba36ea7c40bc3fe8bd666f5e494bc8b742526541786677bb714

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5c3eb9e3b594f4e6657c896baf190b9c4b2a12c8da2586f0622dc24a7f69e06f
MD5 08f966e714011ad272f9619bf5077f32
BLAKE2b-256 a8cc55eb744c3fcc33e448e919db6431ed1181f1a3e383a4c05c376ff562cd24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f193684919f777c22e28ee76c9d7ec6eb3e605c070cc57cc4760f9c76c8027db
MD5 b7a9bcd3743529ecb828192918ae9ef2
BLAKE2b-256 3a6ea9eca4a4cf7825a257e42310f65e055543b76f06eb53dba8f5c09b19bc2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a3a13a80ede83dcd08bd10416592cafeabbd6acd458438b2f329235f69dba3f
MD5 2521e0e205a84247a3556a23ec1a58bc
BLAKE2b-256 75c6762705252fad75c012447eb017a603cc795c63f7586dcec6cb7609ba77d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.105-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f9f00e9bfc631d48c801776248ecb343328ee466267432789f34d5a7cf4edb1d
MD5 efb6e44592a117db38e60f84715ee40c
BLAKE2b-256 d96b28d21b2c184b00f22586cfea7d24c12b4a47170191fcd7fbae47f8149f7a

See more details on using hashes here.

Provenance

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