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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.96-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (795.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.96-cp312-cp312-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.96-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.96-cp311-cp311-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.96-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.96-cp311-cp311-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.96-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.96-cp310-cp310-win_amd64.whl (637.4 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.96-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.96-cp310-cp310-macosx_10_12_x86_64.whl (755.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.96-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.96-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.96-cp38-cp38-win_amd64.whl (637.0 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.96-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.96-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.96-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cbc4ca3d87ce93af95dc6b595a7eef46c13f7ea113d49b264f4c5dea0ec41be3
MD5 a15b243edf53a866718925c836b0940a
BLAKE2b-256 13d5744fde951a079d5151c9e7d6dd043d86d67accabf1e120269ab43ffcb05c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a021e6fedd104b4fbd54f314c6ac2cb48993a491d9403a1f64bd1cb89d1b638b
MD5 81fd9139160cf9e2c09f076652bc34bd
BLAKE2b-256 3c3954033d2f0e9e364d5a9ef4290100663c08fd545e871a82e170dfa800d265

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 918bc089313772ab28641189b1a1c7062a10c368ed700b4fb73c4bfc16d628df
MD5 fe9cb5e37c0b8d6e47d2e9a245128637
BLAKE2b-256 4f1d71445a020f8b11d9aeb0e8c0ba0b45f76964cfb7d35a9dd90d935f85d118

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b642830964c3ff9f464e371a20c1d8f59b205adb8a383d9a613c2007e66f762
MD5 0550efff0c638b7bc119d13ee582a699
BLAKE2b-256 f756d27d16e1dce50411254f2a58760332208d2b99f50e06bc3835b8fedaf64c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 55275e618ba55c699d303bacb15abb3cb3705b074996e6d35bff043a810d15b7
MD5 075919976667215881ed0b8b2aa66ffc
BLAKE2b-256 0763e626242a3c44e905631ffee82989291ff39541935dfe094b0482d7e6ffad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c16a2fca266a3375c3ade47e28391ba2492d8ec1655e5838f099a7a85ac140d9
MD5 f063518e63b08f766eb5b2e65fbffe34
BLAKE2b-256 a66c284cdaa9003d1d88f25223a6a4a8c8b0d570c256195cdc4e1df56bfacf34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c00225e4ea21742b2960fa29230dbe8902bb450a7f0253d44784ce3c4e276f4
MD5 664b86e9451d6ea86b95271369213f5a
BLAKE2b-256 574c901e239fde2657eff4a8090693afb79ed95cc38dff6b379fce044f5b2824

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d64070d61f04f8f3ff6f901d0cbe729b706e71c59f3b9a450181eceeb8778568
MD5 dd6f86af7b40366cedcda53f31632279
BLAKE2b-256 e3567182577414a60de62e4e07483e93c008ec382085d66688655442d0284b06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8306be9c90d037589df6c1be57b6b4e0516a20d21583c8a96d5730dd4bda2226
MD5 87dc670b26aed585bde5c011b7fac9af
BLAKE2b-256 f257d552e66ac2053dd267c0ea2f0f2c4deedc2d7ac5c965017bafa86c0fcbd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3ebd478cc883294f26f985af3a0ef8cb56c59a1328a1f8e5339e0383c17f46c
MD5 d3c24742c8de3f43a902cf8d24217e27
BLAKE2b-256 6dccb6412e1f499d9b7b9f797cd74857d33131e020c7c044dc9c86bb95bf21d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5050691412d57edb95101fefa5f4b6e869f417df5605ddd37b91b97c9045a5ba
MD5 a7c0f4ca188dded8a9985c63994e592c
BLAKE2b-256 7cbfe3cf82b5d940631748fda201bcf74277cf3801fd125a156a560d7fb1c615

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c12118fcfceb14843177a6a1a15a4464e6e2b57767bea984e09ce29f136c47cf
MD5 75e647f5c1c41c18b14f9025d51cce55
BLAKE2b-256 8a99a65b0cd33e76ed3eae08856ae36fce844ffc45face9441111d67e7998eff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9cdc14d8c9cbceda891ddf5929cea2f2b6c04fda1c69a5f2a8fddc56d62fa62d
MD5 0686d0cfeead4eb9afdec72ad01d2296
BLAKE2b-256 430b246900f82b6f6a8bb5d2b64b2335b41e1616683ddbd35d24b0573f5d75e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e626a1a19d09273da9983ed736939f23cf7a36c5a99885b3b64549a9f9313e12
MD5 2e51689ec0f14212dfa1405925ae2076
BLAKE2b-256 2826b2b4220494ee915c8ff2d21afc368cdf4fc1181ffb7ab76f6a5bcada427e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fd2299345875a9cf40a4d1c1c5050c3b87656b1e4b1d300ca6266af53a1c929
MD5 11633018738afb612a3fd213b02ec336
BLAKE2b-256 255c98257478c123b616d05271069696d5d8ed97858574c68f367223bef4864b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf4d0ce966d2720d427b1d6d6dbd5efdbc28ae495b2d8da5e2c2895aca6efb76
MD5 51b7480fa92e4b5a077f65b509ef1ead
BLAKE2b-256 392cf54c36fa8a25eb4b2319063be442a3ba9dd246d367c3fc822358025818a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b091aeb147406d234daf6b36b4020c06ede570f4184abc67478ab021ca3e9e2b
MD5 15493dbd0ebd4cb34a0353c848685292
BLAKE2b-256 fc2c0b486be09b4c96940debc4e5a508308d8ffa9f5ba53881559c2e94684e25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1520d99ef76cbe02a8e145f04b3cb2acef9dd7632503d1336c9a5971e3d3f33e
MD5 40cf00d1024c5fba46c8833d34dd9346
BLAKE2b-256 866756116b609f5b95347fba1b83a6829028c1244f80fc7a70f54e4f2a7730b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98d8ea0584965e7368faccf2cbd39507cd24ef443efac5a1a7856a6031713f28
MD5 72eabf8479cc6cc8211d09dddfd4e9fd
BLAKE2b-256 3ba89acadaa8a5675e2d02072534e0d0c930a5d0ef8a968bf6b2e74e5eff8968

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.96-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 18a04934711b7f6bf8b1d14df180eacb608edd76b1b7a634cc6e80f6734e5739
MD5 c708f5aaddae3002f9b4410e5fb6a05f
BLAKE2b-256 0d9469340d126686e88a13b414f2174cdf84b22c59cf718eae0ec25adba83acf

See more details on using hashes here.

Provenance

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