Skip to main content

lazpy

LAS and LAZ point clouds, read and written: a port of LASzip to C, with a Python front end.

Features

  • Every LAZ point format (0–10) and every LASzip item version, reading and writing
  • LAS 1.0–1.4, variable length records, extra bytes, LAS 1.4 compatibility mode
  • numpy array reading and writing (pip install lazpy[numpy])
  • Rectangle and circle queries, accelerated by LASzip .lax spatial indexes, which lazpy also builds
  • Coordinate reference systems as pyproj objects (pip install lazpy[crs])
  • Malformed input raises lazpy.LazError; reader.warnings collects non-fatal defects
  • A lazpy CLI that summarises a file

Installing

pip install lazpy

Reading

from lazpy import Reader

with Reader("cloud.laz") as reader:
    print(reader.num_points, reader.point_format)

    for point in reader:
        print(point.X, point.Y, point.Z, point.classification)

    reader.seek(1_000_000)          # random access
    point = reader.read()
    x, y, z = reader.scale(point)   # georeferenced floats

As numpy arrays:

with Reader("cloud.laz") as reader:
    xyz = reader.xyz()                        # (N, 3) float64, scaled
    a = reader.arrays(start=0)                # {name: array}, every field
    ground = a["Z"][a["classification"] == 2]

xyz() and arrays() take start= and count= for reading in blocks.

Spatial queries

with Reader("cloud.laz") as reader:
    for point in reader.points_within(rect=(x0, y0, x1, y1)):
        ...
    xyz = reader.xyz_within(circle=(x, y, 30.0))

With a LASzip spatial index — a .lax sidecar, or embedded by lasindex -append — a query decodes only the chunks that can hold matching points; without one it is a filtered full scan. To build an index:

reader.write_spatial_index(cell_size=10.0)    # writes cloud.lax

Writing

from lazpy import Reader, Writer

# thin a survey down to its ground returns, still compressed
with Reader("cloud.laz") as reader, \
     Writer("ground.laz", point_format=reader.point_format,
            scales=reader.scales, offsets=reader.offsets) as writer:
    for point in reader:
        if point.classification == 2:
            writer.write(point)

write_arrays() takes the dict arrays() returns; together they convert a file in blocks:

with Reader("in.laz") as reader, Writer("out.laz", reader.point_format,
                                        scales=reader.scales,
                                        offsets=reader.offsets) as writer:
    while reader.index < reader.num_points:
        writer.write_arrays(reader.arrays(count=1_000_000))

The writer handles the header, the LASzip VLR and the chunk table. Keyword arguments cover the rest: vlrs= and evlrs= for records, crs= for a coordinate reference system, chunk_size=, version_minor=, laz_version=, and compatibility=True for LAS 1.4 compatibility mode. A .las file name writes plain LAS.

writer.unscale() converts georeferenced floats to the integers points store, and auto_offsets(mins, maxs, scales) picks offsets a survey fits inside.

Coordinate reference systems

reader.crs is the CRS the file declares, as a pyproj CRS — None if it declares nothing usable — and Writer takes the same object back through crs=. lazpy reports the declaration as it stands; it does not validate or correct it.

What is supported

Point data format Items LAZ versions
0–5 POINT10, GPSTIME11, RGB12, WAVEPACKET13, BYTE uncompressed, v1, v2
6–10 POINT14, RGB14, RGBNIR14, WAVEPACKET14, BYTE14 uncompressed, v3, v4

Also: pointwise- and layered-chunked containers, fixed, adaptive and missing chunk tables, selective decompression, spatial indexes, LAS 1.4 compatibility mode in both directions, and both host byte orders.

Development

pip install -e . pytest
pytest
flake8

The tests check lazpy's output byte-for-byte against reference data produced by laszip itself; tools/ holds the harness that generated it.

License

Apache License 2.0 — see LICENSE. Everything in src/ is a port of LASzip, itself Apache 2.0 and copyright rapidlasso GmbH; NOTICE carries the attribution.

References

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lazpy-0.9.2.tar.gz (805.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

lazpy-0.9.2-cp315-cp315t-win_amd64.whl (156.8 kB view details)

Uploaded CPython 3.15tWindows x86-64

lazpy-0.9.2-cp315-cp315t-musllinux_1_2_x86_64.whl (458.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

lazpy-0.9.2-cp315-cp315t-musllinux_1_2_aarch64.whl (456.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

lazpy-0.9.2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (461.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lazpy-0.9.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (461.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lazpy-0.9.2-cp315-cp315t-macosx_11_0_arm64.whl (153.9 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

lazpy-0.9.2-cp315-cp315t-macosx_10_15_x86_64.whl (156.6 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

lazpy-0.9.2-cp315-cp315-win_amd64.whl (155.9 kB view details)

Uploaded CPython 3.15Windows x86-64

lazpy-0.9.2-cp315-cp315-musllinux_1_2_x86_64.whl (443.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

lazpy-0.9.2-cp315-cp315-musllinux_1_2_aarch64.whl (439.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

lazpy-0.9.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (446.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lazpy-0.9.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (443.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lazpy-0.9.2-cp315-cp315-macosx_11_0_arm64.whl (153.3 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

lazpy-0.9.2-cp315-cp315-macosx_10_15_x86_64.whl (155.8 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

lazpy-0.9.2-cp314-cp314t-win_amd64.whl (156.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

lazpy-0.9.2-cp314-cp314t-musllinux_1_2_x86_64.whl (456.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

lazpy-0.9.2-cp314-cp314t-musllinux_1_2_aarch64.whl (454.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

lazpy-0.9.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (459.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lazpy-0.9.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (459.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lazpy-0.9.2-cp314-cp314t-macosx_11_0_arm64.whl (153.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

lazpy-0.9.2-cp314-cp314t-macosx_10_15_x86_64.whl (156.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

lazpy-0.9.2-cp314-cp314-win_amd64.whl (155.9 kB view details)

Uploaded CPython 3.14Windows x86-64

lazpy-0.9.2-cp314-cp314-musllinux_1_2_x86_64.whl (440.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

lazpy-0.9.2-cp314-cp314-musllinux_1_2_aarch64.whl (436.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

lazpy-0.9.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (443.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lazpy-0.9.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (440.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lazpy-0.9.2-cp314-cp314-macosx_11_0_arm64.whl (152.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lazpy-0.9.2-cp314-cp314-macosx_10_15_x86_64.whl (155.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

lazpy-0.9.2-cp313-cp313-win_amd64.whl (151.7 kB view details)

Uploaded CPython 3.13Windows x86-64

lazpy-0.9.2-cp313-cp313-musllinux_1_2_x86_64.whl (440.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

lazpy-0.9.2-cp313-cp313-musllinux_1_2_aarch64.whl (436.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

lazpy-0.9.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (443.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lazpy-0.9.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (440.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lazpy-0.9.2-cp313-cp313-macosx_11_0_arm64.whl (152.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lazpy-0.9.2-cp313-cp313-macosx_10_13_x86_64.whl (155.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

lazpy-0.9.2-cp312-cp312-win_amd64.whl (151.7 kB view details)

Uploaded CPython 3.12Windows x86-64

lazpy-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl (439.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

lazpy-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl (435.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

lazpy-0.9.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (442.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lazpy-0.9.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (440.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lazpy-0.9.2-cp312-cp312-macosx_11_0_arm64.whl (152.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lazpy-0.9.2-cp312-cp312-macosx_10_13_x86_64.whl (155.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

lazpy-0.9.2-cp311-cp311-win_amd64.whl (151.5 kB view details)

Uploaded CPython 3.11Windows x86-64

lazpy-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl (437.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

lazpy-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl (434.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

lazpy-0.9.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (441.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lazpy-0.9.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (440.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lazpy-0.9.2-cp311-cp311-macosx_11_0_arm64.whl (152.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lazpy-0.9.2-cp311-cp311-macosx_10_9_x86_64.whl (155.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

lazpy-0.9.2-cp310-cp310-win_amd64.whl (151.5 kB view details)

Uploaded CPython 3.10Windows x86-64

lazpy-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl (433.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

lazpy-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl (431.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

lazpy-0.9.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (437.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lazpy-0.9.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (435.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lazpy-0.9.2-cp310-cp310-macosx_11_0_arm64.whl (152.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lazpy-0.9.2-cp310-cp310-macosx_10_9_x86_64.whl (155.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file lazpy-0.9.2.tar.gz.

File metadata

  • Download URL: lazpy-0.9.2.tar.gz
  • Upload date:
  • Size: 805.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9.2.tar.gz
Algorithm Hash digest
SHA256 72533b5cbc3c8c772d1ad74bcd36ea338e9ea2e6cec5d51df0e760a9793f82b7
MD5 1137bd52c68f4b355ff2c7c1c2194110
BLAKE2b-256 2d0f883f12f7d3effebd84d5ffcfb101a06e41c86955ce583c1e3cf45db31b4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2.tar.gz:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: lazpy-0.9.2-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 156.8 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9.2-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 db2a56cf4fce2745895cda179723cce6d5fc7c182922b218079ec96ea1236d44
MD5 d5b4af9cae9d0ee70779a1fcdc13d66c
BLAKE2b-256 062e50e88c55405c242eeed8e15a76d3a8fce3694f185b071795de13361e9fdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp315-cp315t-win_amd64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8982e7d1edaa2feb08c7cfadf73107ec8ff14230b51f1f413492a2e3f87e61dc
MD5 fd8524154d415964d394a0563b9dcb79
BLAKE2b-256 4ef4a47a8bf73b4c5e17a2d81e07a86cc32f5aba32006fd10f7a8c842f08c952

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ecf81a0812367f5522c5d606652d2a9a7660c1b907b79600cbbe7b45a39009b
MD5 bd7469fbd3bcac79aafabeedde9a0f15
BLAKE2b-256 92f13c38e2e6f8c9fc3a834ea38113d8ba107c21db2e400aa5a64d16a18fee0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 593413276572ca861a64f2a1ac79c1a43a373f57547bfbb23d431a8e5da7a00a
MD5 dfc77f9d5b207bc1bc82f24d55f44d56
BLAKE2b-256 3a562bf1028de5cd7248878c470bc7873faaf743e8a982b2d903fb6b42ac3774

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 add645f29ee5e47ada8c71e70235731364f3560ad777d8e8cf4d120c7da2218e
MD5 e4e957533ed0c74271051e24206c23ce
BLAKE2b-256 57e06c4d246691e8742e49d9514ec0f9b8b82aa0c432991b411a9c7eba537695

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 addbd8421bbb0564686ab54f91ea8df1662aeef9817f76851713ff6cfb034a5d
MD5 3b7ded65466f265f36d659c4ad57547e
BLAKE2b-256 852c60df26f180269431c360a7afdea45ef702e5d0284c57bbd04e646905ea8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4ac92491866d984c7988886653734c589cb21c84ba7990c404e7f0252ac975a9
MD5 21660abe27bcf9eaadd6492fb42d690f
BLAKE2b-256 44ac10ef8268961a531babae3174f1e2326877324b2ad44cc5027f3ad17870b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: lazpy-0.9.2-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 155.9 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9.2-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 ccb5e5852506191e29d9da5f3cdbf750b7ccc84d06063eb62002f9b0b8130a66
MD5 2e330766ecb7fece87f25178388ffffc
BLAKE2b-256 b9a3925c4edd3e73da3e3bc8a877fbcef94336d314f70c5ae253439ed34e37b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp315-cp315-win_amd64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb13af8352a9568e1915fa73c21e92b70c259fdb3c28ccb502bbdbc27c92589a
MD5 cc52af947e8575c1686f259b04de112d
BLAKE2b-256 19ab7fb6fb3dabf2fbde68f78bb15e207f718814f2db0c6e601ae7a84bda126b

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50095aca00131d55e91eff6be574c4a6e76939b375b54bded9ae3e13ab7bff67
MD5 a88e818f0057faa50f9c0f78f8e34937
BLAKE2b-256 eae1f94e6cfed87f59a90e2fa45bb7cbb0b472913fd8281c65c8bf263970e916

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e825c6f880a01cc71c4103a7846855b43e47b7e0e134ca60c2fb12b2bd98f25d
MD5 2967a51a537df877468679385f025655
BLAKE2b-256 1c91fdb65444298fec902ba4d1eb148ecc0f182defcbb94d6a56317a994d273e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0baafeb2c67cdf54f56b19616b7cb874a9b083cd22714e60204fa5e034c4c9c2
MD5 e1f7afb6cc49287f43b7ca55488bf542
BLAKE2b-256 d8859c617b13c4bc862d2278e23ef21ccaa45be7b888e5b09c6fdcdab69a6fd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c69a50683d62ad89321b8c5ecf6ef554e063fa69b3ff049bb1e6f646531e82b
MD5 8683c642c6d1effcfb866bf58b15fc58
BLAKE2b-256 d2c62081fcbdfbc7494fc77c134038613668cfb32e3dda631ea05937a3c1f790

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 885640f8bb32c07ebff3c85d91ae31ca9f1c697380d7736a7eeacdcc109827f8
MD5 b43d2a83343667ca9e05fcc23d2704fd
BLAKE2b-256 674ea85a8ee423f77bb20345ae0b569bf9bef2bb23e928b2625413862b244cc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: lazpy-0.9.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 156.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 749b5d0842715356101e06083b539fd595c74ba5559bafccd814a60ab62b3b59
MD5 2ec719fdddd7f31216c8adddc6c01ba8
BLAKE2b-256 d3a84521baffd5fda00468b80d0437f57e61aaa85371c50584ecfa431ce45462

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92548c861febc94f252d0b12d7451da3357a4df22b0772366c388020b6587414
MD5 758edff39f2b80995184bff8299a88e3
BLAKE2b-256 9197868abf08c24ddd8136a743f4bbf421575c6a7883612d46ae427d35442f4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3205b95ad9377f7befb83a379cec99ea92397f24cda9e235039482fe495e06f
MD5 bba87212ac53e5a8f5e390ed03ddfc3d
BLAKE2b-256 2bf896fa3c369080173c9a7d4ecc1ce75c0906d5b6ff9cf2381779045bc2dec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f6e0eb2dd00c69a144593c0549b1d2abef24ff565996223f21401a2af4c0034
MD5 8315751835201f192a6edfbdcc14f02c
BLAKE2b-256 e804648532d42a639abd1cc74dda75ee82cada471fd545351fe2d378bab430f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44f5a469d1cf1a2b053bedc1b0ce016d67c52d66b51e901707a112fbbaedf3b8
MD5 9acb440297e1d4904aabe35b765e45dd
BLAKE2b-256 0293567eec2e8c62cbc497f26cf063fd13d3442800b6f4c88e64192dce7a6a0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efea3c37e8d7ccacf653f32e864b7fb5a111c2589ee991a04e59fc8eab0e1f2b
MD5 e0900157ece4a4768db5b0e9fd949c00
BLAKE2b-256 991d3777326c56880e995d9d444b0fa24297667c8ba487d8b36029c2a646f96b

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d63f769053f86ac6fb4fa3d36a401be2ada70c5374fa2baa9b2a01c9d4f5a2d6
MD5 fd950caaa8b280d84161d3b7110be035
BLAKE2b-256 2931177e27f6aa45e4eb311f9ab43ac771174adfbb58bd6d3fadac9bd308bce5

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: lazpy-0.9.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 155.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1ac5a74adf55109f9414fabc06f47b3a0f9b46a039d58e26e7d9256ccf64c7e6
MD5 b4670d47960a0bca6095ad6ab5572bea
BLAKE2b-256 9c7525fbe90a17cfdb616a6a499acb0775108bfd04c66968780b784c708f6a48

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b5343cee44894cf416b13ac2ba0d8c7a78a68ad5329eb4c5fe55f72f43ebed5
MD5 0ed41173f6d0518ecaae80ea6f8d9238
BLAKE2b-256 8cf65669ec1e6e0abfe5b6bec496bfb9e97b0afcf478b92fab4e45ad61ad5492

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e13dfafe42f041abea4c71034875b3069e39292e4920bba9edf86e5271f56a9d
MD5 dd350afb15c6a10ef89bcf2eb251c645
BLAKE2b-256 f61856db03306099c5d59d3bb4e13c98058fbaf5473ce5a41cd8d0279c90d912

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0dcb50fe949986164184737f83a2a1236427a7fb1532cd498bb58641466160f
MD5 6fd03fcee2640208f937cf3c9e3a1c4d
BLAKE2b-256 38f811eebfc907d26df16e71bc00699eaa8e48b0ee6d544a7ddfbb70a76f06f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa628ad05ad9652ff329cea88e6e08ec873aa8abef53c04a2b40eeb89c5bf2ae
MD5 2a9e8249e91648d77ad7b197e1ee4636
BLAKE2b-256 c5e92a45bf7bf6a4615eddf83ae104e40fe0563b732c4591f353250eb5aa052a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 007ee7975e3b1c83994653ee85634cbd672782bc05619333654a973724c6a4c4
MD5 9e9101cfabc8c26b48b11f54d6f2f1ac
BLAKE2b-256 8f64cb2bb6ae2370f36ebaf09ed9e1799a7e2c80cd3ce9ef2186fca924be13f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c43af63100ad7bec5c808b9c2d337cdd4403f19232bce04b984b533e0779009c
MD5 4e69b07c98bacd80359cfca3233f5bdb
BLAKE2b-256 28e2fea08212ac5f59a850b14d5a2c5af4b1180a1878dde44842a8f5f7ff288d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: lazpy-0.9.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 151.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4883e6b8e62fb4b92eae6fe6951cb0dbd9a494b1c9a2d7ca6005e05e3333b693
MD5 eb5bfb08ecbc0831ee52f3979409370a
BLAKE2b-256 1ea8d5a7c60d798d8d7b0c8b1c4456c5898ebb21209d5e0470f551340d049b6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc22aa180e5fb19754757771ce7bf7289f85c63e78cc77eff5296e00429153ce
MD5 f515c5b14488675e8de8eb020cb077ce
BLAKE2b-256 36ed7a61eb359c9ff5c71b1b5541a91289c49bf9edb4165c094d2890ff9494fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f7a5b2764781aa2821e3de738ef5427aca11a67445b1c40ac119ded026b6092
MD5 f421eaae3c4a3bf714d75698d3d27c5b
BLAKE2b-256 e3275840d2c96defcfe355cfc3ddf5be087bb5f5066974c26e29535f6b9f649b

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7964e29d1acc0643348538e4e9948f60dd2d1160f76f407793a6c7880955490f
MD5 dd84c86486efe81ca4ead68beeab70c8
BLAKE2b-256 a21c21da00ea106c68af2119dd75761cd64116174fef55c878568bce3551eb14

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53a1fc1c8324ae4cd12eb5d6a939c811b461a4f032e2c8d2cd1b50eb37643d26
MD5 3672695d1d35385a05c78f68b72c7bcf
BLAKE2b-256 1d529ed2df173cf668428b9a13ea56f20380d558f4b3b8f6d2feb9656c0b0801

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdcb89ef301ca52331dd8053b582e0b1d875dc0a00444f473b22ed46c539d11c
MD5 dbda856cf1b3a1bf475e153d232e52eb
BLAKE2b-256 54f004cc4dfccaa267e4d88a4f694a0eb45b60ab3bb120004ed59ba21186221f

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a54957ff16ba82ce05749c705bc35a375239b6da855bd23627bdc1b1cd88effe
MD5 0dfd03488ed979f121bc339afaf6f900
BLAKE2b-256 39a8ee4340d0dd395acacf003ddee44a99a501284b35a76528ad7b1a7ebd2879

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: lazpy-0.9.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 151.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8937ad973072674e02b09ffb9bd5f18bd8c5c37e313037563245c8f2a29f8787
MD5 82eed846d28351216986003ce97288cd
BLAKE2b-256 19ee30468085a5f5b754febc8c9d0c0c3f1751085eeb7674bbf4b42989e359c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2307f76ae9f95c8b2c45d3be91ce17c7d484608fd9e058bed85a39fe3d3af14d
MD5 5bcf2c717b4d993df38c8f8567795643
BLAKE2b-256 ec201bba640039bd7df65fb07593a31ab168dcd801792ca91b680539a8cfc89a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 049e29cfc1e967f9c1782646250fbf834b65351caf0d1cf546e83511a595b3ef
MD5 f8a2a74c04c909b1ca63e003415fa40a
BLAKE2b-256 6d2fd8d15400108a51f2eec8e04327c4534608044d0bed22bf6ea509c5a46b05

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 58041198c02570f67d032e37f6abc023e3d2986f641a8d32d5e074cc086d4f94
MD5 b437fd96e7dd1314cce8dd1404b5737e
BLAKE2b-256 2d9dd16ebbb9dfc07d8358040d599dd5987be2fbd47fe2751bb83c43689775ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9624789bb991aae7f107371e3846da777dc02501463c1f24f0287451af9211e7
MD5 4a8b23a738c1008dbbda6e6160cb7bce
BLAKE2b-256 27770a5155e2ec26afe1ee71ecd4b231d480e521ed75138e4b40bd69d1f997ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77dc0c1701c5292a344ad38432a3613290859bfdf7537c3bb54e7c2a493da7e8
MD5 c6419975864849052925c6abc264b9e2
BLAKE2b-256 754859bde080c5f8c97b12069445acf6b135323c9b2a0491cf0742fb47ddf099

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4e148147b7a9aad6f341cf08a87abf4a7e8d274c6192695eb22db5cd3db38cbc
MD5 5d7f61beaa0d33ff55458d6ad03d5d37
BLAKE2b-256 22332422dbbf51cc886ec3311366148baac57fbc97f674e7b0953d3095b30c00

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lazpy-0.9.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 151.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 664e79495d6c6d9af992f8227138f1e10647b2e28c78ef7f6c61ada1a49c7b2f
MD5 8e101e4a6488447856c8d87f9cce44e8
BLAKE2b-256 830262530f49de21ca83f2bf2bb2ddc68106e2a9820f2e1ade70b4103c574ed5

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b498437a7fd21a1a6b8c430945db7c566254f673bd1d90719caadc46852b6dbf
MD5 911bbecb4fed0f94fee7336488865724
BLAKE2b-256 775c3ef979a42a3bfdc9425a8481ec1daa07c52bb7da3d012fa70bab89f07e2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 917bbfaf58d464d75bd7d043c9ac119757567d5234f732d6f92b43fb9d03f489
MD5 82decc29a20b80de5332dfe9925751a5
BLAKE2b-256 6e025a05a620f517cd64829ce30460f3aec0a65e072758551f46dfc2229d1fed

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d2dd7ed1015e757da45f89b3aa2b7398e2e5713a0e8018199fcb47ee7b974eb
MD5 87b83739385ba63f0cd9fec6d3e0b977
BLAKE2b-256 5f331afc2dc6b5216b0fde94a9cd0380ea465fb3f3d7d55af682bd67f60fab47

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6aa2fa7ae13aa25a2f34e6179d975c9ee01f9457574ed6cb746cc65aa527a6c5
MD5 9162a6d45987efd60289b15835f45a03
BLAKE2b-256 87cf5a470d4be14f12ebe71e2bbd04f02760e3d5c77cda1c44625cfaf47a4e21

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b88d5074dd61ea4f25d288b5e5f0187f49e40d7a0707d7187816c67d711e0df
MD5 738e3be5f12fd38faa5b6d6b02f86407
BLAKE2b-256 9ed553e9e78aadc584d8e0f590c073ffc155cc832fcf3dc3f00324f2bb8eb6b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8e14bb3b455347fc69cefe8c96b4bd4205b6ed03899b8e6cc303720db0c5589
MD5 69283252054299c4f370c6504fbd4227
BLAKE2b-256 eed6c71c4ec499f347d5bd2b10a968a73be515a01ee3154866ef438b5a4c7134

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: lazpy-0.9.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 151.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f013b6fa373a24e0eed2cd5f225956a01f3379694044a54f56e4280221fec481
MD5 567cd94bfd23bd8dbd836859117ab733
BLAKE2b-256 a3cf3e81ff14f523dad8d5d28f838a9422dba47174f6612719dbf661d4441b8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f1960d4d2392eb697141145ed4a6caea1793ffe6dca1334aca5e528ad8ffddb
MD5 f850d6313ae47b9dc15eebb898498859
BLAKE2b-256 511319ea54182d02598b0c1ac54b065a37af6211629f958de55f762b385c0d5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db1d4f0547f445db499d879db6ed5d8ff185d6a59350220afb47c04392bc6a81
MD5 0f0436208001ba6c25a460120144bfdc
BLAKE2b-256 67b2e924fa0247552cc96e5b6cc62795652087bc9eb17288de00eaad3939c858

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa6622ec05a8060bf43f8c8fb32969eaea9cf4d2d4154d36ab3312e986fe782c
MD5 e75803bbbd6a4001d6db9c3461188e1b
BLAKE2b-256 0c70f646f0564c21faccc1a64d4eb7aadb8db8c21a0246f6508f3ace32c4317c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1c76d25ab299e23040ab6cbff075232a17e6f6416c7782d5f407cf323a587519
MD5 7b0eee5d943298e96aef7e878a54f96e
BLAKE2b-256 788f25a27616e946d57d902bc1715f5f61de7cbdc6758f5f573198b31c70fba9

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a86357a565c828c9b35c1c2af764f58261cc7723b0b60d8235051cbd040f006
MD5 a2d146cf123c51ce112044e32327ed6b
BLAKE2b-256 dc625614c64806c3b9ec4d60b24f295837703587c2d14d44a49f330904ed71dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazpy-0.9.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8678ee7b245301b36fe82e28c50aaf4bbf42989b9902cde570f8bcab40ec190
MD5 2e2be8a4c9379de7df573e1351d3e240
BLAKE2b-256 008ebe9e032d5dae8dbb818cce298a54d625b22f2c8614c798c0d4cf7064b126

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on bmander/lazpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.9.2 This release

57 files

0.9.1

57 files

0.9

57 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page