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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.102-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.102-cp312-cp312-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.102-cp312-cp312-macosx_10_12_x86_64.whl (748.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.102-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.102-cp311-cp311-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.102-cp311-cp311-macosx_10_12_x86_64.whl (748.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.102-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.102-cp310-cp310-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.102-cp310-cp310-macosx_10_12_x86_64.whl (748.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.102-cp39-cp39-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.102-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.102-cp39-cp39-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.102-cp39-cp39-macosx_10_12_x86_64.whl (748.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.102-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.102-cp38-cp38-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.102-cp38-cp38-macosx_10_12_x86_64.whl (748.1 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ca167e9883e32e6b5a157f2789b8ed83e2a7b60f9584c10de600fe8e309e8922
MD5 44c38043ff403c94a0dcc3e08731eaaf
BLAKE2b-256 19c46b54781ba9e5d343a107ee9de52b071edcd44884211128eaaca624e6c9a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdb5d6b977c7c216ff3a4cc45aebd58df2527ab83839a5e34f3d5b1233acdd10
MD5 0ddf0d724b9e15190d98b9d86c41ea26
BLAKE2b-256 2fbc1a2d6f3f8a2b30cc404b78611c971b3ae3ee9ba505e54963d3a91a454b8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af7bc968fa64f99e2521c3ab527dc63f9f1958a26d43c1e8ab14a773609bf715
MD5 7a5ff5980d2294b671343eb2c5b4a778
BLAKE2b-256 c777fc8138d1b4299f4f8603b794d23f3aa8c950b1ff241f2b54db7eee911736

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e5954582f376cab17f74b4b5af76939eb7a1d1dc0b55ab63929ed98759a08c8
MD5 e58f6e2f98e8849181e2cd62393aa852
BLAKE2b-256 e78bad2c20eb3da01806bffd2ff4d29286c875df68c94be673bb9612d772eb01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 970624d358983c04288c8ddf9ed54f1b1e7ca75767157a1574beb84508a2ccce
MD5 b5be113237e342d3733bed058cee44d5
BLAKE2b-256 a2db4afd5c6a8946a7c5167499894a64a82479c40ad718846a3b8b556beae0e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7202fd3ca1c822d35c5d7433790fe4c9b8f88fd2b936f6738d57c716e185cb8d
MD5 136abe94acb1c1884aead7a3f731e0ca
BLAKE2b-256 275048267bff08596a9de295fb48adbadda3e8a4830f98cf239456740222c15a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07582d3a4b11010cf01b2563d43087e042cdcb38707d041c35ffb32dba6fd4a6
MD5 874cf5ff80adf48962882e3af3aaee2a
BLAKE2b-256 9fe889a00abd11a691b9da7ba5f8e38771df6edaddc737fbe69f5ed879acf144

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b5d67b17069c070239b6fe425c047bebf7a0f83bf7084815a305cfda93b22cc2
MD5 a637947a348f975b1e4a52ff9bd46a58
BLAKE2b-256 df9d91084cd374cf369ac52a1cd44464c6aaee36b19bc0e7141158935100ce73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9dfec592a9dd87c122e7dbe88f77ed196f133ead0413686593c35b35df81350a
MD5 cb8f174d842edfff40a8aafac97fab46
BLAKE2b-256 4ef10e350b84aed08e82a573afe948731e2f6686bd20e965da684c5a925ee7fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7671b51982df68e5599445551886e034feba16c4d39b2c281117a8be510f3b07
MD5 0b7a0bf6894e00c93b7aba4c99c1ea3d
BLAKE2b-256 c74fa83512b0f97a00861f09f5cdb3864189c7d6532917956a3a8b324ab49a86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4500ef7a7b9e813dfed2f409723f715c30eec140167e7e0292316aa73a8a577d
MD5 da7e5c3111a5ec4ab0721433b4c434d1
BLAKE2b-256 d1da10d5b9a0dca0d918cb3533f8b50b668fbd86bb177dd587b816b883593c4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db26f044ac0803541b76926883e5caf7229aabcc9e5ef1e03889b6ac3ed77c2b
MD5 3be6d48b14613cb50c7104705af16e60
BLAKE2b-256 c2ad266606a039a7a0e527c98acf725bbefcddff8b9ffaa10d07957822587e55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d0c6848fc7e46c81721b96caa5aa931d1ea56705ca1607f80a421899eb36c8ad
MD5 c659b44662b979edc2cdbb73f376bd60
BLAKE2b-256 fe7c77af3679fe43841305c13c53250c7c7a65ad577ee359d429bde74667bc4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8eca456d92cd4a1e33c59cc51481c19edeeee6c29bcf346d44763221e9153863
MD5 2c098326b229421fca5cf873ace02252
BLAKE2b-256 686b184fac1ade180d2a1f723a170c031f5de124fdacc9218762f05061c33fea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b27f14b2059925188f99a809bdba21d51420c949d8c518ce61d50e99c7b21013
MD5 f352c062a77d649be127b608d228af8e
BLAKE2b-256 fd2a725f077407d7215be57fc76d723d74f0936a688e5fedb852755b44178f05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fce3a650913c56c933eb90b336c1f0ae1afa322a4c9e856bbab762a0917fa9c6
MD5 6c20302a5eef0e1ac715d04e18de4b43
BLAKE2b-256 3e7dc926c7094f05b6ca5fe60f770c2d32e6a9ae1d6179db27f850e4e8fedb84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 08ede560e7d62f6fdffa1d8fdddd29a3fa0a79ed47fb22ea527e53068c768bea
MD5 fe47a52c969cd26df2b06ef5a03132b4
BLAKE2b-256 bc876212d107d7e1378ed8073372af3f739cf60c556ae902c8d11d056f632f8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41a5a2d90097fd6836f5080a63565a7c2407a5e6556a3f20d62bf8973c674ba0
MD5 24eb8407d7c2b11651b4dcc581e5b53b
BLAKE2b-256 52483ca5394746804152aea447fdc721b06acc382ab796dcf31bc5b6e1b09ae4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a618892b49a865ec442c7f292d031c44ef7fb42b9a86627780e45fe71f85195
MD5 c78cbd15e6481331e1f69d9a91c04b0b
BLAKE2b-256 74af6894762b5048b6c90097b3196a4dfc801aa79b085221652d4c2d718d3a33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.102-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9fb558ac8df2489baf844b253d2a41750b1ed70e591eca2626104fad42414872
MD5 79c57026f0e78cc6d4ffa090bd1349cd
BLAKE2b-256 d3740d831009730d3531a6f4e7d24a703d39a489f7d0270cf6b05b0cd21fa55e

See more details on using hashes here.

Provenance

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