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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.19-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.19-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 917f51f2b4a7769570d2442804d1c9dae81581ea66b88f9c2e98e71e7febd6e7
MD5 d7c13cc116d65128d3f71afe43edb805
BLAKE2b-256 fdea2e39670ca47a0b52a985cda53b0fcdacc1c4c0dff7d5240ac3fccb0ff64e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ce410a5e4d2ff2393370d3e538f3c9e66c823584d4dda2a7c40b701ec87d009
MD5 6d5e4248d7a1d9beb2fe63fcf7e4a202
BLAKE2b-256 959cbae9b08b22a2ac36ed34ed373c964f89356cc235160bd78a3dcdeba9a9a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 449f269c5a2e5bf06deb4f2137c5a3aff243322bebfca4a729ee1183d83fccb5
MD5 8cf5ebc684a5a89b68ec3176f33a93fb
BLAKE2b-256 b2bf6758b1e0b2901ff7d25be763ba6658e3922f2385a5ed0122a670e96efdd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e4177cd297dc3b2dde6f86d835bab45232ade176b1f885356e4a8e97d0dc0cc7
MD5 cd8457da0df3dcac544bc435eff43b47
BLAKE2b-256 c3e47e994473da200b1ccda2a25fbc390c60200e3b00881a7992143c3de5ca62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7bd1af10aeda050f278b883141b8887ee053b578ad33ae908540a655028aa1a7
MD5 82ed838f04065ccbfe4b926275c7cf99
BLAKE2b-256 60e1d0c22ed5dd8530d286ae216fd7789b2dc98ace27f8d38a1bec0af000324a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e11c04bd2e528202df8cb23c1bc603b9322f38e247a2f51d9f9d0a20d14a054
MD5 8cc9f48ffa5a7bf54de330ec1212efc1
BLAKE2b-256 09afd8844db92e7cd798018c8b9bcd3a9e38cc7335d9e4a6d5b48bcd689547e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 943717eaac912db2bf02837f739c0747b72aa3df57b92b04443a0a6b6ef00366
MD5 54bfe983d0574a71d5c20e69ff6e7c73
BLAKE2b-256 1ede4a82c539a57405e1df5c877b4e322f1c883bbc9034f9b78acce8ded6e803

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 332fb509873ef888f702963a0ed0956bc15f6c62f5b84f08c3d14a41a2162ef0
MD5 c90c9bb121ba3260d14f383cffb42421
BLAKE2b-256 e39c62f5902b24944a4f2cce706f2966c93760d452dcf227c2848b3c0d6497ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 242791a9f30b4e17a1644f4c4caa941f003cf9d153fa7a9f1da34794be80667a
MD5 549c743a22254bebd42163660ffe3a6d
BLAKE2b-256 b015ff2dbfd664bf9653317f69d1b4086b6150319b7be007b073b82d497da10b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd58254bbefdf73ad9c629ca21096b992f339375d079ae245483c985b738a6e3
MD5 f317b128a23ce6858edc0b36fd58fde0
BLAKE2b-256 e6b66ed8aef522ceb40c66868d745151723437f9cbdfd085a02f4937ca852a68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1bb4447dea032743cadbb4ff20dfd107848def5eb73cd54103af0bdcc8f438c
MD5 62529c55906d732f842482a4a3a0964d
BLAKE2b-256 9824395a18f8e14fca08648be5e288cfbc97d9c8144cbe5db494db1bbb5e5cef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b5cd35cd3ae88f882d1007ae63f33ab5d5bacecfa0fb91b743817609548e14d
MD5 8fc14b1e2b515697c174cb1330625239
BLAKE2b-256 df6bffa7589a354a6b52729f4842ddea0cb88360165f5733961eeb328898d70b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cca15104cea5540f8ad2ab8c392666685ec3e43a845d263674de59ac7bd8daa5
MD5 f62401a3868477bd30e1f77bedc23023
BLAKE2b-256 4aef60e9dee41b4cd4ca7c46ebfb204b724d96e7f1a753f96d13cfe9df52a003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82d139c4d3fc95f31cbb826f20107d430b66e85bb3a1975d56402e12c8e27ace
MD5 47bb8dc209bfdaf78213c84ca8a6b923
BLAKE2b-256 20ee1634339623be7dd3df9dab6f7a05c022f8d0c612ffd853b2d978068a6278

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d5601f610cae54c4614b270a4640f21aee9ee59d23b240adf9d20e1968a4f3f
MD5 bce28107fd5458b8a720fb67e65506eb
BLAKE2b-256 cb2d6c567c9bf59a2111912376127da10d0dabf8ccf394d2c83ec90db91ad008

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 71eff5caeb2a1ff92370fa8e393180b5a7a88afba64da0cc3ab281cfb20cace3
MD5 760fe79f3f9e000e856ccffe313e71ed
BLAKE2b-256 7b8063418d7f9bf74e8962b703afab6584227b396ddfcd67508aca441a927043

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 89b79b5bf01b4054f7c128092144b99b2e293025e81787fabd7a23af7a94db53
MD5 8ace143ad446fc75322921e97856d748
BLAKE2b-256 a25a6f8a8e3dffaa5085cf810bf553a268da8b475d6891544ef5040f66a99049

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ce35fbf1acdbb4475562d24c819a4b55d963084bb0c39efb5c61ba3d431435a
MD5 e479eb77d9b0e82b9c63a9dfaa767478
BLAKE2b-256 c0a770673a28bf6c285a1a81015a5dc4b7ef7bdbf1db5eb9b7176f6df86e107f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d21adf9df91adf48d4e359c757353b0181581a4f19f9f59f12346ab27fd80316
MD5 f4fed5e31bcfdd457271702ed1f78c33
BLAKE2b-256 960f5be381bfb8112ec01b669cc87eebeb9124bc96fdb0de4fa218a345e80754

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.19-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f86c39dd72089a1b8c8eb20dc7fd29efd5ed7cb1c12c9105b2c1479dd41833e2
MD5 d250e506ec27efeb86a0e3af6992934d
BLAKE2b-256 3f7be0376259b75dbc33a7c3bb93ae8b039e981faaea990ba714dab8e8f9cbc2

See more details on using hashes here.

Provenance

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