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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.76-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.76-cp312-cp312-macosx_10_12_x86_64.whl (754.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.76-cp311-cp311-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.76-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.76-cp311-cp311-macosx_11_0_arm64.whl (745.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.76-cp311-cp311-macosx_10_12_x86_64.whl (754.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.76-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.76-cp310-cp310-macosx_11_0_arm64.whl (745.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.76-cp310-cp310-macosx_10_12_x86_64.whl (754.5 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.76-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.76-cp39-cp39-macosx_10_12_x86_64.whl (754.4 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.76-cp38-cp38-win_amd64.whl (636.7 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.76-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.76-cp38-cp38-macosx_11_0_arm64.whl (745.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.76-cp38-cp38-macosx_10_12_x86_64.whl (754.3 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8b6922ce813f1a6eaccf4d5c309cce14aa6e2284f03fb4f445086da2f272e174
MD5 f5be10e8e7ae5924a1529908825b7773
BLAKE2b-256 a37ecf8a0fd1522048dd316a46eeaf2f9abf0ba5159c9ca73c608de4438af2e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f12af9789d13b500dc1dff5fa6992d6ce30b6322cf4f4a52dbcd6c2a59b15cd
MD5 604620ba2651afdfd02fb5575eacd1fb
BLAKE2b-256 d0fe6e5956bfeb82ff8a72e20002c8115add609e54853e15b2b568da2ebd8078

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bbfefd87fb4a34ac40c87378bf0ea6604ff18476e9dad3f015dc4308c4eb7e5
MD5 8489b10836ebb955e0007c91dadbd403
BLAKE2b-256 b2750a49e208bd24bbba0d23821309b55b1f3f1644961541e8f143bbf8a37c7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f87695f204731b30c823d6f75c73ba7dea03706c05b473578baae0863c53b956
MD5 091d38e47fcb3491be8a64998981aa12
BLAKE2b-256 8a8114d70115ac2cfd02a20c2f0f417fd359e89bbc4dd958c943f482067be27c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e00b22e9a093910221cf6dfb722f2196a8df61b72ea11479322d53753831a3d7
MD5 e28fe51cc8575e93a868c361b4a922e7
BLAKE2b-256 6614be796a0e20fa9deab6fbcd3225fec31e97f45514327b096a272982ad23d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bea6cadea8aa4670296f69922844b06e04b50857921590d4efc72fbf335c5741
MD5 a22e436d417bd8046774b47db65defe0
BLAKE2b-256 6c7bcb66b84a1ed34aac46b325f802ff17eab1991f4ed082cc9748912d503c43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aae7f840690364a505edf52636f231d5296f660817936666c4f90fc9ca424ba8
MD5 4809ffbfa451f41f07852c21be28eda0
BLAKE2b-256 ed73ee31ef41f8ee6541e3941e1e3d34ea913b17cacaedaa0a1353835a33d87b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 995943e9cc2c6e6502d8e1e6f480b71930ca60dc857462b6ba3c3d1da0b23c53
MD5 0adb6c65aa5719909c665eec590a84bd
BLAKE2b-256 9ed68f3b0c2d7a464b8d7f1d8df5e647060379c382660425b3965477530bc60b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1fe84499c15529ba1e49a1c10ee4e18c3dc33da813c11885e48d3a3fb971a007
MD5 d4b0dca66d043357cccb1bfa23a4153f
BLAKE2b-256 e20d365004b7f90f50230c63ee181497b92a05dfd18104dc33b94f4e8e781ae1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b62697db0209cdad56889871eda45fbeb8a7705fc642ff9eadbaef885c736fa0
MD5 054c84624a39dd854880901c945b91af
BLAKE2b-256 8bfa646fed0a9dfd5e5b1d6d2363abe8d366b8592930b954afe1a4e3a6c35511

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e49acfef5713a6b28949644a0883e87e2ea3f2cb0a99a8d40b2f1d6558164a2b
MD5 e8969cdb1c229ea8efa6341c04935c0c
BLAKE2b-256 3b4f11900c8b6116185ab06031c67c7f65d5fb4fe47f5c528e12c66d5d5af414

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80503728bfb7d087cb3c3178dd2a7c5f0a12f62c54d28f0a45c17bbad0d69163
MD5 f021b5558631ddb25262a6ba6a3a2ffd
BLAKE2b-256 c8bc0196dcc7d6900fc9f37fb62da2c08b7304d46800fcb3d58138b622766329

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 669a65ae66576df5831b21465e4aad836c4a84dc30dd52707201933cfbbb120f
MD5 52cc9ffd8d37aea9316a03d99a51422f
BLAKE2b-256 28257c4d6cd46b0596a65564cb1170edae712738cc9b9dcde4d5bdbe6980d150

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ac44a704465441a35357c6a1da68b58401731d9c98d99ff125e44a76fe50ab6
MD5 f69b694f7d7be0ee92f16563a0261f67
BLAKE2b-256 d12dfd23cec6035c5803d58e1d788387d5317bb1a070acfc235be1416c6d428f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92ece2c1422288f563383931b32f3e23475a22fee07ccfd563e3b902e9ecd934
MD5 e48b3040db238e572fe2f05200fde8cc
BLAKE2b-256 2cb99e2ab5aa1fff99d0d8d889490ccc524536c3e77a981ee6c4b848679dcc16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d6ef9145cdd06c397850658fab620e2316069adc4f7b71c66f2ffa48f1844b7
MD5 f3f153c5ec3936447b7605fb4972d6db
BLAKE2b-256 b670adf0a9206066cf11746f7051a706cb75e7240cf6e3a8730e549d61cbcad9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 663b6735dc13db1fad419cf1a542406a51a5fefd119aeeb406f8f82605f585b6
MD5 5c4dc437ffa3abded183cbf078dac575
BLAKE2b-256 de33379461d584dbb90a48b7c8b80894389a857162311ff748e05fd3ede2229f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85337f6f67181cc56a69c8d8f6dd71ff187718d02be45b085a2f15252c06f0dc
MD5 acdb5974301405f964efc4721cc774ef
BLAKE2b-256 81cc1faaccc0cc83b28f017a4b94aef7f15f66fbe1a80cc73d03c650c9d860f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af660e24707113fb580aeb9671d0e4eeab63c0900925f1a5c2af0ce9b65e05b4
MD5 e57ec267fb4ac462c148c61e9f680410
BLAKE2b-256 71ef76bbb29542da1ea23b24c315694d6dc6b026668a18c5881461569728f9f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.76-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d40a63877972b7f82e061f6e45d71fa051ce68010163eddba2a5055f838c041e
MD5 adc9e582991a0a7ea9f4df4d038c6332
BLAKE2b-256 be5d7a381bc236ad645e19aef0eb12962ebf71184295513e54674f20f794aa6c

See more details on using hashes here.

Provenance

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