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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.116-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.116-cp312-cp312-macosx_11_0_arm64.whl (744.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.116-cp312-cp312-macosx_10_12_x86_64.whl (750.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.116-cp311-cp311-win_amd64.whl (636.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.116-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (796.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.116-cp311-cp311-macosx_11_0_arm64.whl (744.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.116-cp311-cp311-macosx_10_12_x86_64.whl (750.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.116-cp310-cp310-win_amd64.whl (636.3 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.116-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.116-cp310-cp310-macosx_11_0_arm64.whl (745.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.116-cp310-cp310-macosx_10_12_x86_64.whl (750.5 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.116-cp39-cp39-win_amd64.whl (636.2 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.116-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.116-cp39-cp39-macosx_10_12_x86_64.whl (750.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.116-cp38-cp38-win_amd64.whl (636.0 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.116-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.116-cp38-cp38-macosx_11_0_arm64.whl (744.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.116-cp38-cp38-macosx_10_12_x86_64.whl (750.0 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 39d7c386abbc9aa76e18de84b4c8faf8483be196e7212b9b99b00f1446a5db79
MD5 6ceb421402a95cefa8a97ab7ee187b5e
BLAKE2b-256 ab47fbf7bad1894a9918637552f064d61daa83ce60b2716b7b09f9b0f3e0715a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05829fc13b46d034c93fa9687995bd7d54fb59e82937e95a46f3cd73f87d1580
MD5 50cb8b15669f8db7742d844bcefe5881
BLAKE2b-256 70a9a5ecc26edc1a5260207ecb9b8958547fda0b73a3693244979b7d6ffbb939

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 406f6d117ce612d41881a16374f0c534e9620f8468f6c6b8cf0e1c1d58b67b59
MD5 ad71563a83b2b665755fc85634d1c172
BLAKE2b-256 ce8b00b4c2c00f01911a30254849a9d60c3e7c4a9ef8ed381a51eda383c160ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a2aef27d129d15055b90834f28ff89ab577af9a8fb4233815e2e2631dad14684
MD5 456f9505e8b1b9d6ed49f2873109811e
BLAKE2b-256 c32bb901564e6743c9976cf1a616bac2cfeca0a3a5530550e505d7461eb52c5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0e19c08b50bcf1059704b86a2a30c6d70f80ed5534220a0d7cdd09c775d802dc
MD5 c82a2a0cfe605ba0ea1fdb65ba7f8165
BLAKE2b-256 412d1010d4e60580d2187a8ae0117cd08a3d0735630a1a0762ef760e21fa1a19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d3ddaefb722bfbe8f2220ecd47edd59467cbd4663125258420a50044f2478a3
MD5 e49c2d64d4404783c3cbe544176a00dd
BLAKE2b-256 ebd6ff5952ef3838a73b0805a4235d95886716a638ca74efe7cf44328d06f4d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95204947a4380d7b486e839b63306779c16791ba5336f601980953d4826e15a2
MD5 9a42db5c1f93a7b6cdd497cc00addf7f
BLAKE2b-256 bd52e5d2f8bfafc155bf61b7b4d95f254e62535d236c442e6eb77703517afec2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 661889b10e0f2fda62628ccf1e8df0ea85f9f158ca97913875da691bd579295a
MD5 04ec6cbf0d212653b730f41711c8f342
BLAKE2b-256 e5da7332c63da54ad93ad99225675c5f1a3a8159c20e7d04ccfc694d9add1c0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c84a689f616d597584bc670483471e229c6da55098dbc13c54a08d043acb4c93
MD5 4e3245e98e3f2475e0e1d821c2b156cf
BLAKE2b-256 b353eac11307cf19586a11dc75bb716bf486fbe8dc0b3ab821a75f07a8287cfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26821f550b998379bdecfa19de1836424373f77771da534530638e5a3429f3ad
MD5 6065253fcf894ee2b5f9be88081ad7d2
BLAKE2b-256 1b0d560f6b0656a077949655ac914fbcd24b4df0ed15de90cfb770425cb74e5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 095c5e2922429c1bfee751bc7f5d838986227af52927cbb990f4cfe2dfcccd28
MD5 5904a50162fa5fe45169c0f9b03e1fa5
BLAKE2b-256 0c04f1982175a05d003ca3c556daa002ad3000fd41fde1f62e06ed907a31f7a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d0282acb8fdac3441bde86ab7a170714d404c9f58ce0b6f4d70d13c86d3fad2a
MD5 ad246e92ce6e11d53db0c8871b23008a
BLAKE2b-256 8dbf3ebf704c599d5b26732912f4667e3b2118af18df2b59feee4986b0abdbea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 af4cbeea2f09fbf7ccc95548f58775f7ac21d48ad706b473da7e96478b72b8f8
MD5 ba538a527627f8362789a746f99a25ed
BLAKE2b-256 a2cfee9b81d00c330191bde86cb3a6f4e6334d7ac5bbe020216324ad721b7d4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1830101412121a4382e318452a9137009623048b70ece19a704f53b26f32edd
MD5 daea2039124957bfbeffec578b8fb480
BLAKE2b-256 2b3b4fad488b41a835cf156289360ed95d8f0d30c0a6d75a22a3a99dbdef713d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4afb35919f8554b3c5c9421982f3a1f93712367491d220c4d20f101ba18f646
MD5 4c92cd6b2e22ea95b0bf720a3fa7b8b9
BLAKE2b-256 f2cf43d041ff83d6659408759c4a38af9beecad101c337fcbc292dd10baacc04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e69aff3c25a1f86ab82d3a8861f43287ef99afaba86ab0ca62a2b548207f7f21
MD5 d7c1cb33eb1d52850db6bf20d77a9554
BLAKE2b-256 516564b0cb66838c4811010f015de3d61c335fa077d73de0dff33526e322e57d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 19e75ed578514be134a1f5b6005eb2ea9823b8b2a40c16f4bb40d349eda9d7d9
MD5 833d887e10382c30e11a12e562d32d33
BLAKE2b-256 4a650031ef4d18c8f7e598853e64d51c466ce7bb04e9958d9fbb8d6de0162d04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be98d2f51e34d76500cf9c8fa1d6418c0f27672b2ff832391dfbf3ea7cdefa2c
MD5 b43ce22c099a909786ee8a46870188e1
BLAKE2b-256 3cd8338629af3c2368abddf844af15c06a14ea38996dc136751bc85a1db5606e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb70ee47982e256a8b5f852925ebf3b48458a8a08874f044529b6ef866e680bf
MD5 3b49731c5025c5eb0f0334a80370e846
BLAKE2b-256 d871bdb385de4ba5030d9bd3927766b01239737f63413364d14f54a70fbcafc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.116-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa3b9ea11ec86d642193783c33dc888808579e36eed0f2c773b51ce7e111dd9a
MD5 f1a295bd3503148f2a519cd5cbd01762
BLAKE2b-256 bb809c80769a64a8dee728099315326be219d64b79210bf933235102ee0579eb

See more details on using hashes here.

Provenance

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