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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.45-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.45-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5999e2ebf7d6579d28875afe71e57ef778f177300c86ec5a24043513a99f371b
MD5 70270677c15e7eb4df72442401336fd7
BLAKE2b-256 7539fcf91cdcccd5a5289fd2e3944048dd32a7497f66908adbb0aec1068608c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57288a51da37446d43029796852e5e354cb04a22bf8bf03e93be78a88ae0fe8f
MD5 24ddd1c6a76064afc79850c54a49a8a4
BLAKE2b-256 1e7f8646cdb31490e218454800dd6668b7ac6596f76f629d2fa1954a2eb63234

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d0d17a541976dccfb7069ead0370b951c26a2c3924bf4cdccd0881ba04a3bdd
MD5 165b9cd5145da892d1f6e58395c1ff1f
BLAKE2b-256 7bb6062c11e3e57a1ace8eed3f54b3cda9afa79982fa533ef274fda219bfaba6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9945b02bdfda3d7c686899ca743b20030afa23451007c456182470f5b7fb04f1
MD5 76342aa720de3cec7c1a29a4a30f2f77
BLAKE2b-256 d1aa02a3a359dc76cd4e5fa91cb646d32e525642608fe37d2c94d10b6d0e3fb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d7f4b04f627cae674fe4a54a1151b76ad80fc8640c9400fcbe41037da3a51d9c
MD5 e7eb69dcef2b99453d84499caf3fd290
BLAKE2b-256 47bcd4ffb51f3950cb9e3f8a249e113148730cda7a3191fa0222b5530cffc422

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f2d09a103af811bb641489fa9b9204caff1286d70b84a1d88883fff119edbe8
MD5 093dee3fb74e96450ed51d1060bfdd54
BLAKE2b-256 b4c5f2170a4d0b639287552c7b3296e592c24fc8f74aeb47bf575664b0cb1382

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c07f7847717f840c5a917e4445cc6a4de9f557142c919c7d9630aafe5e8ab6f0
MD5 1f374b505143a85bf25847ca8c342290
BLAKE2b-256 72a8bc1c6d88fa7b784c7c9e7b6b0dc27776fb37ba5bc12af4265e3029ca1a2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c1ea013cc63dbc4acc773f582b7e04002cbf05fd64e0eb4ea4e9d9487152b65
MD5 656ac55f663476aebd947651419d8994
BLAKE2b-256 4c5ee0848b910f4fb5f579f4f91ff7762b096ea50478d3123294178b0c20bd6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a7042ecd5e3cc9c65619cc2a0ffe2acc28a0bf0328050d4ee7ba8cf322f52be0
MD5 a089f2f9fae6311c9f8ebbb98d809292
BLAKE2b-256 d5dd31da7426912a90581e424f70dd3e7874ffced1c23db6b69a40caa750a0b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37d3d99eb4cb0054f93edb33958237b55f5f2fd3d52377eb10dfb1d2706f9816
MD5 689610212635da3a7f071dc769de0b4f
BLAKE2b-256 0f34931c2262f25b6c566ca57df7236eee2094169810b0f18880855928a62776

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec64cf5e28843ff297766f6237b9aa1ba5e87aa8ca507226c2917525504764bc
MD5 0b87ad22680bc54277fcc0cb11615cc9
BLAKE2b-256 c0cf52743996d2b5fee3ebdf348a7ef0c436c6078ca84a46f063655be292c993

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 973c9808bab83ff78ed762d84767375168036d05b4d8f441c4d1d3a6b32167c7
MD5 ed39233cbadf9ccf10ecdfc60b08c4a6
BLAKE2b-256 a41e120fd362d76430861a31474a3c9fb25771b79a7f94d0a6c0d371a704e72f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 18b15b204ca87d3bf88fa76b448484be92354e1090c00da3531abf888e951da5
MD5 168654a846d62c157102f3739f3bbce8
BLAKE2b-256 fb374b3d07556031673eaab4476321ceba68db44ce9c3b90cefd45ea534f517e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a6660a527c7f4a35933e6cd8ca71730ac50571206d76b25668658139e6fbadc
MD5 78ea77114263f64b20bbd61dfb9db83f
BLAKE2b-256 4b4587a7df2f40a7f624e7a2eb38c0d44fca136c6e63a6ac7be7c002c0598d08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97f82cf57e403283c7fe50e0cc8666bd889c11ab78b3bce7c9c3fe953143c3ee
MD5 2c537607490393dec81fdc30dad3a63f
BLAKE2b-256 7aa109cd30e7939c7948ff27b411f233c108ca670073ad8c549bee975e705b6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd646cdc7d3aaed0fd4760aa54260df7f1ee9e4fb2af0ff0f9e5ce90ec1a26c3
MD5 621a1a0ad30ebd51df8c65fd5f72037a
BLAKE2b-256 c5778991bd53df12545fb432100a81b9aed5e9f2cb4a329e831a1c2fc5cb1799

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fb2ee19db89768b42995d6af3ccd220a74d9be65c03212c2154a599c0dd41bbf
MD5 adcbe1069130c2143bbe2633f0759b11
BLAKE2b-256 76b208164a7e7d42868dee224f4b3320be81b144f85fa7dea2ab2a4239e7c99d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca0f90597e31fb28fd0aecdc3099afffaa36ab90507b57f5bff0ffe7993e812c
MD5 db526b50b312cda13d9fe2caf9bbd7d8
BLAKE2b-256 282f11bf57630b77b777ab548eb1d36286ddc25ecd5e996cc64257b0da661883

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9376e048ecb004633a9bd81c1d8210efb56dcec6c578123725080cfd00ea3295
MD5 384962afddf4948979076b89b73dc499
BLAKE2b-256 44422b97076c39acf2a1ac8271a794cd80ac48931cd1fb95911d9fc010fa4627

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.45-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eb0491fe461abe07785d93b016d8d32d3335f44b4927c477d920288ea68e3691
MD5 9e942a523b9c25d204cb091cf64fc002
BLAKE2b-256 8a021b91f327d5b3c930ccd64e9bf1c5011a930a0447dbfc76ea53a0d0487c79

See more details on using hashes here.

Provenance

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