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.58-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.58-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.58-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.58-cp312-cp312-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.58-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.58-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.58-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.58-cp311-cp311-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.58-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.58-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.58-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.58-cp310-cp310-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.58-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.58-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.58-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.58-cp39-cp39-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.58-cp38-cp38-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.58-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.58-cp38-cp38-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.58-cp38-cp38-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 87cbbd19d0ac51acb2460e22098174a10add8c25fb164bb55f10564f4577f65f
MD5 faa6c5ed4bf0ba71ca60b4c134047a69
BLAKE2b-256 1a71d54b3ecfee7df4a5d7a36a83e683c434cca6d9a8c24cefd27d758d631b3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40908157745654dd749a0f3e1500350fd303a0d95853ea3769af45bbeb87699d
MD5 ef1a7ebfce05a8bd12c715f02c00ba77
BLAKE2b-256 3e20a88ba4b2c0fd83fc42778e239aa223d105716e14c3fc28610698e141fbe4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57cae087255829f56ba8eea81b4c8b7a26b7074012e7c7a7c3585f4cca33d5a9
MD5 e8c31acafdf69d5e42ec3cab6874276b
BLAKE2b-256 f704d30c94e1adf088643412584e611d3698819295bba1eeeb303c120aa81eee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a0349ef116607ee3d6a76c6852b2b8653cdf7ba2f5973bb76f9911668f4d50d
MD5 ede0f04fcf54880e2aaf3839e5f528ca
BLAKE2b-256 e79c459edd64b51cee28f9add46f7e7b5eeb21647347371d0ebb811143d347d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 961ba37412f5dd126f2737ab893125560012b0f1c8dab8e0272db1fcfbbf7312
MD5 f0f9aa7cbaea329e62dfc5462ddfa86e
BLAKE2b-256 b049f049d95ff1be1d286caa2899253e446400ce49722ba2741bffa262044e5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a046fb8a324d18bd50c08080f625f254dde963ada865fa4c17664411d9eaaae
MD5 3db8480dec01198fd620c2cce796128a
BLAKE2b-256 f2b809f7fa70930f1df5c8a199cc1296bf691ea4631972f345e25e535fdd2cc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e3ff0d74d41d9d4f2bb4dbb84f4f7dddd75e2c6394c01e0f2609aeb71345e46
MD5 becaa67ecd982ea0786a8a01b15806ae
BLAKE2b-256 4d4b4dc02dcc6e466c81f6af0f526795aaf5f7f6358731b1f6dbfde7847284b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 44c7501c4564ada987a50a3c95452a64c138129eaf522e342846fd57fa2ee744
MD5 145bca8b8c10366afda6c78b6ad5585a
BLAKE2b-256 9cbf4319e97ca4fed78f2d02e1f7c1976ca32edbbac946b278ad312b32c3a7f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f13690785fec3f74c7097d442341547ed819246de404f64b9990df6b7db2f08b
MD5 1aa52e027a9d55f2990a9d5223f8d882
BLAKE2b-256 a499510b83afc05419458ab092379897eb4b580a37bbf3c514420ae74243dd25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 974720c07d6d51b9099dea53ca8f1790d06fc68906b54c64be11e53a90f12f32
MD5 6f6fed28e661fca709efe270eccf1898
BLAKE2b-256 b0887d59fdd6c1099cb574965b553124788895991e2b9516b54e502d97b73076

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00eb4a36dea5b191430f39059d568aee71563d28e7881abe356a7506c0d7a500
MD5 8eae79b9b7f586da4a57faf424b4da0a
BLAKE2b-256 42855c62ef66c251f20baab738acf3d78a3e8a0f1fffa779a03b80afda5d025c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e5e1035c66752a3de6cd2d97e6a3e034bf605bca587b892457bbcff98b5effaa
MD5 e190b2d217f718b038daf7022524fcca
BLAKE2b-256 224606c8a127f0ebf0664cfca5a13bfed64603ce63b2d466b9672f5f90d38737

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9466bc4ad06ce544a88ce3883156c93f38df3129257c3712593c44d612f2f47c
MD5 36ad6d3d08dc6be9fb21a5daaff55efe
BLAKE2b-256 36fcac1d26f6af6fcd7f56fa024cbaa0195c2ab7beeac8db9748c0352f4ee7ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb435a0bb3da43a3d94a1c19b523f5e96d7fb1b7b8dce29e171540c6ac2ad862
MD5 6e0ce51f0051f5717dd726853c3d8a65
BLAKE2b-256 a8979d2e59e741b80d64b55137eeb5a95c92619cd34144fe3740c40bb0d26bde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bf4115f45df7203f823afa8a618b829e1d268ac43235bc4aa81235ff6f49ea6
MD5 07def7fea6570f617a0df4da9caaeaad
BLAKE2b-256 0f93c1454ccd0e2ad1229253fbd5db2f7f33b2d644a862ff25f44309140796a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f5ea847f55a5a998f353dd50bf56f4ec8f63b5202c3076c13c384c0bdb30094
MD5 95e6718aa52271b43528a60dabe99ae5
BLAKE2b-256 e660ed1c615907addba0b5b03b750d731d24d307d754e1271c797d08d661609e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 60051ca82b2b8666b772ce6ab0c914aecdcc6eda43c704543948e6dd853f6144
MD5 e374887e058f512fc70c9d223aec3345
BLAKE2b-256 2b4ccffb9551bfb54b9d735b69859c6eb77fc87e94a51b02cfa1acfa9c754141

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ae2e46e8130e8eeebb18e3df818efed882e9480094f3e266c26f8d78b95e176
MD5 49359ebd6dba0dd68a9c2f5497a5eeaf
BLAKE2b-256 36a9629ab03ad5b671207541036b1ee47c8b0d67a7a8a859fba6dede9f88f9b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b200b7175d18f976e61865d31f5e2ceab3c59d49973dd6e7ce443e1b85562676
MD5 a16e30c7c97548e12b79740a9c9b9d5c
BLAKE2b-256 309e5dfff44b7b8657f621e463f12d600c475bf0ca584b93affea736cfcea356

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.58-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 358d146c6ba96c926e59147ed0345e5cddb4e43b7699003cd75d25cccb177571
MD5 fdff0e977a16fb063b849c278d577995
BLAKE2b-256 46d39cce3eb8d90503678fa22e7701f1806d1c6b7fc54067e2df33436c6b7f5e

See more details on using hashes here.

Provenance

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