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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.122-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.122-cp312-cp312-macosx_11_0_arm64.whl (739.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.122-cp312-cp312-macosx_10_12_x86_64.whl (747.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.122-cp311-cp311-win_amd64.whl (637.2 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.122-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.122-cp311-cp311-macosx_11_0_arm64.whl (739.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.122-cp311-cp311-macosx_10_12_x86_64.whl (747.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.122-cp310-cp310-win_amd64.whl (637.2 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.122-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.122-cp310-cp310-macosx_11_0_arm64.whl (739.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.122-cp310-cp310-macosx_10_12_x86_64.whl (747.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.122-cp39-cp39-win_amd64.whl (637.1 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.122-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.122-cp39-cp39-macosx_11_0_arm64.whl (739.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.122-cp39-cp39-macosx_10_12_x86_64.whl (747.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.122-cp38-cp38-win_amd64.whl (637.1 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.122-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.122-cp38-cp38-macosx_11_0_arm64.whl (739.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.122-cp38-cp38-macosx_10_12_x86_64.whl (747.4 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d599a0dd3b71735b5fa530ed1d8fa3d49dbcab2e6b089e554e963d7cc7a18e4f
MD5 2061c8ad6e37cd68a457bbd1a6aa8a56
BLAKE2b-256 51f2e337e214891088de3b6b992065f368f69d56de352ce54c22551fc88873db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe8a419d3e37e4422f5a957426932bb05699d18efcc9720909ffbae31fd6afa0
MD5 ef9a88669a1d556aeb1cbcf76ee6d820
BLAKE2b-256 4fff667675cc5db3c581ee91e7ccc078f473755ff70eb10402198bf85fa0ee1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb641da3074a060c24a9e626fa73cc1c7dc2f3782479c791f248257844923a79
MD5 45080dd817e93579a82a1fef153cf591
BLAKE2b-256 da2cb545c0844620f3bf637572738d202efbc8f385fb06bfcc31cfabb1375b43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b88a3c189666876c6cde7633d77683fc52a51a2b49f08c4ea671626c1dfc7603
MD5 5f9403519981253f3a2be01d9fc9fdf6
BLAKE2b-256 95c746e730c5827ae083cac1a6443a675bf271147684832c6e5cbe2889a09e2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 677b2a984b42c4bcf5518baeeb5cd3ebd962e78ad469d881b987dcd65ac82685
MD5 3faf07ab3b5f0c07a706442955c90f49
BLAKE2b-256 a2d832c9df42ca62f9ae3d3c7c546761b48cfafb85eadfc55523d8b3c56b2fcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d964d4045dd8f9226b19ff797838adb395ba0a1ec0528d76a984bea0990a13c
MD5 57664b759481b36071978017e50d6bf3
BLAKE2b-256 9a8a288c6da50215034764f5a353c4ba7ad6984acebab8330a07e6366a6a7e82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb13be5d45dfb4b0f0a62e1d13ef0cd3dc44adb47948b069e0252bf07a76097d
MD5 beda70d66db3ed07838482c72253e066
BLAKE2b-256 47b6e2261e6097de7dfaab61d58acdf1226cb92ba4506376b805555e1d58146b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1666b21d18f3e8170cae356430ae56b31553afcea7701245ead068d0071b0d96
MD5 f513028981f733858d5f512aa200df8b
BLAKE2b-256 cc7c586167d38510637951145b26c8b6325606a6830d5f6fdbd267359938422a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 391b6f029b84873a0aefcc68811afd0974360d873be83e4cb154cdb13ca385ff
MD5 5ace6ae3a3608acca12aae147aeabd94
BLAKE2b-256 2898cf65af9f4737f065e749816e0ab31b069b5bf0efd43ab9f074a5f1f39dbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 946f0c0d833d0260b85923e02e4132c39fbd8efc38ea35386a1f7280765bc25b
MD5 5857897ff40a3ff0cfcb2fda9b3a0415
BLAKE2b-256 9945481778d5f9edf9aabb9f82b8ff62ee626f52c7bd14f2fad9383d93c44034

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55eee950f68339c8121a7f03ba77407cefbc7c15db1f5ce91adcdf8292f35174
MD5 0e86994ff1f75c2095a3403bf664232f
BLAKE2b-256 fc52f26dc616f72ee0e76caaa7b865b1786b7c558f8e6aff56d6dc8460ce0180

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ad5dbd2aa47f69c7f731c2eebb3d2ccd33fd613505704c27a6a3589ec0a7c93
MD5 e82e6e8afd2de40f6507795adba2cb6a
BLAKE2b-256 b71ff7a661512ba790ea0b53e988353a2604654472e24ab35c430dda3ab77338

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 46fdc91bbe9cc04884cdf1f077538d2976c9b22d3f4a472f3bd19279d30027af
MD5 70feb5174288a3db56093dd836258030
BLAKE2b-256 5dcb119287c70b2da651cddf98dc0a531a01afd5f258e52d66f6170d4f4ddb73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55122b1b47a9751bdbab6c9d35f71f82f54520c20657123aae388a5a4e6bfdea
MD5 74170c3da3499c7ff96030a98964fb00
BLAKE2b-256 b0d8e3a41138c789832ab4812dc9adcd445fb6afebcff205aef05f2c97123f6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42fb74dc49f20e53a20d46148aaf8756666ed450ca3b4ae8ba07932989b28898
MD5 32a0a46c6f6c12a8c5e3ce7b7fa8b113
BLAKE2b-256 3c132a76a44c3d93a07a8c024541c0be12c68e121ca3be6eadc6a558415c1a61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 46d6a617c4bd59bea38fc3026d7fbfc683a4319842f310411808fed2f4c1a301
MD5 443880c4bc9588dc3ee970c878060ba2
BLAKE2b-256 1d43404f8103af530b001c648b298f5c1d8b079c10b7029a387f1d7a6231c666

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1ec9ad4a34849cb0ce84615e77308a50d74e327ebe6c55b71cf10df17938a186
MD5 2e528e53e3b9dd35b8f3a714dae5ae73
BLAKE2b-256 6335e07594833ddad87b591da8184403d7843159706ab090ceaef73128bad9ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f371d51f0835f323434a218aa9e42cade05a10dcd3639bd36928564c31bde056
MD5 58a577bb97d2cf376102e4e77e8dce16
BLAKE2b-256 fca10abfcf906feaf9a16d6dd9e57bfb5cc88c74349fad1566c7d1af00bd1f11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7da5a78fdd023378b01e436badac3cff0822f24f732e01d6d1307b9fa1ef3b91
MD5 b07ddfc774a6227879b3e8b9fad56872
BLAKE2b-256 484dcf378f27f154870a5c07d9ba3b2b0488384865ce33359134e13ca3d4a3ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.122-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7d10bdd06263b104fec4449e601c3be330ad27e48fc87530442e7512a0fd8484
MD5 6da4ba701cd85906fc8a3f3810db1b1a
BLAKE2b-256 525d31fdc08608991eebb082323624e9affce33bdda4316ee5236818c26f642c

See more details on using hashes here.

Provenance

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