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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.36-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.36-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1ff8486079fa73e907f7b4e092021a60ec243aaca1c07e0c9920c1cd9aa1c14d
MD5 9d3f3d73e57324c616885fcc36b55f4d
BLAKE2b-256 8fbea949ba47f7a19d37da9acd09ed7cff356f45c0602650c9ae15584e550fdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6278c5146f46436250a00743e9813258c43da0b95b7f87341ab27a80a9755d4
MD5 20223cccc51034ec0df68cd228766635
BLAKE2b-256 802de1b4835150c89ac66d7adb5403c0265e58a0bf9eaa8c488685a91bb8855c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4544a178f2a2cfe09f72ad0509e624af0ba4eaaf7aca6618aeea4c964330b62
MD5 38a5cb1ed89945fb0c53315ed6484948
BLAKE2b-256 572ed3ed76610b9324d5ed497ea6fd71e5a87d7766a18d31f76c7fa4494ddde2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 218b7694418b924816f34268ad88617dcd6958494772a8ae6a7da75181f691ba
MD5 fa61a5b809dc51b3463bc4ce5c2cafe1
BLAKE2b-256 307b936608853c1108e4e00f343bc87a8109433778bbdce63c11f5475fdc3111

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1ce1efbe8dd47324f61ac73800bfdd7873a87ad0153ca48685080158f071ab54
MD5 6df4960ca41c17571441d7689c2f77b6
BLAKE2b-256 7fc0f872acbf73cf3c0a603c4cded0e49c30d829830ed153ea2f2fb2c78bf5b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc2df06c016e3d5d770017fb9fbd1e068220b2eb017719da9dd1f854478169fe
MD5 4e07cb020931cc4ba2390e26094ce4ba
BLAKE2b-256 2e937b106d55727ca4bfae1d5918f8158fe32c885a14096952867cab2496658e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89a41e2d39ceadf94328ecc5869b9468c919d1d4173e401f490c5a3e45c51485
MD5 1758f75c647da7f246101c3c5e9e1d34
BLAKE2b-256 9a779d7480f162ac60bdf936df1e7cb729b8b8b27a7354cf6f20e1a8098f1125

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ea17a3d0aaaa685881b3d65729b00c22c592577422b187072c1b27a48b57deb
MD5 0419d519fe85c15615432590b7c66d3e
BLAKE2b-256 792445496a6218423249828e4c978f0967c23ab67e351534e619be4a31fafa94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cc3de2c2ac88ea917f8411ed64656cb99e5ae4767427aadd37a3223b1d766fb0
MD5 d333169f16b05067073f56482c3e012b
BLAKE2b-256 bc98307e7a5cad481633287cafa478a6d1ef4ee8c5f0ac4eb4bcea6c06c5ebd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac8feaecb956fe58dedae8a2c5c0bc1e3064225d1c9998d0a000e07a59c0f7c7
MD5 26e8988c23e9310ecb12bae653333f7b
BLAKE2b-256 b47d6db8f6e503d481610eb195ed6b1bd0c20e2f00f20323c6503c11816d9d4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8566fd0a1cbfe39aee9ecaf2b6706452b33d567307e47ad0f73bbf53d14ecaff
MD5 ee9993a74ad61fe2bae2e3ebdebb7e55
BLAKE2b-256 a4f7dd59ebd2629b3822a3bc191496e2ca7c37291bc1f6bec7a8986e26c18121

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d164dde6077bf3b469664b188d94ef87b35bb1cc5fb38dcac76775fdea038c6e
MD5 c3fb548a790f18f3ae4042d582ef813b
BLAKE2b-256 45ed23d621b85e8ac40ae828b6db7542d07541149f49ada2bdbeabe91b93a1cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1a8587328dd0e4cdaa02bcd5b86b776a83fb9f5c4fcf514a123715c903492f58
MD5 62bec6ff04c60d9b315a8402c8c7b1d2
BLAKE2b-256 975e5220a60512959cec7ee3147121891d10c1425ce5a386b7d3ba057ea62935

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34e468449dcf8c0baf129c06bc2abfada0eb083dd033c63a9cb6e62f907f0de8
MD5 374a4fa751345614e2fd7018573191ec
BLAKE2b-256 1f1729fb2f013a24a82b53d850e86018bb8a70a9c84fa1cea4b42424c65d1dad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e33478ccbd6e6b7238970702832404e94646499b06211756b04cf71c5c118470
MD5 32203f79506266acf659ccc7f740d0f9
BLAKE2b-256 c61271f11a44683d3e63fb19fcf733476d31b46dab937c78a2204cdd4e967664

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e04f2ea6300a924cc367a40d7f8e36f5940c8d09736e650fbef91dc0eaac929
MD5 e48f94ac843b6b950d343a00a4e1f2bb
BLAKE2b-256 b048c05f49247eca65894d5bdb923b7a35edf2645ea3853168b9ccc4c090e687

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 011fbee6c5b37aa0cc14e4876d4c68eff2a61be3c97fcd32b4ca26ceee0327d5
MD5 b0b1c75432ceefa7ae9b4e1f5fe066a4
BLAKE2b-256 3c73b10e61aa11efe4d3ca8f0ed2693395d6f2fa2d33b94ad4715be3371fbf9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aec523cdfdebb2baa7c1db9f729ebafbbdb9aa76d013c0bca4e8270382180b54
MD5 49f190ff80cbd97974245cd597e94c37
BLAKE2b-256 dbe0f507e7e050393acacddd7d16461084a675a35bf3beede742e6238d800b09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db442f512cef53a0904b9c00ae5979aed7efd3ead1c100c6673dc2964dbd549e
MD5 575ad9885f50d33c844f9a35940e617b
BLAKE2b-256 f821fb3c35d43f6abc6db84f9f40514fe62328cb6f72b4c4795c9484066ef0eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.36-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0822f84914da203da65362388fcad1ac0a6d68d19e11f4df6e1de1eb70f19676
MD5 935d798067d96c9281d388493661e50f
BLAKE2b-256 d12229866735bba59bb0cdd698cb9d014800dc815a8777e11f3959b306e8ee17

See more details on using hashes here.

Provenance

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