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.82-cp312-cp312-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.82-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.82-cp312-cp312-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.82-cp312-cp312-macosx_10_12_x86_64.whl (755.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.82-cp311-cp311-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.82-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.82-cp311-cp311-macosx_11_0_arm64.whl (745.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.82-cp311-cp311-macosx_10_12_x86_64.whl (755.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.82-cp310-cp310-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.82-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.82-cp310-cp310-macosx_11_0_arm64.whl (745.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.82-cp310-cp310-macosx_10_12_x86_64.whl (755.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.82-cp39-cp39-win_amd64.whl (637.3 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.82-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.82-cp39-cp39-macosx_11_0_arm64.whl (745.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.82-cp39-cp39-macosx_10_12_x86_64.whl (755.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.82-cp38-cp38-win_amd64.whl (637.0 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.82-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.82-cp38-cp38-macosx_11_0_arm64.whl (745.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.82-cp38-cp38-macosx_10_12_x86_64.whl (755.5 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file sprocket_rl_parser-1.2.82-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f187119ee0116631c5ba780cc07cba66da998f678d04e1aa88f5a55c27ca567a
MD5 1f9c5f61fd2d9aa26acbe1aa42939b24
BLAKE2b-256 33a30298946ec413b77700216b8db201bd1e47555ce590601524fd67e241536c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 147e20fe0047e8af8e99ab3e76cc7595503bbae24a047966e4de359709ae03a2
MD5 871ef2c5938ac867383c822faab03720
BLAKE2b-256 56f65f280e42f18f37a1f120886a7e64f53d72581917a2c90df2d0e0988f7091

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79cab64ec9e151085e0d15241e94fe1fb11b3f92c19852f94a9bbe7dd8e7949c
MD5 671e6796944b6b9627405f6e4af6d816
BLAKE2b-256 67d9a65b1fea85494016c7433ecc703bc502b7b9ad430688bfbdfd327fd456a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cdf3a9f7002c09b29164350c1913d800f3efebfeb3573e8f186441fccdca26ae
MD5 fceea430b01b74c8ced58e0734c0aad7
BLAKE2b-256 79c5c850f0a2672cb3f828c25e29eaf887a675ee6a48b7833da8af2c9bae5d43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4c4b68471b79f312ded5ba7b51ca65aabb3aaacd198b2208b9f6988ce984a268
MD5 3ade42c6f32a6afef2aa2d9d813e147b
BLAKE2b-256 a341e555aac2dc316f131c6df152b2d4bf05c95ace5a07cacd6672ea0418d397

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d442d963373d1d147b16f87dfccc3c31896131b4194e3194b87a4a8a81f6a230
MD5 cc6136966d9625b8b4141e91f7dcce09
BLAKE2b-256 96d9b572343e3cd59dd8686c734eb8ee037f3b6fd5ff3c87545c1a5008e8118f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 243a87afbfe4cf8fc5b9a5b6bc90b9e50ada66b51486d1ac06dd31c3b6951e6f
MD5 f5558a7f451885b3949f91571ad130ab
BLAKE2b-256 754b071fecabc902968d11d092279b04fc10d0d3e4da52876db8a33370b4f255

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 200d355f258e99f25d770c18b643f8984f38292e45ecbf38d0fec56522d40621
MD5 a3f33d87c657b1610c0affd439501c78
BLAKE2b-256 6e8015e8a929c98fb7cca5157624ed4191162bdb14d38e29696345b88d7d6007

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e908e32c840d389bb96e0414391d4c7af216ef716a76d99e6286bf67d42b15db
MD5 9ca43878a3888da17b3a2bd553b138e1
BLAKE2b-256 15adc6652420080c6712d6a3336cd990b771163c8b840c555802a84f476a3276

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cb4945a4cfdd3e1c73d82c8baae74e7b642736f332ceacbd837882f5f0ae373
MD5 5fa1a84c2ee83c8ee4eeba85aa7129c8
BLAKE2b-256 ae91e89a3527eb52786ed7c5348c9f9cf5746af9fefceffd5f74a7d5cd423885

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd60ef9889708d1a8c60d5f7a8971aa74a97ea0192cffd7335adb746c419bcf5
MD5 b679821f9efb40563eaa275ad58bcf84
BLAKE2b-256 f593fcd3e262bb25376b10766d07ed77c540a0e0bd97e5866a8cd214dd3816e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4536595466b15abc68086f30aa6296b25f885f8cf3794c5d19560976d114503a
MD5 2820413c20dcf91e0f30bcd54619a692
BLAKE2b-256 59fbb324b6641f9e5c484e3a0421c8f10ac9d41d9de6cd9d078419589e3e3570

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cc0e26a6b064a09fe01cb27805fae6369064d3d9eb5edd1db0b1e904672a9785
MD5 18c86005f4f545db6b425562e6c9f983
BLAKE2b-256 916e8f36b111c18fd8243d4c0e0a27b1289102f808cdf807021f64173d65fc08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80333c43cb094cfd544fc7924c75744de13cbbce84af591acca3d98d71385011
MD5 81ef2aa96ae35672494db75566ce351d
BLAKE2b-256 1403d2ebce0acfb87dbace2e149db4214cc30e74c465f95356171d6ebbdd7e07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfd2b15c8c73e11cdd5b7f6ae868a622b5b7326b3819e30cc588d1121c1be90d
MD5 959abda8398a372dcab4e11c6f407f47
BLAKE2b-256 1165e7fd4d0bb16337be608382690d512512cab56ef15aa19769d8c009533ffa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d0ef051cda7e6673b1ad1811421ed4bcf7b29b8c0a2ac75ad20afc3a51902e01
MD5 7caaafc0f5c54c62b5df3c6e83c4d49e
BLAKE2b-256 a4b655ebedd735c082d5754a8a976bc1ef2a28a30d3179c2f2e57982187bbefe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c7f89bb9731c3eae36291cba104b898c7beed6535e33b15aa609b23578ccd254
MD5 5aeba33dcdb29a4b3ae91b2fff21d0e7
BLAKE2b-256 5b426e7f630b651a2818dad8500f1eb04adc892f74e6db040bacfdbe9ffdbc60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 649bf8729103ec0fe99d624f17d9d2e022bc04af6a0a94a28f2e69e39e157a8d
MD5 daa2620cfc19583ad2c858f0d9563832
BLAKE2b-256 e218a5023b7a0b09342f3e48f1f80aeda57b0f606f7d2700fa49869531540bba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0802b35edc56209526d09fe29b1e5cfff4cb53266e1c54df15096847fd2a887e
MD5 50987989182cd71d1695155b1b6d3380
BLAKE2b-256 fd818af922a1eec6a5b5a8ab9f8f10cbe7794047547a7ea305232dc643561a0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.82-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e469bc5a13d8821091b3ca64ca92ca0569b3065b61dd0df29ad873795b7ff0a
MD5 de17659a8869bd95728f391064977100
BLAKE2b-256 f8ca53a313262c2d78115ca4c6ba4c4d30dcb9ad6cfef2130e67771307f1b12a

See more details on using hashes here.

Provenance

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