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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.77-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.77-cp312-cp312-macosx_11_0_arm64.whl (745.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.77-cp312-cp312-macosx_10_12_x86_64.whl (754.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.77-cp311-cp311-win_amd64.whl (636.8 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.77-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.77-cp311-cp311-macosx_10_12_x86_64.whl (754.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.77-cp310-cp310-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.77-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.77-cp310-cp310-macosx_11_0_arm64.whl (745.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.77-cp310-cp310-macosx_10_12_x86_64.whl (754.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.77-cp39-cp39-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.77-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.77-cp39-cp39-macosx_11_0_arm64.whl (745.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.77-cp39-cp39-macosx_10_12_x86_64.whl (754.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.77-cp38-cp38-win_amd64.whl (636.6 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.77-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.77-cp38-cp38-macosx_11_0_arm64.whl (745.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.77-cp38-cp38-macosx_10_12_x86_64.whl (754.5 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 57e404e78461483fda8e003e11e479fcb85c4d751bac48af83a7e72392fb6bc3
MD5 c5b00aa45d60265d2bf6361f551147ba
BLAKE2b-256 4f390610376030653dbc596d320be754ce9d51dbccee70f83231fdf966603631

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d21d828cc28ba514d0f8bb6cdf5b43c28eee842ba3019f5a79a599326f81b01
MD5 56d9d4c324a9aac4273f4f2a285808a0
BLAKE2b-256 7e425623fa15eed72c7591eaeb2b1747a77030ae9b293ad2c2939d5ff41911c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d06ff875413a4c607dfe26cb12df518a202f825350dba7860f46f1ece5a06316
MD5 6342d943ae98bc89e4f13eaf2249700a
BLAKE2b-256 d3bb6961ec92cd31ffae6121648a5100cdc6e8acebdbb755136107ee0fad26b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e57ef0e1b9761ccbe1a3a6f3dcd1a3ee63a7de1f54419275c3a8a7ba1aa70b5
MD5 791cf213d0536152be65a4380cf26f9b
BLAKE2b-256 7a19498b1321c0e9568d9dc3ea8c992adfafe60d15c5217e559fdee4527b849f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 32054cfa2609ffcfc54dc79d6afefce96fb377808ebb61f842b5fee020fe5a24
MD5 cbf67e225ebd552da2c238d8d02b5d78
BLAKE2b-256 230a33666782a8ab66f837776cf0d1eb04a82b6a62c428223d14e64da006c8c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e9f0ad07a7f84303f16281dcffb8e7a7b1df085fe50d8494a81bb3a8bb6a90c
MD5 42fc922c33519916ab721c3295c93a5e
BLAKE2b-256 a2e3055004cecbe51c3e0eaba24c472d3fa2356b043e86fd1e45423e9936a90a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6185788cee7aa050b5de76df03c74932f317cc8eaaf5c23128f31d79c1d095b6
MD5 e0b1a8619de37edc6e6ccb3cb181d260
BLAKE2b-256 bf668c6e62c735766d87de7686b7e8ec2997c3d94c558ebc5f6cc59e12650cc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f4a7056b44f5294c19c122633f967913b89f0e860094f42d4291499ae8312abb
MD5 138d5051c0b22a956d1f3c07f72a5b7e
BLAKE2b-256 533690e21518a24dfd783d1b0324fe35be21eab6260d282fefd2436561d8ad33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e95a22acaf0ec1e9f365262184734b472544e83812c1d8149d8e2339bacf08f2
MD5 7711426e34e7d1ab91fd627c3da31c2f
BLAKE2b-256 6e1db9b1e77e609c3665ff142ca282d53f62e55c38fb7eddf625013892278268

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 044fd1a9b100b80e87903ff60a4cc815e7ce4dffa43ffeef907065eaf4940d68
MD5 66e61a96b185b622a19fb53fcaea2987
BLAKE2b-256 8ae672c146154b85f991d683979471446835bd9e5a2fec6f1e4f8230351c7c40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 106fdb7ab8be912bb4a77134846e89638159243ae2ccadcb4d4e69f201f1d3cc
MD5 0527c037e266ceefde96b508cc613405
BLAKE2b-256 299f69c14b6fa391b565de351dd247f96cd986a58f62eef1ba619b9fb8ce0ec6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 475a1c2648163c8d464e4de4d3f5d5de4f85726f41180717c064a3c476dd8c5d
MD5 a40f81b61daf1e756c7dcbf082b87dad
BLAKE2b-256 55bc347d9dcf41b38ad26a941d08166f3bf122ae7fe86dc96524036b0fbf74db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c39f8a9b8a883efcf6a23cfa5e52cc19752b071ba2394e6ad69c50489d1318e2
MD5 3bf88d3cee570ec9b573fc32ec790f9d
BLAKE2b-256 1925e1a7920887b459d8a444e57428278f23605cba6575898c080900b675ddcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21225d52928c6da8e1d3e3ee5307c2f8602b46d9ccec6974876561e4ad592991
MD5 1ed53b240c96690a062acfb1ae1b2581
BLAKE2b-256 48d2b459b4e986f6cd5de1919c992838e0dd59581abc9749c923f6e9a71fbb65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 881cb4ab7a99a7f80c631bac362c6d2c2656be0094a613e50cab8ec37764bc1f
MD5 2ffa3df6c9669eae3f8a0c18b4fd8f1f
BLAKE2b-256 2e2a8667314a5af965e45c645062a1a2b610d4bc9574139fb62f938b4faac5af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eca21f08bb27c1ebaff852a3a8230d18edb182cbe1a3676356cae18db6088a15
MD5 1463903e436a6768e85b820deb5ea8fc
BLAKE2b-256 bc302bf29e782a8974c6e8ef19e94f80c10ff2ab58e14f2ac6d2e62dbca20f66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ddf654fa6a33f92405d8040dc2782fa1f540c989307f4b17eda69648072d3906
MD5 49062114d735e527529d687ea8c20a67
BLAKE2b-256 350dd0f901e83331ec0c93b9d0793e013a1c3bd055b5e028e19dbb3572a43fca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c782c0cb9fed43b8f8d0eb7f326ced244aff84b9e545940696d76ac2abbfa5fc
MD5 01b1a03a11523bd62ca35a493b8b077b
BLAKE2b-256 34762f6b397105e73ac59c37076e65b323fae77ee75e7b96b160a4a6f56ac713

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1697cf247770ec552af25428b9a01dcc07abd167bd5bdab994445102bc6280f4
MD5 96a1d393285527aacd6749953369823c
BLAKE2b-256 2e05ae30eb43c3dd175e73220c115716239d48eb9afebf40a7a618783ffe8bf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.77-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 292e0595b7fe85d793ba19dce5793ce2f0cccfbf07bfd824c905a50595bfca1b
MD5 2c32a14b6bcfdec8b65574a9166c1374
BLAKE2b-256 30383e54bf6681f96d2f53e45707b95652c2bed1205843144efff63172d7e035

See more details on using hashes here.

Provenance

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