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()

If you only need replay metadata and want to avoid parsing network frames entirely:

summary_manager = carball.summarize_replay_file("path/to/replay.replay")

# Protobuf metadata only
proto_game = summary_manager.get_protobuf_data()

# JSON-friendly dict without frame data
json_game = summary_manager.get_json_data()

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.
  • If a replay no longer has parsable network frames after a game update, use summarize_replay_file() or decompile_replay_header_only() for header-only parsing.

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.57-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.57-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 92baaac35cf5ba5dd1f3d0b2a5b87af2de19c923636e7b9930ea0bca7ef42267
MD5 51188eb91cfdb3cda6a3293e4f73ca17
BLAKE2b-256 19ba63a2ba9323024af9fd37dac5420e4bf2aaf0878def3c8ca05b576e422587

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c83a510a6a2b1dba5d5f75a3c0bb078a15f1c5639b02dd00aad140aeba93aea0
MD5 689a3b2f5dad8fb67cbbc88b3ee8fd49
BLAKE2b-256 3b636f4027faf260172bdf588c17ffea5918af2337811edb24234a9431a65d09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 287e6b87734d1ab718246091a505a8b14dd16a322f1b3ee846342767d644f65e
MD5 96c5b723283739c8623bdc18edd51aba
BLAKE2b-256 4f69ec00d060ddb7676d53e88e83071fa377ac9cfff3f0b615859d6b09779769

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 632ac8e04c50b045af0a9965b774e59d6b62a4ebe15866bc66ed94d634ab5a50
MD5 e854951d66ff314949fc91f3732e012d
BLAKE2b-256 be7d2f7e488aaac3be9d2d0a7c9fea63e1a7980ff08ec10eef72e0499de15235

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 744e9cf372804065aa1443e54cbc7f435d0d37cdc2fd9ae18b6b220ce891e426
MD5 2f048f38fdfb851a90922c3fe18dbafb
BLAKE2b-256 1e694b39f4405ad424c74fdc80f16e65ed5df59a8931d2acef446a43d417e3b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94ffdb3f8d7341a492ecb1255d4654691a2bfd58f9e9a4333b093de7ae19d13b
MD5 07e58caf5bb4b3743bb4a11ee8c974f3
BLAKE2b-256 29eb97cc56736a7304aba6d711e7d00cf3d334654d487fa871fa6dc5cb014b5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 874d8e51d1329f6ee4e5d4dc834273dd4ce6e37a97178c11b631aabf6574d051
MD5 e637e78a6cc6f39b929c91369cf57272
BLAKE2b-256 6141584c112812f65085f6c40abcf5839a78e75766da0b4d2eec227c619466d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3379a210c58eb5f4ff9c844ff53d331de48af878e9ec2c672a4472133d412e73
MD5 186a36f15a70a856fd018587447edd0e
BLAKE2b-256 6d6a5360e2e271447971b60a9c59af7fae2380ade64a07c8589ccc0a0bc69d72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ded03795474d3bfd72b9440231435c2b900effa8ced94afac802be794ae05747
MD5 e001b7f6549f5d1ad50e98c8082a9409
BLAKE2b-256 a2c3c1072af18774d0233a79dec2d5fb5c0a068873f324a31003dce09f640b4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01af3a6b952eb0d1549571592f833c20fe94aeb10c5f44ffacb7547ee1dab7ae
MD5 6098c52072518f280e2058577f70dc9e
BLAKE2b-256 0de60302966dba79bfebe34753deebbaa2cf6dc75ac1881ab3fc6aacc7550539

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e5d35e6fa357eb3c6c71e419cc7f3c9416581b93edef8a5ee50ee6aeca97ad8
MD5 11b24d71d8887b9ddc85e652f45ac2e3
BLAKE2b-256 5d2fffb9ae8b31236e655059152d43f77a7a27bc0810cc00138a9ce4055ab69a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9d5309c9550b422184b82b456491a021a0d2575bbbde1cd5963c69084fd85407
MD5 358e9f2c074022746402bb5c835229b0
BLAKE2b-256 1f9e7cd781dfe7ef953cf04076ec7e21f59502580e9b1cd61cd5f82ec7684eb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9af09058ef22e5e30c88bee77176fe0a832b85e886a300f1861db4928dfcc92d
MD5 76f309cdd7106501303cafc9ba82f9d0
BLAKE2b-256 92247a58e262b98550fd2f411b36bfe99a7bc9cc12bf1a55685a50d35fe16495

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8471a4b0a28123fe655c87266d1d624030b80b90b8b780a435a037118e50842
MD5 bb0218e638eac6cd3efaf2c07d89e543
BLAKE2b-256 c0c8aa1f60728454689fbfd9cb1aa1aa8a9f6783b3effaabfa75be9f9cf9732b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0dc57b8cb88d8f3493604ca98de3f07d6296546ffe968df23e43dedb6a4180e8
MD5 06ad6e6ab3139a422d5b6f3ff385350d
BLAKE2b-256 62e153902b4417f120ac3d48fbffb0d1a815aa7b5aa97288557fb9a5f30065b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6384702618b00b76d10f07e8da8f0adb6d4160734c11b9a6763f1395615f2db3
MD5 7259e03d4078d70644c9495b05343343
BLAKE2b-256 899b07dad3923791933715bcbc2a68fe17c4d029594b4cff39e9a1c4a56b82de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 87b343992989b852a0cf5b5628c6100cc680cf8dc045d668248d5bfc85c72a3f
MD5 b7edeabd2ab80c67583486807c18b4dc
BLAKE2b-256 e3eef02034b6fce9cdd2637d9a44e5cb4fc6eb6df875acc04ec067216519a2fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26230cc1b4dbe7e331c9e9b39b25e23fedd0d0f2179abae6d2e0c260aa5b6897
MD5 63d9dd80a752c6e54b48de360fba6710
BLAKE2b-256 60146324d8cb1e78deeea85add6fe36ed1aea1b86941f7b5e3d5e103e0fad79f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74843b2c2a6f33bf24a784074f5dc17f389162c2674a43a1c0a64e1c34444c87
MD5 339b3f614a0fd9772dbb5d493161e096
BLAKE2b-256 7bd60b41fc5dc09cddb31c1dd9278f11abcb7fcb26e9b20bda5781363ba5882a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.57-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f8a08802c35e5f29fd172cf4d1b1477b69f6c30ed9d3ef6c1f387f8bbfea3449
MD5 b2eea358e1396065ffd57f3df85f7e62
BLAKE2b-256 21c3e378bcee7e736dcad1b1673ced88cce71a7b66f3303f14538397ab94b5b5

See more details on using hashes here.

Provenance

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