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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.75-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.75-cp312-cp312-macosx_11_0_arm64.whl (745.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.75-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.75-cp311-cp311-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.75-cp311-cp311-macosx_10_12_x86_64.whl (754.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.75-cp310-cp310-win_amd64.whl (637.0 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.75-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.75-cp39-cp39-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.75-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.75-cp39-cp39-macosx_11_0_arm64.whl (745.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.75-cp39-cp39-macosx_10_12_x86_64.whl (754.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.75-cp38-cp38-macosx_10_12_x86_64.whl (754.4 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0cbc4e753116b4973a234ba7be670f862351dcabee76bad1c279b7896604ecb2
MD5 8e9e27c2e94e53954bc4379fda7d3e5b
BLAKE2b-256 93fd0f289366a7baccf339939425b74508ab3370c40941447de2b4ae1b9b421b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a923bf87f66100acfa7630196e49b0e0319b91dd88fb97174eb5ede162a6bd0
MD5 998e980b9c6ed4255cf44f2dd94e4b2a
BLAKE2b-256 68d458210410d0fdc2088d90ec4103c1a3fa67dae2870a5c4250cada5720de2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a3849d5b7924bc92d0d8f98199530fead00137998acf8f152ef81b71ed945bf
MD5 8ddd220815614494a77e735bc1e834d0
BLAKE2b-256 73dbca70710852e8b1b46001e0432578e320b493f5d549a02a32f732ea384cca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 605c5641254c124b2c634ba6db81ef26b8abe2edbcb151c4aacf24f6fd66362b
MD5 0c5f2120d945eaf78d82029fb21778bf
BLAKE2b-256 ff9267a14334fe9a90c67ba1ecd97c5fba583a88fe3eee093d6b7277b09a3d82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d66a7d862475f7c259f8e72146d52fd02822ccc14ad98d17da23f8aff782df1f
MD5 036d1f12f165013b7d1903bf8d480f3a
BLAKE2b-256 21fc63435dae7400a06aad1e90ac1f6d2e7e0f004454c3cbc6e77de8b1c5659f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6380699d27d595476153f7c08510b4fb7bf59ce73cadc8f5bcbdb93c0c94bcb4
MD5 d367ff6913b297bbec183477f1ab3602
BLAKE2b-256 d2e1c448e995bdb9649c147fe74115c1fda62ad57ff2ad0b4229f5b93bf79294

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e2fee1bd588e9f865f66e160084e3440c135a667871ca06b4f4f5d79e9f235c
MD5 0940e7b5cc04b85fa230f00d03363a0b
BLAKE2b-256 75bf26a711e69ecb52cafacf2a0e987e442d512d8d4ebab13df4e78934ecbe80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0f0ea320bea778d42a99efc89ce127afaaeb2a0b88e0833a75a81b72e12028b1
MD5 cf9b4c987350e8fc8f9c334d3183cec1
BLAKE2b-256 2aab5fa4a7b74fed7bd9b364d7a452b279744b7ee605cf2cae0c70dc518e7f95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 02118e179f20236a3d298b875348a363445674e440ea9a2e3744df29ad8732b0
MD5 47ecc8fd75882ce6c6fdf9af9184d610
BLAKE2b-256 e9a89c5000fbc07c8d269d1285809ebb258ce149dea807cc5d9040fea86aa78b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 180927c93875aac158e2e351f8948eb5262ec6b7b316e5480faccbd118090aad
MD5 9c6668e6b127723c8304476107f08455
BLAKE2b-256 5ee2d9e72c53a5af1b63bf282630b873a4d86f30116956216771aa5502d73820

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0de0db551e4803083aa3529b36b7b5708ead5f451e0e785e1fc2fc269680b99
MD5 de9615403d672d9507572a5c26191fb6
BLAKE2b-256 fe3151fb2a9744caeb776627795adc7c954bf0a997ac4cec5eb3289dcaef58c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4dd7034f63fff1a1508ab920486b93b65da4c6e1723fcdd046dc84aa9c4e1605
MD5 7f704733b9ba3fb79e895d7f31d696f7
BLAKE2b-256 66258310e676019cedbb6637ea164fe3cb971ce9779f29433857faff312ed83f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c2d4ce3c68483bee682376492350c5f61090c783152f3ac4ecc2be57dbf0b43c
MD5 1614f8fb4ac99a1623ab4231becde73a
BLAKE2b-256 bc0b96d2ac93a2ffc3e3cf28d08833575fc65242b3ebfd04515e967d9a5a3fc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6990f8ab9e9e4c7781aea2f754d77015ae4b38576168db04f44dd877f6b45cf
MD5 be627359d5da8d322b11a5efd63f45a2
BLAKE2b-256 c5d6267cfb679ef39e7f8078767caf9eebe716f62702ad0b6a12ecd798e19bfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f285400c2f80fb1983e0526ded423ad4facf9602f7530c172287b410aba0be2
MD5 3228fa432c4ba6ec1f18cbed339974d7
BLAKE2b-256 b9e9aebd089565772714d45fd06da39678b7f006eedf0b598ca243e7f155652f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dea4b596ef419e87e443deeddc87adcd9fd8ab3c1b4d149eff52194491295114
MD5 d722b4608ffe227050760aedea42c91a
BLAKE2b-256 fe9fc30042dbece22a298b3fa9bf0d7460fb65ee923865493424be4c1918f725

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 23816e82e217b213b1d870cd52b243c3ebcb1e1992f1e83c513a81cd8f132e60
MD5 6beb1b56c22c3793bb122908cd91f8ea
BLAKE2b-256 61e51d35f71aebb918e63abb245368931de9d12e2ce73a622f926c2d818cfde7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 945cc943adc11e3ec7148b00d84f6d949bf14e82ba9d798095e0de251c9f8b15
MD5 dff14fc70e25f946f5351c93b2e2a42d
BLAKE2b-256 1bd6155dc1c29a24d68f70ce63ef43ca6767036dfebb8c8e6c034710a67228fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4186f670185dfda6268bfadcce007af4a31d054472a1f991a60569d4690ffe44
MD5 eb212447645034536d0da14b3e7fd890
BLAKE2b-256 5f8b6b8763d79b9db4de60546bd4c7d5431278ea0053bce71a876ed58643def0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.75-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c726d80a97a437b06e0e2743c066d5f2f968e0dbd68f46be3e8ecd3bdc933cc0
MD5 250230884d985af829d93ffed5bdb73e
BLAKE2b-256 e14c7f135deccbc4993e53ec98dee0b5ccdee24f36ab23d6732569e8d049c1ae

See more details on using hashes here.

Provenance

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