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()

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.

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.25-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.25-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.25-cp312-cp312-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.25-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.25-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.25-cp311-cp311-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.25-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.25-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.25-cp310-cp310-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.25-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.25-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.25-cp39-cp39-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.25-cp38-cp38-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.25-cp38-cp38-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.25-cp38-cp38-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 12bcacf3d4a2a06411ad80428bfc35d59e024f339b37d76806deae1a7a8253c5
MD5 13d0f698fd290c3b8ba19caec326bd85
BLAKE2b-256 e2aa1b81597f5f907dbd390839fd2e6c25a1e8fe3f1c8ca928e443c4af323c8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98c8b68f1a915720e87e229a597120bc7fb02cad4463618d19e8f5ca1ab0740d
MD5 89992d022ad0fd72ccafac919ae5fef8
BLAKE2b-256 fd34e4ebbed54d783151a85bfce3bbe5b6b0eda4a37515fe5c83d2c52480f224

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d26fa7c851d14ba32368fe95490575e465aa05e87582ddc06f0fe42013543ed
MD5 f7e96ba48797d9e21b07f56d732cb957
BLAKE2b-256 231e5e33b5899e9842c52cca7414349e48058d48d7b19cd2b999261e8da7631e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 17fb722bac25ae84bc632749ee3b7ae8cfb4e51bda146f70c31210d8b472781d
MD5 01e32cf57f29f50ecac6a6d3ac83a695
BLAKE2b-256 ab04bceb2579a472b4402ecd910f029ca0a3db211f329d3cdfeb3e6bf9c4a8f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7f04be45b14e41e100e990439e199e6970c2fb2616ce95c13cffb9cda40a68bf
MD5 f6064fb92a38257031d8be3bb883e715
BLAKE2b-256 fe91b4c3ec6b033ca9a6fc798e6bfeeb78f338d3aaa1674866a19f71b3b7fa55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7e470a73d3d388a982bc2b2f0ba85291d0e822a78c4e8f7d10117434c008bad
MD5 abfdc4f209bf5880dcff8a91f34b9b2a
BLAKE2b-256 a48d9a80fd65539c382414ee440753ce8f40af08e886ba7a5451f38acfca0370

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3167b9bcfd995ddd3608b72da19ba9c4dd3fb3c174cc3e937719b7b71ad65cd
MD5 4bc9f3e61437a4c1ae3b56bc3b5d9b51
BLAKE2b-256 56f435893d2b9da00762c65393d8bfae4bbeba2a6fc11ac6cdfcb3377f19b9f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93fe99e449e29540ed0b2277eabb478300629ca30ba71aef533ed4d2a9e38dd5
MD5 dd262e426e2b9f4b6f8c30f865cf5923
BLAKE2b-256 9bfc2f43dfe8fcad521873a027542ce52110ea6490762f7738d3ebb3cefa8788

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aa518f8705a506b61c79bb79edef4cbe709567dec10c3c8d8212d8760a59262a
MD5 d0f1d0589a2c25d7c7eb4ac79ed4ce67
BLAKE2b-256 eeafe3082ff84f31b1e604a921157c89c2b82ed6216c35bcd423222f7afc0918

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24b13ed76973cd2cecc4a796816bc79453582fa11b68a856b24ec2f06b17a6e1
MD5 d754b7a50c51a1a62a1ca64444d42d72
BLAKE2b-256 6b073fdaa03effed98fc4a7855b14c82cf4df83116bcf93b5ce7406f114741c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88bf5eae1d9089177cc8b91fd4bedba190726d2a19201c777d4c97e237e3954f
MD5 012d4439e2692b2e8592cd027517d995
BLAKE2b-256 9fbd4fc2e6ef01c110ea01e8019273b9aec61c59b61dcff7d6e35b5e26012ace

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 30043e4ea234b510a8740b0d4ae02cf244664750a5ca38dfd0f346f9ac5d4ac0
MD5 67cdcf1ecd9b3777af6c55a2fcfdd87a
BLAKE2b-256 a5f6eb10c0c9f2e80e2279533d25f6eb16aebfa8f88a4339a82adc051ce2dac2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 67344f0f8bd89659d476860255e8c5ced845cf5bacccaba928fc7b7e01381bf9
MD5 e62e3e94d400e48b74c529deb191b3a4
BLAKE2b-256 4565be54d1c8b0893325ff852373bbb7ce4ac6d80c4776961814630bd6bc152a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36c4430056bc89625f47f2f068996a4e024a64a42c5ccd0bff947642561bddb7
MD5 f0b67d54f045b1f90b091952e7835157
BLAKE2b-256 88fc183d35c0233bab3fd5821d2b8a6506a2aa48325475ddc0d5c1257d4bb9c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 caed9684dbbb7dad96846671d3db89cea155e2a2bf45081eb2a136ba84fa7b3a
MD5 62e0417d69916c7bfa86c433b4f60a93
BLAKE2b-256 d8fe1c74ba5ca99df37915df8b8400d88fc937b01b3790d151550ea6c5be1934

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ceceec1bb9e13697582b6ae7d1a9d576809418488d33f0ea92ed3176629b22b
MD5 256541f0b2b3a65e59d61c8797c6721e
BLAKE2b-256 2d5d0c39dcc217ca3a28c131e3afaa199fac4481f2f791d579da0a7ec237167d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 12f439449a06805b97100c71b173b03faa6db70beb942055bcf0966cd27e9a36
MD5 de476db680c7f76a40e381c5e55216de
BLAKE2b-256 c75b9136e226d860636ca123ccfe477bea749f695b86f548cbc42c2b31fb180f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e81b96580c2a56ea84b02d54d80b4f5b14fe3e406c28de97427094da2b2f88d3
MD5 50b6b729e8f962177d6ddc6dee1e42ee
BLAKE2b-256 3df560fea7c33db57d1435444c7aee5031b463dacdd0571bdd96ff7a381f72e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73b1c698612f203bc0c344a2df47086114edc9a5ffea51c3a664e3902c9d4a37
MD5 5817fe57f41df7035246ea9ceae16e3a
BLAKE2b-256 c3e5dc2ed3dff37fe1219e1ccad720f2221b36957cd55064adfb72f5076dcb29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.25-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 16ccb86a35ea5ff8105de96114ccb490189d35d7cf955def481437dfa43dffd6
MD5 e2da0374d7b48f83f785ac3769fda230
BLAKE2b-256 92186d4acdf86123b96af87be1dc6070539120d263cd8afa54adc975ddfa7cf6

See more details on using hashes here.

Provenance

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