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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.87-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (801.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.87-cp312-cp312-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.87-cp312-cp312-macosx_10_12_x86_64.whl (755.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.87-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.87-cp311-cp311-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.87-cp311-cp311-macosx_10_12_x86_64.whl (755.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.87-cp310-cp310-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.87-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.87-cp310-cp310-macosx_11_0_arm64.whl (745.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.87-cp310-cp310-macosx_10_12_x86_64.whl (755.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.87-cp39-cp39-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.87-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.87-cp39-cp39-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.87-cp39-cp39-macosx_10_12_x86_64.whl (755.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.87-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.87-cp38-cp38-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.87-cp38-cp38-macosx_10_12_x86_64.whl (755.4 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f9c4f6a004a9cadd27c7ef13e3a9de6f4411e674906bff4c3847dac7bedff7dc
MD5 7997c9b022564fe741b0f5c515019a6e
BLAKE2b-256 8ce2b51e64872d9f34ec386474defa057c7ccae07d8815e3a232ee125be968fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 708f77deb90bfc60b5ee36c470e2d2ed43cd5b1b88b00cad279e78961683d7ab
MD5 adce8330d03078e24e52aa4953075b54
BLAKE2b-256 794c73455153e0123883d0b10ff1839f5d59db3f4d850a2c61cdf9eaca5ec6f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccf806d1ba82c1f17499e095aba0275a55c25d4ff0c65c964e9d1375283019f2
MD5 30306002eebe22b8ca34618a394b638c
BLAKE2b-256 53f26f090e8eae7ab2d8363a4618295024d1e5a2b7345fb81d000aa5cb84e057

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 01c93671aae5f19648b07d6bbc6989370545b263a76ea73ba56bcfe5d53f445b
MD5 74b6bffe151cf3c9c57c56006e72cecc
BLAKE2b-256 e3e901ec58f6cffccfb46a8cae6a5d0d3fe1b6eee773ed5e615b59944639d940

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3ca44e89b52d7fbcd6f56a8b4229f7a0472c492bc1be94fe37632f8d9bc6cbcd
MD5 9e22436e2279945f596774fa397743c1
BLAKE2b-256 170358dcd1a021e24dc000518a89af2bf7672601ffbf91fb3cd6cc366ba2490e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ec094544c833ab753491d7d6381a0facf0bad2976c942060a93e58a85d82632
MD5 1249ec5e0e4b92265f53cd04ad26e9d6
BLAKE2b-256 b8636d948cc198d62018033e76f150c6cb4d33ee2e3a7cb7449e0de534a1023f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf984f2d6d4ff5a899f0ab3cd024a048952d67f12b28f3a04172c47492800b2c
MD5 64e3b49fa35a3e9f76bad320737f2385
BLAKE2b-256 ed3a5d248663b5f3efc70ad563da1d6fe27584c5268cd29b4678b72006a4229d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a2134f3be1465ee8ea59c3ac4a467d2b055549a621532312428de6384e9a0567
MD5 c5fdbcfaf44fb0898327c24ffd81e65f
BLAKE2b-256 0e6def926749dc561a19a24afa1e765af7ed294754cf9b29cfd9616c47f8dc12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 21c55714425c113bc4009afa0c2120a2c4022a59086b7bb0fe38ada5922042a8
MD5 82d97a8b07b79a4b39b92aaccac52cc7
BLAKE2b-256 10d4dfb7343a8a790970bbf8d3af596a0f813dc1f7a4d810e4be46b78c0b59c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11005c9b2ebe37cfed724ee2988a127f82ba082184d354734eccd9a2c24cba59
MD5 239401c40f85baca1609c325208e4370
BLAKE2b-256 ac012f0b390f556789ed4d4ecf18dc5260530f62c130c96413f16c3896d6497a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e81873ec97c6e0e0bef8dc20ce7f0c920ed1c3d9e4fb0557501c3f7f31d05007
MD5 b99d90deee13dd0669de917a3d9e02a8
BLAKE2b-256 1838e6c24b0ae1610fc782de86a8e7351d701aab9e0222de6c82d0370dbc99c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02bc22b047e6645ea5df9e4e00390c30c56d731478541a14c485c6d294b78b20
MD5 c2cac70cd2ebd130adad874ebcdd2c45
BLAKE2b-256 8b369c5f02c2b87a16fa70cf742f3082eab6b3f9598d9e43f2d75c90884be91e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 301e28b21d1224bbbf0d0542edb5d4b9d8e51761663b0a7a77daa0524267356b
MD5 a0d3308f4b91fa584eb137498839c082
BLAKE2b-256 2dda85845de9dc2f1861dbac7dcafd2c58f7d831d7eeab71f0458899c2e59b30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da2bbac214cea17044a5bb7d217ba0eb358791d8beffc3209e992b642c7332a1
MD5 c622744f0fcaf96f7e3bdbf60b1784ed
BLAKE2b-256 e300627c49552fd2f0672e668623204e2a8edef5b1d8ea9d28d12018cf2f697e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8d8beb60b9b8ac63562ca584a8b04fb8c2dd1e2f8d0383abf5dc509633e9234
MD5 f4666cf8e1cda2990d177b0068cecd83
BLAKE2b-256 7f87ef1d575cc4c21ea40ea8c84ed1d9fef0648ce8cd125f68c33afb0b13c772

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fbea28725ffdb7a2d8667938c59893eeb3887712a1c3e23eb7673c5bda80cb2c
MD5 71ff2deedff50c06c87b41000cef97d6
BLAKE2b-256 03be2c8c52d3418fa136d4580af0446c659e0b55b62c95f9b2e5773162f6b7d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6dfc5b784b2d093df5d431486ed5f96ff00733823d5c102063d3e0ae54a52b18
MD5 68e06bc382e8749ef15054b1c409ca45
BLAKE2b-256 ad828e3ca6425beb23c1e2795849f3c606af0ba5a050403a94edec51b2f3f78d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e2dc8eb0a70b2bfbb2ba36cbd1f2a2f28276f9c6ebfafa513dfa3655c276017
MD5 ffe54ea7f8d49d8a43958f1f8f7e60d5
BLAKE2b-256 9362897255a6d11d13c0f8bf4d1786c2516caba33b6abe8e4d4f2995d69c6acf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1ab840b7e8c5163a6f122dea45880c1ee2adaa5ac114d915904f9b71315de58
MD5 8ea805a062d58818b3bd126e7adb10ce
BLAKE2b-256 77d842b0719f7e14fbe4242891d0d92bd50491626bdc9f64feb90e565864b445

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.87-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 90e5f26cf69743625b0b700d0ea2468c1189f9c6ca314a5729498a098d49e5e9
MD5 0950cafe63d946e6166f53edb30eb136
BLAKE2b-256 54312c4f81c2d8d86db8240e650273026f836f6e4f11349e876a37c1ad44ea2f

See more details on using hashes here.

Provenance

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