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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.70-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.70-cp312-cp312-macosx_11_0_arm64.whl (747.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.70-cp312-cp312-macosx_10_12_x86_64.whl (756.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.70-cp311-cp311-win_amd64.whl (638.7 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.70-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.70-cp311-cp311-macosx_11_0_arm64.whl (747.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.70-cp311-cp311-macosx_10_12_x86_64.whl (756.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.70-cp310-cp310-win_amd64.whl (638.9 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.70-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.70-cp310-cp310-macosx_11_0_arm64.whl (748.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.70-cp310-cp310-macosx_10_12_x86_64.whl (756.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.70-cp39-cp39-win_amd64.whl (638.7 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.70-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.70-cp39-cp39-macosx_11_0_arm64.whl (748.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.70-cp39-cp39-macosx_10_12_x86_64.whl (756.9 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.70-cp38-cp38-win_amd64.whl (638.4 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.70-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.70-cp38-cp38-macosx_11_0_arm64.whl (747.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.70-cp38-cp38-macosx_10_12_x86_64.whl (756.7 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d03c08cabd8387725716e580d52331800e563c8cdc196dc1f5ae4c84fc0c82d2
MD5 164e68d8136f99e6569effc5eb516f53
BLAKE2b-256 83fcd45171cba0d532f607e2bcc3c105c90b08d34d3541f0620f664276f95d68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a6b7bca0974a131cc9f240daacfca694c4c955127584c39c3ab2bf0adcdfc53
MD5 676db7ef9cb0379e6bab40b387ab8658
BLAKE2b-256 ed03169192bf8f4f3481a06304484146bff0b7ed58aaeffb56fbedb3e1eb6b1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0870a22214623e1c14923807ef4d0023694e394af9320acd361c7bc70afce917
MD5 b07cf44ee290b47757f3ab8b3ddbf819
BLAKE2b-256 d5eb022ce39bfd62a0f81ef83cf5e9e9f9ba9dcee6a7e57252ad745d39742fee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 351bd8701ef20d7b4b3999d5515276b8fe80b3ba11004042938c90a43841a632
MD5 15f956f4e334468d6ace3ccbb3830914
BLAKE2b-256 51800bf0aa3a4c3122d3f482bbf9e99d2edad8a6e75903fe97370e31796df234

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 85d79eb3eaaedf1a8abaa48fda6a118c6113cbbdfd4877ee0986632a03e0340d
MD5 909e549eacdc7ebf12d7ab6c3a174952
BLAKE2b-256 328ab58deef10d0a872802d2578b724123e29a4af3b58823027ee6d626111a59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9911172a9c955ab90a8843e5e637c08ecd7a81084e0f89d3373bb6d1874e037
MD5 7f29e9754d418f15e53948568fe6df21
BLAKE2b-256 0b55ea1d44963c936e02c6797d0da132a0a0d5e9fbe30083b4260a2cd66d9f3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dc78e9877ce8413c5cd3fa77d0c72e6e4e9ca50c5806b3588da0f4a043754ae
MD5 48d1eeb45b7e2282bd4d5f9827e2c8d1
BLAKE2b-256 fb75d9ed19c8cc0c73e3e629bc9d82460d7494f65b7ec66ca51fa31947eaa496

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e6bdc75714c587466c3c598c6a92d0a1a583bdfe03067b86143cc31bc07f0c83
MD5 f1329a0e266a2c5147e31c5ea6c631c9
BLAKE2b-256 26cc9de4a50f03689dffd85475db438d121f62e737deac37670c24b4d6899f94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b6f6e520d91ed7d14118ac344b55081e0611976c9ff2157996c8ed60003da063
MD5 f0bf933d503f57b516fc0b7239b58b10
BLAKE2b-256 7ed775937ef010d695aa5d65148ea8b41d652fa59e3c5b28f9db4864288cb9bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 354a13cc50a922ddb6ed66373836beb3d5643175d495e85d78b412e2235fa63f
MD5 14ae8fd75e25337f9485e349d904b2f2
BLAKE2b-256 751041ffe56d13d03777d62c0a328d07aaff0c1ab15d6d3afa34b8951edcadef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4aae976d680a093b8d64721cdee0b4e2d72ff628b58779a121e821cf4a3deb27
MD5 ffb4e8ebdd94918cd613c5d5946bc09b
BLAKE2b-256 3ec88d21aca9a77258a89720e19318d6b4b5953fc956cf9df8fe7f9f8727f1e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 074e74fad046d3fc2a9896e1b867c8da43981115c7eada0fe0a19d362dcc914e
MD5 e156eefbbe6980eeb3bce11ede9d119f
BLAKE2b-256 b7cec4d08916e547539c16f82e4de35e1e45d020eb5e54be9f0fc52b3fc723f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e521e0320c573fd01a56632be9f66e198666e43c4ae269abfff0bfb3adce5667
MD5 9d637cba1572ee6e17a49e79f5a49845
BLAKE2b-256 ce53ddd225daef711b37185bee12a5d290ec31bd2dd6ddc2ab18d8eec142090e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adbedf769035e75cdb7a8fcd4ccf4c00a3298299c4e668d5110fbdf72446d6b0
MD5 9d86367f1c6bdabcc31488ddd90a11dd
BLAKE2b-256 97c542ab068c77de0ce7cf68577bbf8673620f6637952f5ecddb4dd653da4527

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cecfae9e31e4835b8a20639c2698b855b3bcc0b4b9c9190690065a39685c72c8
MD5 964732d0703b75e125a90663394e1a85
BLAKE2b-256 e9fc3f0ee340bc8235d00e865f501f7cdf54df4a35e29c9e571fe28711020663

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 36b35cc3474018750cad45fb35f06622811bd15288d82a7bcbe22805f801efdc
MD5 d7746b98c98f571a6e5c5889ce5c2752
BLAKE2b-256 1445265dbb54fef9789b8a0a6a4e9e905be3ba51fe6339fd5a1881236bd71a17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 46e67efd30bcb943dc6af2a2ff84d2b6fd1928d12030857b02c151d82168a370
MD5 2ab155dfb6c8bb95d73a8e2092f30580
BLAKE2b-256 13435d2e324f41a6e3a0c84c04142b91c7e98c40d99b5552e39d28cd92c8dca8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2398e51e3d21d2b92a0523e22411aae9ac88cf1b5e5cd7aff87f444406b0690f
MD5 66c3556cf1aa166e681eef92106643a3
BLAKE2b-256 4836a9660be3dec22b992092b4480f4fd161cd3e7e11fb76755e77e8dddb180e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fecb4bd6dd3983f0e504c831eb9bc46dfd7dd8ca5d7af2c17a1e3a0d636c794f
MD5 bb36c810ae6c3d43a26d27b636469008
BLAKE2b-256 0f0e939859d9598a9cc409b9376afd5d72f937e66c24e4b1c50b77e10c432f0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.70-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 754bca12f395223886eb08f823601377bcd7209f40406adea4cdddd855580163
MD5 de291cf7838632a06bc07e2639348f32
BLAKE2b-256 de984e239a5b311f3f00fa964ae03959810ab06427a8fc549d084835c3ab3833

See more details on using hashes here.

Provenance

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