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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.17-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.17-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.17-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.17-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.17-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.17-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.17-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.17-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.17-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.17-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.17-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.17-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.17-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.17-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.17-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.17-cp38-cp38-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.17-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.17-cp38-cp38-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.17-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.17-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 59194cdb1225bb04dacbfdbe1e2431d6eb861b34deaeea132e54250121c04073
MD5 d7a2b9b18837e68238220fde30cfab20
BLAKE2b-256 2ef6f6ce59cb9f9daccb599359e61203c86f2c779d1832e11a634e23791ba234

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31ae0b5eb1fb69b5614c8629f7baa78ba79fb3bb3b8b9fdc58e12ae219760853
MD5 39eb37b1248a7cdccfc765827079c43c
BLAKE2b-256 68e10bd37465cb1b38f40e0d99403937a530bc6800008d42bb6cba75ec1b949f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccba683707c7fb4cd5b6f017ba77b0d520d7f8a1c8ce86673f40d27840c1fbf1
MD5 83548eb9f60f73136e107ed18d058781
BLAKE2b-256 cf097d4d3cae578a03f28c260fc2da3f5ab2bf6530d03047daf8effa9abff8db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa8948ee709a3f3f5129b703eba8194f2a569b6bf136fe664ae666579096e194
MD5 f84e6af753f3d939e9999d3c36c27ac2
BLAKE2b-256 42f4203fdcbf5f2f571db47f126836cb662b7bdc806402a825f5831012c7c142

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 67100e70381dffc6f1d14d9b0e49c86f4fa8fa915e987d03bbc83c8e240152c8
MD5 ab53db10d60faf627d2d91d3bca39ea2
BLAKE2b-256 56e0f49c413a4890ac312e610aa378c635f9ec10962d787f8a3742afee06af3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1caf355f1312fad66e19657f608ee28c36baceb77ee0187c3ee369d7b16f8c5c
MD5 b89c13b178e9522a622c06e0eeed45a4
BLAKE2b-256 0c88eaaae9f60603f67f0277d08155d67e45c3ff96b9cae005427631f18e85f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 107e5f2b56fa2f785ab76df96fcb7ae59aa8c8d4a104c8d816c2f58256c388d7
MD5 e14adfea23ebc36f7ed34875c92afed5
BLAKE2b-256 5c5005dd37757f1e8cc2d048fefa89cc4aaf06fc2a2c5a75ada7faba5d199f61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76ec09c2953fd7d58748397c351e74bec29fa2658632aac5b842d52197040574
MD5 d5ac95bf583f7adfb7b2b9f2d7307bbd
BLAKE2b-256 0e1dec16fe8780efece368ffbffe76662619f2cf160dbe9d7ed7e2aa98853614

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ad13568120972292a7fd7de3019a9ba85126f2f9c7ebb16a30f7858d781e7e6f
MD5 011c4059e262bff15715f82299164655
BLAKE2b-256 91b6416b3d950fe794efa43d13bfa0720b35d86e2ae878e0536c09d24290fb58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 433aafde89464492a0b1e0bd092c6e50c2103b40a229f5d949ace41bb699d3e8
MD5 181ce749a920f7e661cca219bb320e47
BLAKE2b-256 c0bc15965c260e80a98ca9483c1c1fc07e6aa82e5986fde9e4d75750958a51b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3fb073f0e76dcb63c2d81f1f07395ae6351eb2d465e41f11e11df8f3f07b9ce
MD5 5a0f96de2d14e8fda05bb8472cd95b66
BLAKE2b-256 17d6c5af3ec08e8a3a65afd26945d561ce677806f680c67a70c882b6b87fc4dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5683837cfc04856b74248250813648634be676ab5b96d4c89bbbe7f06d741828
MD5 b3ed75b129f9eea29abc739e54a5ab7c
BLAKE2b-256 9f9e7c423e3ad098f600b22a3e2b7c9677cd2aa19ac434aab11dc6f48a67de55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 14b9b6326f1fd589f68294ce07e1604b1ccb85b36265b65ee38e022a505fbe4e
MD5 36fbbe5fdf8c0890397233941ffa8294
BLAKE2b-256 8ac27b4ffb3504e17866cf4e410e6d774ed59db8b22f42a13856cad7f64ba403

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6613161f900b6edbfe3b6ffe8c9b76d9d13eee9217c2f61cbca785a1c12d8124
MD5 7bc52743e2507613ed1dcfabedb48511
BLAKE2b-256 be9d9bb03d15c69ac539a3327251fa2a026a10dd56164c71f90902a48fe4947a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1f5d2a78f8a8ca3e6f88607ebfa5d73252ca09ac502323e45cae5be9a133f3e
MD5 d8f5a6c012a87d379cff9bf6523b9b3b
BLAKE2b-256 859b15e554052d23d8c1d5334354b6ffd39edb70d3daaa418e01a26ba3e24661

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1aa0b4d3fbaf3a2acb2a42285477649a24ece56b3f5ff1f999581ef7674c7e40
MD5 2327ca3582d42865cf3b192486b2f57b
BLAKE2b-256 242b411f845c9c4331c3ec45acf93835d547df01545beddcf9d1c369dab03113

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c5f5fd1d3a8523d9dda437196c67bbda2261e7444e627e5a608a59414e460e5f
MD5 d9dd8e0d1d96e68b09a9b04d3b934ee1
BLAKE2b-256 84eec1e68c682d01c1b7f1cec5517eb98fd8167f62dec806b9eb40126a3c9bdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d22016f0c3d39e1dd36bc4a0034cd219305710af0c37439a4b46d3f60fbd585
MD5 d22b59f6d63dae7b76a13b33ba9d8163
BLAKE2b-256 9ce90286d945956ccdd0f0935cdc791fa2657761eca9427d01aa84620d9594f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c7ef340edb6cb5632a199b91cfd6bab7711bb157722d28fe989a821b823cc43
MD5 bde37d0fcb6569b70e8ee18cebfba2eb
BLAKE2b-256 08bf1d07f97e8635e5a62a227eda8ccf665b923e4c302fbc283f883fc5a66cdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.17-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76ede2cebec761007b24887993ca3ab78307a2e9c65503f55a0ae7bbe0247b63
MD5 6c709d8c12cdf7e8e73d06d817f673a6
BLAKE2b-256 17e87c627a6613ed58cdae262a23c76dd222da1d3f76e1603f373a6a042317ef

See more details on using hashes here.

Provenance

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