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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.107-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (795.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.107-cp312-cp312-macosx_11_0_arm64.whl (743.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.107-cp312-cp312-macosx_10_12_x86_64.whl (748.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.107-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.107-cp311-cp311-macosx_11_0_arm64.whl (743.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.107-cp311-cp311-macosx_10_12_x86_64.whl (748.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.107-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.107-cp310-cp310-macosx_11_0_arm64.whl (743.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.107-cp310-cp310-macosx_10_12_x86_64.whl (748.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.107-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.107-cp39-cp39-macosx_11_0_arm64.whl (743.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.107-cp39-cp39-macosx_10_12_x86_64.whl (748.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.107-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.107-cp38-cp38-macosx_11_0_arm64.whl (743.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.107-cp38-cp38-macosx_10_12_x86_64.whl (748.2 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6674130c7679497ec044b71b4a21b75168b6b4ab806cb25200faf17f044ff16d
MD5 ac87d5637bd63497b33333664ae2a742
BLAKE2b-256 d373cc4eb38069115a6e820c89dd4cdb6be4c306d8b980fbf9e35cd9f9809dbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aaae9ea3a926e6e1848c099623800244df81c2809dc097d5505ae9917092b913
MD5 d57e33ff8e7a99f55184280d15b739d5
BLAKE2b-256 cfde4ac05a7e6a536904f28c44d9fd692d1db1cf9bcdf32a390f3ed1036d58ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72de122a24c863213d6293f136bd27f4484b2588fd88c50f734fdb9c03dd1374
MD5 cc273402e9c0154367b16d9ea4e7b928
BLAKE2b-256 c90f6a9857024bccdf2a84e8a2a7627ec61eb37baa140348c743b94f7d23b46f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9e9af47f9c0eda5009578d536b92b49d82ba2422ad493eab9b1affa582f22991
MD5 87cba22cd325db79378e2567ad66211d
BLAKE2b-256 b57c7215064ced98bf5d1ad2d126cf786430ff9ba7f1e40d9dce9c37a3430baf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 576f59942e8ca1d030d413d8dd417064d9289c44f291988a2d38a1e8045684e7
MD5 7e3af70f8f03da32457f1ad17f37d7fb
BLAKE2b-256 19df50997fec6642606d22cc3d1f444636e38b75575f167be140296e884319b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa9ce1cca685e6872832304767e7f1b820edcdcd3d831754b2b549147decf0dd
MD5 37bb96b9ed9cd98b5f5bdba0cdc346ce
BLAKE2b-256 84b21b54150f752fe7df6a5fc3bcc1d9c70b8db59474805e13ec70784a67773a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 424662c757d3b703b05be9ce1a514f511681447418a1e1a61f01e3b320894d65
MD5 58a61df926dc969ea750d31036963432
BLAKE2b-256 2498b6e45be3569358927fa19771f982d2f7947f05fba77ff8e01be81ff7c462

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c18eb3a1338d4b1cd5184460c0966c92a505c262c25c3f1e844ad368d9c052e
MD5 8521121dc25a2116bd44b1afc0f7d013
BLAKE2b-256 8aacda59a5b11c3bcccffda87739dddf6b5286f9bd22057e349630732f98a845

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d6747ca8c30b450409ffac46f343941f5103a4e7258f19b5cc8d3da80284fb67
MD5 25dace96a42c2dee6d26c6aa021c75ea
BLAKE2b-256 e100d566f72219843e2c237658e8d90731203c6f4cdec1ce26a4e00e56152791

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5147309ef32f15e655ccbb042399affac38817b7b82df980c1c1d43e009b9d80
MD5 261a05443c18662aea5ad1fa9f7bc55d
BLAKE2b-256 c636777035dd585d7c2a4e82af835270acc331c100a8c4ba53dda3397fe5ebf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe0e150392148dd981e4be7db4deec9caf8be8ebbe430eb94d49ca552a3dc5db
MD5 b02a4cfab4787a47854b377378cc533d
BLAKE2b-256 552d20826a73a4f44d22b72731fff26554416bbb55f3dc0dc76817207f356374

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9f985dfa5278113ff8059ebe368d40c89248fe6f3076c493a4520d064b93176b
MD5 7dcff56904cc82602bdbd07e7f187fc8
BLAKE2b-256 abd895c28195467771244497f59b69d98006465c4f39c8b48c63041ec0a062a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7d05aea76eeb1ed060456a1408be2c3a8ca606660268739b60df7157e3ff5012
MD5 c33b420110516f63565d5935d6e8ee5d
BLAKE2b-256 266d5628494455fcc81f711ccf5d2a527d4984c18bc469e9c21eebfca8d2284e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68cd04f2d64f37239d2bb4862d5067f6b76f7b52162aa08ebed730b2f030a045
MD5 b1f275d4fa7d78e7a69b45ca3c2cd305
BLAKE2b-256 de8892847df415b9b107226e6b8e37425234c2e53e025bea720cfcc464bc31b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d68588f93a0dab76388d1ecf97a899748a20fd0428560e2c8dcd597c2cff9f6
MD5 3205c1d77dfe4d99994265fd053314d8
BLAKE2b-256 76f7138573ea13dea375a385a343b41dbb3ac5a4a783a412722fd991aa9e2862

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e123ebbb8a18062befc8888603ac6f02788fbf5b309481cbe4eebc000ad5ecd1
MD5 e668b04b97659ee206e51e5a985b4a19
BLAKE2b-256 9cd8b2bf3e14529c1bd729d11408b37013e6c86619118be6eee381448c586e08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c3878402747669901af806ac0e9df464606830a6bf9578d56eac298cdf15ea6e
MD5 23e72e9308e394e4f3e479707694c847
BLAKE2b-256 9e42df2a31ddc04e9aebe22ffc1851ba36eade18469d17c943906d984aa607e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52dcb067b0b6585f166db8fed443bdeae1eed80328ad00b089c7230e7cacaac1
MD5 ba6242e05236f5425c8b45f6ddf468ef
BLAKE2b-256 842026503fba3a85409b38a2aaff7c38e9503deac5e3db83897974c1053ad374

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7621b054eca2e6f307c79aae0ff218c3d4a23c52a63afe1affd20d69c14b7e2
MD5 1beb59d9bb29a14b74dd899c344368bb
BLAKE2b-256 dd726ca95b23e1116a6ad242e876ecea8610f715d85d6062504615cf96bd61ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.107-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6a37110472f87f490dcbfb615a2883142c5aa38e005a3f05dd90e631894a7e0a
MD5 b464cf4e4929af5bc0f58390c6a91a2c
BLAKE2b-256 b8b1015d6c55efdcdc265b62628164a70435bcd34e710aa0f1af631b8a37731b

See more details on using hashes here.

Provenance

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