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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.50-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.50-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6a778a1c203bf5c31ce129ff8d798232469120740a700d5b5aaf16631baf084d
MD5 e4011a735e3ad024413d177fd3c762b2
BLAKE2b-256 aba2c735417fd799b5107ef2a564aa6d0f28bac6147dfe4c8c4e29932256d8a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7630d66f6ddf636ee95c4f82c0dbd256d234a23bab85afc7d231d06806dbc698
MD5 f119b0472df05905cec3b525fba142b4
BLAKE2b-256 bd7a028e158bc2e7036d1e454d5d73c1006c6cbabbe49a5eab36d338ea3eab33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 391cdc42541fa71c0d4f6913381664ba8a903f9e513e1fd77017e93b9ef9f167
MD5 fab98fa21a13810fd09a13f45d73a7ad
BLAKE2b-256 d7143f5a4403eb62fcae740c45d95c53524fe20316a9e46cabf52c9e8d577690

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eafd091b2dd9b7e4f4c1e94d0e19893fd77a1e3c9f25075a82f2995ac78a07c1
MD5 4274c4fd10a474aa11f9cf35a1f82555
BLAKE2b-256 3fff4e493cc9db152587a2150af784f5960c435993679260f67ded1db97de3af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a9a96277c2241b34383bdbe2830e6e35248e9d4672e7edb012cd72ff9bac1ce1
MD5 60cb18c53742bb049e7dcbddd90bb2b7
BLAKE2b-256 7fc49054ade9d059839aef2623770b1bc5efa6a9a1a1bb926d2a22672a9ca46c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2a63ebfa622885508eaca658d429721cc93b2dd0552b37a233bcd46f549d9dd
MD5 2f51136c7237c3edaa40b4ae264c6f5c
BLAKE2b-256 332efdc18f5b511d5f9c36e898d83a93700b1df469b5b79f8cf1f7ff91231e5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de2e4043c4268d923d48bf9ce800d37a66182c248fedbbb544f6190a40676969
MD5 94a460d827fac4733e8a897bcc2e8d06
BLAKE2b-256 361e8ce3395dbaf4a6edc9270ef1758545d39bbefd00de1ff6af34ea467d098b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e6944b17aca24cfd344cabd9a2e7c4d068c0c25ae9f05ace84273ce588ec2c01
MD5 8203ec13b3577408594d6cfcc1ba6221
BLAKE2b-256 a4d67ca659853063cf3b7b214df5c17e1d18cb5707d3147f18de7c6869414654

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b9ff0cd87296c0b62acf2149ab7dea257421eae1fdfe4858a2aadf735940e880
MD5 a2634aba5c68adc0e99cabdbe26b8b47
BLAKE2b-256 acaec67d830141cc00138aae64e1fa72c7c63362e95e9e012de8634ccc31b19e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a34a60744a959a7dba1e43c0c50ec7851ab9e8e6a699352ff53928f74e75fc1b
MD5 6d6f04a1632b4bf7576cd1258746bf7a
BLAKE2b-256 a8dbc67b5cc4bc66b7d68305748d2b4b5ca53034625408d9561ed9726b751978

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7acd72091f6eb113eadd5ec718c3fdfbe8b7b6ef99a881d479beeeeba2ef74e
MD5 87ca45e23aa373b7d7ee068f88a2f436
BLAKE2b-256 2c1b1beaf7a3a859c61e6c93633b61fb729bba38c0d7d8c0ba388cf84fc21cc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e7c26e5b66fbefc421c9787b1fdd631232b22d412a1b1a87a209faa2411000ae
MD5 1b4e75e8a021f888fd1aa5fa262fe2e9
BLAKE2b-256 e5c07f2da5553f4fb9baeca01301141e43817bea8faf7414734fdb3511badc2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 36d611122ca1294114757e12504418c202314cec1b5dfaad549ca69308d2b9b2
MD5 20eb0727ce2aeebdfdb160e9b204dcf5
BLAKE2b-256 9f9d68c30e2cb41892f220f23ae74d476fe12606bbd6a1b49d803dca2fcf9d3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 622f5893f13cc02fa0bf7ec64e0f998ee8fd619383d6351492d5d301b626e6d9
MD5 5f4235d371d13e0bcfeda4d4d26ddbae
BLAKE2b-256 57a574c8af284f91995555e5b6b1d94d957136f20eaa6d097bc14c488d091fc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11608e4fd9b671ce05096f8391e2cf7c020551f69323e61d86f4b5446ba63578
MD5 f32ab4722c87d0de0ab7b97e1fbd97f7
BLAKE2b-256 256ba1743286eb78b05b2190234642e8a05fc80153b0b9e04347bd178c1585fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3c0de93af1d7376fecc065ff5d1e13fec2e819bc1dbb72702ea9724d97db3ead
MD5 4ccd1ab3f6123e50104b69887eb8b391
BLAKE2b-256 8422a29cb77c01cd0f2b778e1d3812382176e15071fd2f83401fd3c0e2eeaec6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 33853af4cf43331e47186c977064226bd274a901d0eabb49f8d1ead4b3d10767
MD5 b225a5671b111038c50e6acc59db4f66
BLAKE2b-256 9ec59b847a65c2a6d22420e71113687298fa479a446927faa8b778159dce0508

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0547513979aa4ae32dd6b63713da05f31aeed9e68b0ff98d8ec2098115f34237
MD5 5d7b81494a47f147f28df8b5802acf97
BLAKE2b-256 46929a89ebf5fe2457be5da83e7fe8c409be3136ea2694f947bc55c1df35a184

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bf06e3992c0ab636d65e23a6752337cc2af3e1271cbaf6569fcaf3630fba564
MD5 fe839d4fefe455c6f197b7e7b1790e9c
BLAKE2b-256 b376a0baf7d914245aeffe0044f8e47b14c3790813d469e6a50bfd1dd1ebcef5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.50-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5b121fe913959c1f8fb5441a5447f051875b2999d99ce85596c4ca000ff21697
MD5 4d783e7178921ead0d45b7511e002a43
BLAKE2b-256 d54e36e326c60cd065b19be80b67fff9cb4ad80381869f11d3bc7fcec969fa6d

See more details on using hashes here.

Provenance

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