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

Uploaded CPython 3.12Windows x86-64

sprocket_rl_parser-1.2.71-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.71-cp312-cp312-macosx_11_0_arm64.whl (747.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sprocket_rl_parser-1.2.71-cp312-cp312-macosx_10_12_x86_64.whl (756.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sprocket_rl_parser-1.2.71-cp311-cp311-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.11Windows x86-64

sprocket_rl_parser-1.2.71-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.71-cp311-cp311-macosx_11_0_arm64.whl (747.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sprocket_rl_parser-1.2.71-cp311-cp311-macosx_10_12_x86_64.whl (756.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sprocket_rl_parser-1.2.71-cp310-cp310-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.10Windows x86-64

sprocket_rl_parser-1.2.71-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.71-cp310-cp310-macosx_11_0_arm64.whl (748.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sprocket_rl_parser-1.2.71-cp310-cp310-macosx_10_12_x86_64.whl (756.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sprocket_rl_parser-1.2.71-cp39-cp39-win_amd64.whl (636.9 kB view details)

Uploaded CPython 3.9Windows x86-64

sprocket_rl_parser-1.2.71-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.71-cp39-cp39-macosx_11_0_arm64.whl (748.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sprocket_rl_parser-1.2.71-cp39-cp39-macosx_10_12_x86_64.whl (756.7 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sprocket_rl_parser-1.2.71-cp38-cp38-win_amd64.whl (636.6 kB view details)

Uploaded CPython 3.8Windows x86-64

sprocket_rl_parser-1.2.71-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sprocket_rl_parser-1.2.71-cp38-cp38-macosx_11_0_arm64.whl (747.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sprocket_rl_parser-1.2.71-cp38-cp38-macosx_10_12_x86_64.whl (756.6 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c62e7b8281b74827f30a8428cfe3ffc8201a325e5a68ea307b3e52c500df0f4e
MD5 3d83d658038480de821acbe5b5bbfe09
BLAKE2b-256 d66dba41ceb5ba62d8a9c6b7110cac58e65090900017af1f8930ad782b76cb58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 648c865559d5058f7e826d728b53398f0498e8c83901e70760612e6cd73a36ef
MD5 b6349bf983029b62acdc620da8b075d3
BLAKE2b-256 76588101369d45e58c769a243a11557edf03ec7ad7088e44f592170e7a58a668

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5050d960936dc3f06d150121f90de90d137a83e45a2cf58ec00cf2cfb0ad636c
MD5 f87a7943d65d35b47224be475a2bb3c4
BLAKE2b-256 0b5cc07770c4afc43a0102b826310b92d8b38173ac7bda7ddaed1a57c21d4f58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f49d11635b257c7e885902bb87a9f01b9d101f90921163cd314cc83b5e756b6c
MD5 8b8889d5bf10fdd5fdf0872ae45cb754
BLAKE2b-256 dbcfc50c92abb91af2705b69842818d36896d4c7bcf162ee01e8e2c021d14f95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fb96109f802dde93683956dabf88ffceab15b496fe7a42b32ac2e2fca0eedd62
MD5 15541a0647a9bba7477cb740a15959d5
BLAKE2b-256 2435a45ac6f1630ebd4082a2878bf707bc8664b5b69dc2cdb9e9621baaa7acba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6d27b0f6a33f0d88806113e684e84ab055950ba8443471f0b18be722fd800b4
MD5 bedd61d273d31fe1bc97832fdc1f6afa
BLAKE2b-256 a2a9945f319484542d33585fa84d8ddcc21c1fc9219b7e80ad514707bcb564b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6eb7df0dd1757e65bcaec8cae97a33d0c4e9a16d4f8cf6293fe67ac29de2ab54
MD5 b1322f163a133626abd3f02c08c62109
BLAKE2b-256 4277642015f83e477f39896861efb9aef23add908111506692bb000725d8dbbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1873b0495b0f8ce0ee286459d1998be88352c3aaa141b950893bef48ce4d0e17
MD5 49b8d656bca6ac46ed9b049dd80701f5
BLAKE2b-256 d0f38739d02b4a73dccfa52c72a1df79380b653a46bdd182c2a7def68951062a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 10e49547cbe774c139a135c34c95cc3fd1713ba6395cf3f24f05be5ae8c13bd1
MD5 d09a4c09fac472059dbc3d30e5afc695
BLAKE2b-256 8b5bbce6e85bd3a9530ca8cd21a391b9cfa321035ea57f36b9b758d0980878b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8fd204b4e33cadf3cc5da3c661a66e3487a283852bd006632170394e8d863aa
MD5 bd54e5396f3d61344ec922dba549aae6
BLAKE2b-256 6ec04722bd9e8995ba23043e4f9c5a621496def0f46e77f072753869e413e951

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31b33a51302b4ce4d7f9496daa215d0fc152edb719d0ab550e47430549288363
MD5 04b601cb7525158b04571e66017002b5
BLAKE2b-256 8c994bdf4ab31a5f4c94549557db838ea318bad5e59c8c3150cd6b231329342b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eaccb4618ea6dadce247188235b03ed90148633755da4f2e95d508de8ad2e85b
MD5 6096c95466d79f358abdd85c76edf150
BLAKE2b-256 8640a32d6201ffb629d458d07c8119678d464a7f7b3e916de1db8df0f194700f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8a9b43e075a76ab08cf532f4e0cc15938f7674895a0767f29423de544d008866
MD5 4d05fbb98deb541b3a39c868ae7cfa92
BLAKE2b-256 c4fb07574f83349b32797d967edfc18cc2b6792a1743dda2447a15d404edc12b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28132612c7e34853a6d76eb9291339dcb89d334ea209bc8b759da9d51edd4edc
MD5 0d0e701b7e873dad7797b93be94fcd37
BLAKE2b-256 5b2859396a88dc9a6328b1bbb77a856c2a6b38a97540c90607eaf02f03280a05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a2ce5d6f8659af806a4f40c5695d5f55b5e886a1f50597b7edbefacb334db58
MD5 b146c8955998b217a78b1cc7b1729f55
BLAKE2b-256 552ab8690ba051980c021f028d8a9d33422be56a23e553314a4109f4af7d69d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e50e75f1aab60b6e24a975c357f7db28c32933e3ee2d099e94dd6de4375e6f93
MD5 207b4275945c12dc0cd50177dcb89070
BLAKE2b-256 3b05b475baa349823e9a71b989ca8809044a19bed5171aa4c065eb16660bafac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 10f4e4ca8c4870266b53db3dd5fae2bf00040c45a7e82c8c0c4fc9f19a1f3dc5
MD5 fde549965bcbe4c429aa28e654050417
BLAKE2b-256 51a68bc5acdf187e48161b6f32521390f8b936116c1025fc1162c027919df43a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95ad47cc5fced60bb0de4e534d2f7a1353b91784c2355315103dd075e1596e21
MD5 407a406fb1e5c7bc0d7286cbeaae9b75
BLAKE2b-256 6659fc373aa615649d68dd92dbdfda62593edd3f502d7563c95322eb452a8df7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a4ead10f91bb21c7482666d2bd204427d5eb1888dd3fbc781606b63039b1b3a
MD5 f862156d10b15abab5f15cc6b176a979
BLAKE2b-256 c19593ce6b715baa452777e4ddc4a493cd4e81778404b4bd61c99f0c874744c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sprocket_rl_parser-1.2.71-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9d73dccb437525e4842376e631f362b5322fb56681bd2888e182daede6075797
MD5 c83811c1d6b6caf8f877b6fb27e3979b
BLAKE2b-256 a1b6392f9268a159cb39f4bfb4fec512997f3ae2c6469a94b1ac13d75a7f93cc

See more details on using hashes here.

Provenance

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