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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.117-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.117-cp312-cp312-macosx_11_0_arm64.whl (744.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.117-cp312-cp312-macosx_10_12_x86_64.whl (750.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.117-cp311-cp311-win_amd64.whl (636.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.117-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (796.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.117-cp311-cp311-macosx_11_0_arm64.whl (744.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.117-cp311-cp311-macosx_10_12_x86_64.whl (750.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.117-cp310-cp310-win_amd64.whl (636.3 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.117-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.117-cp310-cp310-macosx_11_0_arm64.whl (745.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.117-cp310-cp310-macosx_10_12_x86_64.whl (750.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.117-cp39-cp39-win_amd64.whl (636.2 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.117-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (797.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.117-cp39-cp39-macosx_11_0_arm64.whl (745.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.117-cp39-cp39-macosx_10_12_x86_64.whl (750.7 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.117-cp38-cp38-win_amd64.whl (636.0 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.117-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (796.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.117-cp38-cp38-macosx_11_0_arm64.whl (744.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.117-cp38-cp38-macosx_10_12_x86_64.whl (750.2 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a2886e5af2485a1810903c7045ae5763f665f868316c7e4dfc7a6a5fd66d52c1
MD5 514a4e39180d425c76038ca0cc1375fd
BLAKE2b-256 50da82eeef3659479f2082e074e475b8a2d37c65dcd07bd1670a996c539b213f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3f000643155c9d9d58a6503ade5cfdb5d75cc10c04505346e4dc93036d57e77
MD5 8f1ebed9af30227dd551add6af4df274
BLAKE2b-256 33a9e380088ac8c6430f6f4d82816e0c81620fcd80818ad38da1d8ce44e3fe5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 598a5f3a8685cfdb732e089ba3edc2efeb328480b009f1239a715cee922c8cb6
MD5 2034db7310753b1a602f3102ca5878ed
BLAKE2b-256 c700b6c765e6087dc9024d49a6cd79e5908731343329e3d2004d3d88be5d56fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 645eb0a74f135718810d4fa7404ffef0557728f91f19fdef3801fa7855b2ccc0
MD5 fc93915b7ac862ce4c49eb621b57c03e
BLAKE2b-256 ac3c002c066aa5931bec1a72813d19da9dc2d123e37a5f4c4f7161613aad2f9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bb9d95688f12d86ec3093d16af4f0e5486dd3eb89ed98624eaf2f24676b42bc4
MD5 e6328e62965d1ef88bf8daff3baec203
BLAKE2b-256 e0fa348843a445d759899a99837c9cd6bf6d3a6e40ee02a23a4e0bc115b5c88f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 846716a0f3c68723c4e8b6d758957a41491683e7ca5c32b6c483666ed673eb3c
MD5 cdd7da8fb4801144a3b0d2c44819b647
BLAKE2b-256 4496d0b1d3162e05af58db0bc4fce7e0ff1de9447ce532b8b5b48956e1ec761b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6a4bd73d21d93f22839f494982e34e11cd4d69c42c0ed9d4e13d771e6839298
MD5 b8f9df373592debc274ef6d0bbf73709
BLAKE2b-256 928b21d881d930487afde86b4d33376210d9a828ea55d66b95c309505ffe2610

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f0264412b20693808e20cea3a4998cbdcf27081097f8e8856f6017daa7b99bd5
MD5 311bead433dfa49ba6ee82997a98a788
BLAKE2b-256 b16b6ac96f5296f2ad4e7e58b4aab01aeb01bc404dbca200cd8571968c46116e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ed654bf742ebd7fd47253eb8c1eabc9d304c926045ee492df68ab1125997f01
MD5 648b39cc95f08d79ac10ce1c6f6a4281
BLAKE2b-256 e712d1edfd56b0a67abf19402b3ec9a9bbc6c6eed728eac1b3d7f6002fb0079b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14cb1f78b6e0133a6786ba9bf1631d815e088cd92cbc5aa236b840f148ae51d7
MD5 a68b1c434195dc0f8e5e1a4f004e2a53
BLAKE2b-256 377acedeb90abcb0ea551c26cce3a13c39658e0af7191dc5781a0231246f9bde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a2eb3e032a8553172ff5b35d398380880a83b9d761ef7220eb25a8476ccc83e
MD5 691b00bf92075afea0e87ec7b751905d
BLAKE2b-256 30b3f3766bc7a90fca8091cdb8164a9fc3e9f923dda57695d7f38f615913b469

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3b4a6d6390ce8cc6b162af851b77a4ed1309e35bd51445c451e77284ff8327ca
MD5 f139c78d51d9b61d10f86c93f7653aef
BLAKE2b-256 c668c024ebf97a127003a8a3d33b5eb481853fd3f25fc26c6dbece60224a5698

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e224ed1ae0b59b2bd73d820bd1e2a8316cd19f30793dbe8c6c23fb81bf36a1a0
MD5 b8dfe11eaa6ae067cf0b8ccbcd30cc6c
BLAKE2b-256 1e4b4e82646dc1349e08426fd15ec52320f319cd4aea4306942aba0bef177038

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3960ab36c29bc95d80102b3ce30142559ee5012891d232589b9d8aa8151fe0e
MD5 81bbff12c432167a5a41c3fe4fc9f1a3
BLAKE2b-256 636898ddec62d093dc4c268f55621851645840675289ee145c751a8ae1ff0b51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 168271c4c10594ddd2392bfb03c0692462a7cbb418e4e7b86ed38d6643d49fba
MD5 d5ec33ea621b5c0c70e84af561a79a1b
BLAKE2b-256 eba0619ea8c7ebadff31708cbfca6e6be418d044a0e34807df95db4264ec0f29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9f52e5f71eafc7c333ce2342eedf234cf75f8c823e8052d62afb4b53b4a36c72
MD5 4e9a530e282f5ff7c9adf73e9e46a66b
BLAKE2b-256 29ef673a225390d283603ea98035e22886ed7f2673490b8e76089603b0517af2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4b469b025aced4293384a1cdab57a126d4e81c66e9e2dca5230a32041b205a4d
MD5 c3493f12d4526f07bea31f73e924f355
BLAKE2b-256 0215b03816292a4d7acd861abff238cbaf582f19adb7fdba0396f5911e77fcd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a535fe7586daf2add29fab5948cf0e6d1ea2894bb98024d9712960f9a3958fa
MD5 3ea2001e0f381dcaa1374b8bfe11a23d
BLAKE2b-256 a744df794a8cab631bb15adf0901e8d9c570ac2d1b2389d35b5f73eb27cc0af7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05815021fdaf5af22ab80be890d05d57e67d205d898b1441960c53022d781f49
MD5 d101eafa57bf1f8b6bcbbe0df4db81dd
BLAKE2b-256 4ea34e359a80a7fd2642373fff53a659fc10c6cc3ed5460a826d5e6a15008b60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.117-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 809d59f44786b7acfa1449bd293a1a1d3e1282e450e8b8038835eb6c65fea1eb
MD5 0d9003466d4e062d20eb4cdfd5cecaa5
BLAKE2b-256 2b51411c3f6d9098c4239dfa6ecba4e20e0b70e07849f8741a6fe4b5697b0b2b

See more details on using hashes here.

Provenance

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