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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.67-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.67-cp312-cp312-macosx_11_0_arm64.whl (747.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.67-cp312-cp312-macosx_10_12_x86_64.whl (756.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.67-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.67-cp311-cp311-macosx_11_0_arm64.whl (747.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.67-cp311-cp311-macosx_10_12_x86_64.whl (756.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.67-cp310-cp310-win_amd64.whl (638.8 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.67-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.67-cp310-cp310-macosx_11_0_arm64.whl (748.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.67-cp310-cp310-macosx_10_12_x86_64.whl (756.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.67-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.67-cp39-cp39-macosx_10_12_x86_64.whl (756.7 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.67-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.67-cp38-cp38-macosx_11_0_arm64.whl (747.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.67-cp38-cp38-macosx_10_12_x86_64.whl (756.5 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 566c8b71556d7bfe21ec8cf033fffac6c409aadc31febc551a6841afa84fede2
MD5 c1d65ad97e5e8816ba5f5460fe3238eb
BLAKE2b-256 ef56d6a6328e494016ae63709e3be5fabd38eaf1dcbc22ec674a7d439a370412

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 106e8ef841bfb753ef0b735ce194c92df2c997ce6709112cd50f958150ad2756
MD5 d7e6a9a9885df8bd5f15e891f376ee36
BLAKE2b-256 7677353ea625355f6e4b3f70b95f869c91a36e19c358a9cd4074dda9be1b49a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ce8c25baa00b8575cbad050603900797f47551a4b467c4fdb487cef02a4aaa7
MD5 b89ff45b181ed96bc1eb8f564a2e33bd
BLAKE2b-256 dfc51394032fb0ffea12ebabc06efb1deb0e897c7cb8410641088229bde304d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ef3b8053076de1cd793f41d76fe712e890c6af83be61e88b1208fd054095eeb
MD5 102deb6e093ff7b308f5c66a91541588
BLAKE2b-256 bdc816168a14512beb9b8bdf2f2d3f3d03ec2b00691707ac1e580e09e151d34c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1ea33ed46a7b8ad0f39783c21f5a06f4fd0c53c104bb34e874a3a2d5886c2f95
MD5 e81e379279c419e9fe659fcd0effb203
BLAKE2b-256 97f76514ea9c89b5d8e04bad504cf5d3eba5f091c8c65744c5824ef9c5a4fdbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a9e0d9cdb87073e561dce797a2879b0b448f46062b2557855815674ed26696a
MD5 f6c87b8a0fc6b3fcf66d9f36587ccde8
BLAKE2b-256 5c8641b99d595b721cdf4a80f22dc8187430cab9f061d85988bed393943a25b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9ed4051a178da22f2c68863289ccc20cd32f7a9bf1e27bdd91c0363ad2489d2
MD5 e70da8df549d58633c3df6e6cf7c3130
BLAKE2b-256 194b9a40f16d394478ac2e5bb8282962fe70fa3e9d7cdc1689828279da1a2133

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 255aab372683ad86a04283f5bdcdc7a3f48865a7efb6ccf968d8033eca2268c7
MD5 acff2dea9eb8abb2b9fab0e8d761a3cd
BLAKE2b-256 4b79c9791a219cd3b644d829691a6f0cc2e84294c3e1ddf9537e225607f1abb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 09f51177ebb7be3a00aaa5debc4c4f9e2e9575659a47ba409ea08317aed84a29
MD5 7c10ec81df2fe9682e4391f64837cf0d
BLAKE2b-256 e0bdcf787fc27165ab179e9ce44de43c005688434396f9a2494d286263427f71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1d649d76b68e3661e36902dc505c2d5aee586dbc4ed5aacaebcc8c7b087b1fc
MD5 d53f63aada13c98e94e6d228cc2aabba
BLAKE2b-256 7939f69d0d629cf1e21fe1fade5569f0a2109d2a1ba043321c20dd835294542e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc8f11aca2c3ff6cd6971a52f72028a070edcc80541af04af9d6eb24ab02d27a
MD5 aa3b4489e1057109cac5381469e2799c
BLAKE2b-256 69061a271c91d39ddd9e2e69772e80d74e180266fe9dae69787ec73eb5049b03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 621e52289f0b95e62637dbd549039199b26a37e81382d989fc5be13d445aa22e
MD5 9c1d78d312853f4cbe01a0dbf4a606e9
BLAKE2b-256 4ae56c9b4d299a8d1d8447f2f3a1b706888782b24e94ceff5c0775134fc6557b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ff89925b4381cf78cd5410ca0802ef286818a403fac61cd2918d04cfec68ccb7
MD5 1018999cc9afb5150f8d32d824fc5c7e
BLAKE2b-256 c3da9735ba35f63e29a8ce2ed2614de99f5f90ec79b86c9a3788e20b0bde83be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a5fda88d5d07302a68e7e940f7fceda9a346b5f8d2242b1a6662f34bd9aea4b
MD5 8577337bae9cc1cf543eef6bc29fe6e6
BLAKE2b-256 295f6ca0eeafd00860fa3c39a97c73fe02c87be3aff02407b1842c7a86bf4b25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b81e124efcdf3b2a7448a3a426c0f355191addc2d78b14b48d7084b7ed74b812
MD5 f6b5fa06dbd35fdce9049e94d7a13bdb
BLAKE2b-256 1424b9a7717d26abf6b7fffe3953b2f7bf7feaf83c8da358bae462c248e48338

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d378292a0ceb0bef18ca2b696fb7a545e4727a33cc83a040b91b2fe34eecc9f7
MD5 676ba26275721c17dee16a0f6d83179c
BLAKE2b-256 2218a3d8cfb91256c830336125b37f8b23f80d2bc14c823d3010badf55e313ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2bb88e5211fc908443c757367b20fd44b4c9954416e4537d1a70d835820f545c
MD5 9069ee67955519269311943ac04a1469
BLAKE2b-256 bd7cfcb6f198b0bdc1bea2690b974cbacf8756ab2d413f87335633b885a70509

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3642657f4023858b3c147954287c014aff82011d84a9cd639662c30eb41e6189
MD5 0808faadfda0882e0653017a05591053
BLAKE2b-256 64d07adb01800210611b18a726721c5b8b76d4db10d01e31c83aed88b319d1d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68d9dc19ca42e2023ccdfd9803318a256eb8f6aa39e7c69b996271d789162015
MD5 c49ab1386b9ea3601c4bffe56a6c1d74
BLAKE2b-256 8137486d431f2dd642228890b4b8f3588ad8376ef421f25e03f26b0af4d1687e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.67-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 57b3d7b8de2ceee54c45f61a33a126f824861e75b0c931ec03040d7c9e4f85df
MD5 7b4478daa0828d2eefc5c307f7c570de
BLAKE2b-256 458f6c881c16930a54dbed0ae73e3a9e1abe385c59a239283f10fd184d8b2390

See more details on using hashes here.

Provenance

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