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.tar.gz (802.8 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-cp315-cp315t-win_amd64.whl (156.6 kB view details)

Uploaded CPython 3.15tWindows x86-64

lazpy-0.9-cp315-cp315t-musllinux_1_2_x86_64.whl (457.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

lazpy-0.9-cp315-cp315t-musllinux_1_2_aarch64.whl (456.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

lazpy-0.9-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (461.0 kB view details)

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

lazpy-0.9-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (460.9 kB view details)

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

lazpy-0.9-cp315-cp315t-macosx_11_0_arm64.whl (153.7 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

lazpy-0.9-cp315-cp315t-macosx_10_15_x86_64.whl (156.4 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

lazpy-0.9-cp315-cp315-win_amd64.whl (155.7 kB view details)

Uploaded CPython 3.15Windows x86-64

lazpy-0.9-cp315-cp315-musllinux_1_2_x86_64.whl (443.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

lazpy-0.9-cp315-cp315-musllinux_1_2_aarch64.whl (439.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

lazpy-0.9-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (445.9 kB view details)

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

lazpy-0.9-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (443.2 kB view details)

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

lazpy-0.9-cp315-cp315-macosx_11_0_arm64.whl (153.1 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

lazpy-0.9-cp315-cp315-macosx_10_15_x86_64.whl (155.6 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

lazpy-0.9-cp314-cp314t-win_amd64.whl (156.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

lazpy-0.9-cp314-cp314t-musllinux_1_2_x86_64.whl (455.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

lazpy-0.9-cp314-cp314t-musllinux_1_2_aarch64.whl (454.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

lazpy-0.9-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (459.1 kB view details)

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

lazpy-0.9-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (459.6 kB view details)

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

lazpy-0.9-cp314-cp314t-macosx_11_0_arm64.whl (153.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

lazpy-0.9-cp314-cp314t-macosx_10_15_x86_64.whl (156.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

lazpy-0.9-cp314-cp314-win_amd64.whl (155.7 kB view details)

Uploaded CPython 3.14Windows x86-64

lazpy-0.9-cp314-cp314-musllinux_1_2_x86_64.whl (440.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

lazpy-0.9-cp314-cp314-musllinux_1_2_aarch64.whl (436.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

lazpy-0.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (442.8 kB view details)

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

lazpy-0.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (440.7 kB view details)

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

lazpy-0.9-cp314-cp314-macosx_11_0_arm64.whl (152.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lazpy-0.9-cp314-cp314-macosx_10_15_x86_64.whl (155.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

lazpy-0.9-cp313-cp313-win_amd64.whl (151.5 kB view details)

Uploaded CPython 3.13Windows x86-64

lazpy-0.9-cp313-cp313-musllinux_1_2_x86_64.whl (440.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

lazpy-0.9-cp313-cp313-musllinux_1_2_aarch64.whl (436.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

lazpy-0.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (442.8 kB view details)

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

lazpy-0.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (440.5 kB view details)

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

lazpy-0.9-cp313-cp313-macosx_11_0_arm64.whl (152.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lazpy-0.9-cp313-cp313-macosx_10_13_x86_64.whl (155.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

lazpy-0.9-cp312-cp312-win_amd64.whl (151.5 kB view details)

Uploaded CPython 3.12Windows x86-64

lazpy-0.9-cp312-cp312-musllinux_1_2_x86_64.whl (439.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

lazpy-0.9-cp312-cp312-musllinux_1_2_aarch64.whl (435.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

lazpy-0.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (442.6 kB view details)

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

lazpy-0.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (440.3 kB view details)

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

lazpy-0.9-cp312-cp312-macosx_11_0_arm64.whl (152.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lazpy-0.9-cp312-cp312-macosx_10_13_x86_64.whl (155.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

lazpy-0.9-cp311-cp311-win_amd64.whl (151.3 kB view details)

Uploaded CPython 3.11Windows x86-64

lazpy-0.9-cp311-cp311-musllinux_1_2_x86_64.whl (437.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

lazpy-0.9-cp311-cp311-musllinux_1_2_aarch64.whl (434.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

lazpy-0.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (441.2 kB view details)

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

lazpy-0.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (439.8 kB view details)

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

lazpy-0.9-cp311-cp311-macosx_11_0_arm64.whl (152.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lazpy-0.9-cp311-cp311-macosx_10_9_x86_64.whl (155.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

lazpy-0.9-cp310-cp310-win_amd64.whl (151.2 kB view details)

Uploaded CPython 3.10Windows x86-64

lazpy-0.9-cp310-cp310-musllinux_1_2_x86_64.whl (433.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

lazpy-0.9-cp310-cp310-musllinux_1_2_aarch64.whl (430.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

lazpy-0.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (436.9 kB view details)

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

lazpy-0.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (435.2 kB view details)

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

lazpy-0.9-cp310-cp310-macosx_11_0_arm64.whl (152.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lazpy-0.9-cp310-cp310-macosx_10_9_x86_64.whl (155.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: lazpy-0.9.tar.gz
  • Upload date:
  • Size: 802.8 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.tar.gz
Algorithm Hash digest
SHA256 c3c9fb26909422f9ee519c1e6c670c49cef4eca2ec9627b544e76eddbb0d5a0f
MD5 5320147fe555a0ea28d044ef8d9d4c0a
BLAKE2b-256 d81205159ec702130c1c529eec818b8f4d6ac484b08b301887d6ff729bb91e08

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.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-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: lazpy-0.9-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 156.6 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-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 231e870c266fc435395ab9573aad11003e2d9020c86f39302294edd116eb71f1
MD5 3ed0fa8f226db384dee8690d139ae9e1
BLAKE2b-256 28b906229c0a96b4b14611433eb6e8151e8af09bd4ed3994279c900362b2505a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 134cd918b8ea078921025e5c68dd07cadd786072cb6f7d35ef76da67cf53b4c5
MD5 68a09eba0fa2c62e8db1bfb2c60c38e5
BLAKE2b-256 b651874f7e52564bcbf2f8b34d848bf21a8e25a688a5bb5a2ca77cabccaa48a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 207492fc853f435e460be086d63bd74380f9373cfeea0f4f082d53b83619b593
MD5 3910862054cd2e01ed6e0310d2e24dcd
BLAKE2b-256 210312b280648162c68b5057a73b18077862864df53c24869eba55ab3d739f1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-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-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5944c657b4a4120cf50cbecb91f25f855023983bb901483d90b07a9e838245ae
MD5 a3b190fd0ac49058542a7785c1fd637b
BLAKE2b-256 bb3fec50b3a504bcca47ac6d6708f7ca5b7cf9e90e765db3d5e458e8ce49ad42

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b36c70bcd77718f00e5d160dcb3c0e60334d7f5518ced18b023b43603bf9e8ed
MD5 69b3d1f4dfb23b32d076e9d019d1edb4
BLAKE2b-256 2d90f2bd73eabc0986a29aa4d33bc6aa20e9763ffcdf14479f6f5d62202ef90c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lazpy-0.9-cp315-cp315t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 153.7 kB
  • Tags: CPython 3.15t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8459c1b934037504e0b65273c8ba6259922675c3bca11efadcd8bd8075e19964
MD5 1b74800ce2bf4290f28787497dfc4464
BLAKE2b-256 f4f223aef6b1e86abc9301ec698b57c6ce830b5e7087aa81c1a9d3f7a79b5d84

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8d44ea7173e8d4d12d82c5fafd3abb7c05f7435f5884915cb6c531e20e094e0d
MD5 2de55ebda851f57e1b12a1dc0759f04c
BLAKE2b-256 dbbfe3877aff39e08ad152e95bf816e42a52d9efc74529367ca3e722862dec25

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: lazpy-0.9-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 155.7 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-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 554f463a67cf531f9050685d02b92dcf875d3d8389ce660f598b54b3807f3b35
MD5 e03f9478fa67ef5c166fbfd44301806f
BLAKE2b-256 7759d02e9f43b809a33185c80b4bee6a46dbdb2b0b1185d54bd475bd520b6f41

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: lazpy-0.9-cp315-cp315-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 443.3 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3776b6e2990ebb71144850339a08f578c592a8da11a508bb963727b4bc9f9177
MD5 5fe82a60f9be387ca941787a18f06cfc
BLAKE2b-256 195cc14c61f5fc353232340b15044e41ff5fb312beb86b5d2d647af9ca23b322

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb48d10ac224460ea7c87c5ec0886248ac37b4ce3ed621c6a81ded30203f2cd7
MD5 e5d53d1406e182228f4c09bfacddf826
BLAKE2b-256 1f7f070662c797bcd39032a6ac187efc817208f726623ee2606974d0866849f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-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-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f2ca2ece118391e0bec25a2700ab66f2855bf7757761ecfea6d576349837447
MD5 5b7a7b9965202860531ea54a7eee6799
BLAKE2b-256 68f0b2be42e74115279a0c320c5c90a8b83613ecc8a1bca7268a2f2104c81357

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e781a7bfc000948d7c8a2f7c6cd0cb7e22a9fcd6e1e8f219c76c03c06e03a0e2
MD5 e511f67e030724b25f256d8ef52ecb11
BLAKE2b-256 7a2dfa700ec964cdca72078860284093557b73eb38f5507dd92ee44e35c8808f

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lazpy-0.9-cp315-cp315-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 153.1 kB
  • Tags: CPython 3.15, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cadd6c9e87b52b6cbe09e144c1a689fd0433c1f89e65a8fe9e0e384d3119264
MD5 d470f4f9e686aa544f84471be60bb817
BLAKE2b-256 48c27eefb43705264385556dac19e5cf1a5246414f6022658ade2efbcb5fc348

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 02c38a0ecb0d53aeb690a3690c179e2e59f5ccd88090a5399f001ee406a59fde
MD5 08567aa2b4cd948efb7d1e32dcfd8a4c
BLAKE2b-256 4bbfa550d87dde91583ebbcb281758a050613ac7f67ed823e54d54c28570af5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: lazpy-0.9-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 156.6 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-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 20588258f5e0a2966b1810586c63582b878435e8aedd8502f23eb39d651fe7c1
MD5 0a180c05371c00ec687279efb45bc4f8
BLAKE2b-256 deddcb949b5ef1f285f06d737a4ca1cc56858d9f70fdc24c74a471526b969ba8

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c7e9abf7b5187932f23bd15e0139213c01dec3b09d4d95ba12330dcb0426d7d
MD5 71354f7b6ed8da9999ca0e4a56cddc43
BLAKE2b-256 58ea7176df66bdace567c16dcdbcf95fc53d94ed5f35ba08547460d34dd71f35

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93993b0c357856448c7e19bce27c57b67164d88facf67ec4f1f4f7c7ccc1f625
MD5 b3dc41469985b72de46ee10be5b79cc3
BLAKE2b-256 d41c017bb09a2d98e701925625facbaec79a552f2930eb11652fe5ad488df184

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-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-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0882c6402c50be187bebd6dd62f3fdf9b08bbb1881c2518d56459786c05f8f72
MD5 d1cb8ebc9bc29b1c2464e4146973ad00
BLAKE2b-256 2d927733c4a5a52ebb4f9bec988a9df26a1be6958ed9fe44505a7553e71c3e57

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 59f3817d725f8e30578278521a230ec4929e083ab6f3828f62fbae8cd20c10e0
MD5 3536dcaec7d953a26ec464707c2f466e
BLAKE2b-256 b485ec90cc214e968994847459c1f37e7d7e93147d18aeb9eff8bc5cff2305db

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lazpy-0.9-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 153.5 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7960b67d70490aa94b163bf935de10c9ff41f009a391b4b0b38bc0e857d0aa58
MD5 60f164b16430a20b37907fc38c6f40ff
BLAKE2b-256 f288c2e53cbb197115084d28fadf3c2334c8cf92c773c021ea8149f9595a55df

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a027daac9064d6eef1c378308d17f816622720376214f3254904cbbf14635c7e
MD5 163d645dadb2412d42180d8728858495
BLAKE2b-256 ac3386160e065cf658b9d950a78e34a896fb391b47c14e51ed0b7ae5bd93b7e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: lazpy-0.9-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 155.7 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-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3a3f6426a95769e34163e6a95824d935bfd59512123252cb2cc6733a6c74ff4c
MD5 2148f00c49ac0235b6a9fdf39d1c0c2f
BLAKE2b-256 924dbde50a3594dfe8758855557a01c5210dd8d360dce7b77962d8ce124a3d2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: lazpy-0.9-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 440.2 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da3eb4916e0384a068128ef77504b68fecd589e510573d900731bf89f27be6bf
MD5 d29ad141bb06d11b9a7d91b6eb22ceef
BLAKE2b-256 8180c89216eef6ed26a75035a6b2bb6684cd55f27cac43dc72721bceea4cc2fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e31293e84fbcd9c5f65b1f18809a75c1c1ac496ba36d577ac4781e2d53de5ab
MD5 b17319ccdad36e9e2f1a04065a54dc90
BLAKE2b-256 70c7ad4d7fecfc75e191d9e682deb28ff9853ebf091b13f1ed3a15747fd3cdbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-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-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba72b40b96e1d18b25a6337579e735e99ccc0cfc9a2946620d52879339ced6eb
MD5 c30643bcde84bba8e6db817363faf37c
BLAKE2b-256 38b613a6738335a47dc5d72e59530f87adc30148e76c74403cd5f924f30ef798

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ae70620493ca53d2464057e0ec838109f1c19cc5d045d6341060a7c2f5031e86
MD5 6ae23ffc5c7f7fc946df1bd67f257cdb
BLAKE2b-256 92e29a0d677ecd79a35fde17f01744b8671001f5985baa052a58e9677234b5a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lazpy-0.9-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 152.7 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27ff7c94b82cd90c68c91838672383664aa6dcbb64696fa7d93db169ca95a676
MD5 07fdf34d85faf04a9ad7453eac1bccc7
BLAKE2b-256 2ebcb7afd028fc716d639b529eb7fe1e299511950f006e702ad10c1adb031282

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a606ecea5b5c35841701d89bec4457ba03283d3ffbac31489dc6d5c316640c50
MD5 d6d9df5ac97a58a0003f34d15a5e9aaf
BLAKE2b-256 5ef3c933cca9bb9ad46000d2b40cc54f0c402501a282e486a752046a20ccf983

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: lazpy-0.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 151.5 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-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ad1c7c7029fee48165972034d33e917e5207bf40890b37b09dc611cae2509295
MD5 35ef345416d5024734cf36217b5afd59
BLAKE2b-256 c7e73c58ee5196fb6de30904dd2bf836bf39abe477386f2e5171751c00b73643

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: lazpy-0.9-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 440.1 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 611abfbb1dcf5ca14f1cbac36d596a80e418a59b986eaca297a8fd0632dd6354
MD5 785f0c436bad0f489c127ebb86b600d3
BLAKE2b-256 314e2f904d0eb2338bc6b81923fb926f8b6ae700ed72765bca220551d64fbc22

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19aa49ddf3ffb9a6815756b1bc7bcab38f15069ea16ce255df67a8110b0a61e7
MD5 1a3504df76d14d2573f5068ee88582e6
BLAKE2b-256 527f1a7616af4a66a9a7dbf95b01fc11e5f828befdde125e6fd416915aa402c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-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-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a5ac630d33c8ecacccde96f64b54057a3c94b3fb127650844050e9177865897
MD5 d19b95b4e92ead739faec3d46ce78793
BLAKE2b-256 c144b0a9d2d6bb68d239052f5109baa25a918690956cd37acf3e1f499d462ae4

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6801e3ed83883628ef5cc5673e809cbfe85b10e5e2af1cef9dd12c1241098dac
MD5 73b38719418c443e754e6039fa1d0660
BLAKE2b-256 58c0fad1347a1d414d619e34f92003fb807bb33c7a874edaa239f1c8f28d6e51

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lazpy-0.9-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 152.7 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ffa4acd460f5cc35c95b02047511dbe1f63340de9132d6e19ae9b5c6b43291a
MD5 4ac6c50d3aac101cc0b419d65abd6b1d
BLAKE2b-256 628fbf2737effc8b01bca956521dcc94a27c0588278e72e4a630c15c264629e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3c9d79f15f9f1638bbd5d363caed286b35452c67a2b084df751240bbc917c9a9
MD5 2790addea67b4c7016e5dea039170a74
BLAKE2b-256 da3646108709f69c8e7f2e0c16d9136ccb2cd30839ae6db4e5d950b149f4c4b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: lazpy-0.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 151.5 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-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fd3172a561a26eb5647c3b5ed71b417b90e74d1071dba4482330243144152524
MD5 5339fb4df44d8d79871bb54e9efea770
BLAKE2b-256 4bce2550bdbab69105e21523e139edf5188b1c3542e7ba63ff123ec53d6a0dcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: lazpy-0.9-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 439.6 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6715b46c46a6d38aedd7504f6669d83cbe54d83cc138b11735fe9e53457f940d
MD5 06ba9c5c537c8d9cda7fb346bfa890ae
BLAKE2b-256 1a0c026bc5ee063d8283b2fc8434d19b721689b02d9b3692cf3985b36be19bbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9234d290877f1cd6fbf4eaa371f6a9cd6793fce382b53b5ccd91fa4900148fa0
MD5 595eb8679cde6b45f7f6d76409def8e4
BLAKE2b-256 e58c1c29195ad54026795d6a146ae1aecbfa007afca17b91019d4fccf51edf69

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-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-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92b0c68293dcfe4aca0c4c74c512ba4c36d2ef244db98071e7b7c84858b3b6ea
MD5 c8257124cbaf601a44327beda76bbe26
BLAKE2b-256 4c3bfe54d0cb9b4980f8360df848fdd4f69106796c461f9e6855e4d6a5a6329f

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 07c54f97ddf0c85ede23b843c95f562f5b9ddb0f51ad968f6352e8e4705df4f8
MD5 560c3f50efec854acaec82596584c875
BLAKE2b-256 c38c60c6210e1be9de9a3f2fd0e2c7d9a4bfa45829819cb102dd3fff38e85d21

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lazpy-0.9-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 152.7 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2540242ac811c321c9c4984d4b34e8e88f11966f5f64de4c584f5b791cde725c
MD5 d74acc2d6209f5e3805dd26cbba2e5ce
BLAKE2b-256 c38445b04be11691bd82cc7b28f4171294573c153605bf1dba4fb783c45893c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3ee3afe8fc8b41542a28f9d438516d781eefc78b2fdaa16f94f127222b3aedfe
MD5 c38e0ef7c682df889c02e98e8c451b78
BLAKE2b-256 a2856084b0c2875c0dd098aafeb5097933cd99faa72704fe7e499dd4dddb3bc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lazpy-0.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 151.3 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-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e6ed010d94876ecce10a2c0a9f775915ec034cd1f03dd8142893c48b1b18e45b
MD5 39a8bfcd87d6541a404cb292de0899cc
BLAKE2b-256 23f1e1c4c2e89de2691f44f6e997bc21992aa46385a3be9a769cf6aafa0a9169

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: lazpy-0.9-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 437.2 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dec41841f525c30c537a60290f1c23a93b2a887bb9a2716b04be4548d4dc6de4
MD5 b6bdcc51ecd28f6442b174a7fc3f828b
BLAKE2b-256 4b6e81eac70a2aba8da0c38c5fb448acfb6cd52df29df206015fe714bb7c9b19

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 110f250d32ae9a95822b0b2deb23e09a19a78fd3799dd6bd18a3adf93a159544
MD5 b8605aae71fbf63004a451d9672fcf26
BLAKE2b-256 72e2a32b4479d7904f85e4980e15bf895e376eea3cef02b5571a4e42489496ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-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-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ec0eafcff878d86383337071da2d65a5b71301ff111d1dd8bdd21da0ed93c72
MD5 42d8cfcfb7b310cc07c12e6925499696
BLAKE2b-256 74fefcecdb7dd62f7aac615bb3a6ab9e1b9254dc0fdeb3bb7590fc862fe98e86

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3420f7cac908601f629788ab335e39674b9d474ce30f9d41d1ab6c8ff3825f88
MD5 49df73c3ea62753dcd440ae9e9fc8b52
BLAKE2b-256 c333451bbe4c804e4c35223f83e5f3adc787094de0db7b7d35bfe80cbb649dc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lazpy-0.9-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 152.4 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a10a9f0fd37df8da147d3da96e51e02573df1b9a9fb9fedd2633275bc1d5172
MD5 8c7124f65f84b82f87e9cfa112be3e16
BLAKE2b-256 f081718482205071a42fafeafecb8409104584ff6c735a19ef5f74941efe03a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: lazpy-0.9-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 155.4 kB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d413cc3039cd3ce3e3b01cbc6a3732bedf47b5246dc4986a93b5bd9387979eef
MD5 ddcea0db0b1dff6d26cbeb8e3ee75eb7
BLAKE2b-256 8690b121bc41e31abcca53090a318702733387b009cd998f80d388a9a52b79c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: lazpy-0.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 151.2 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-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f29d4723756ec2120240187b69d0aa70a8c3674e0917dbacac5b4667209214ff
MD5 4270d78e2457464dd113775291571823
BLAKE2b-256 1f087a935aa180cf02303c277269b1efb15f2b3f899823b0b7ade794051eaa38

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: lazpy-0.9-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 433.7 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1eb1d046299de39395e956a802668b9fd6c067ec3e398545bcc88ce61e9d87a2
MD5 c04d31e1f055c46c3412465d12f8d61d
BLAKE2b-256 d2d432977e325b41c1f4928fbcba9607b0b503242c87cbc371806d7f1aa37b8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d22c1744c9b8eb14632d93b74fc76ab677b57f7d4b6d28fe3a56120a2d945796
MD5 586e70e0874fd6ba5dd861bf2aee359e
BLAKE2b-256 e2a357b9aeca0ead11b5a11eb1375f603e2b86d296ff2f9d2256b2f7c8f10d84

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-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-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0b4c89a57abbc70cedc527e71717bd0b3f6c3140d5a08ae33dc1274aa9fc02b
MD5 33a273d81b134d1cb60227a5f0bfc578
BLAKE2b-256 e7c4df04cde2911520a77149e70b500cd49bf699d21b142c21b6f59ecea47bb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lazpy-0.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2173402365feea98edbe7ac330bbd173954f8a106f1809063e8279fbca99a10
MD5 cf2687476d6944f3046df10cce7919b6
BLAKE2b-256 f885e87a9af1b7a1e8b4a1936040a8256b8974d36de931557495156a1bdfd0cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lazpy-0.9-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 152.4 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19cb28768ec3c01f2d7c98f1d924d32bbc13a4bc2061f42e824343697b31700a
MD5 422c62061f1fd610fd8ae4d9f4a59f24
BLAKE2b-256 5d00306b0a890229f6eb19126fe6af1a3d6211ef51dc1efa3d5575650426cdbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: lazpy-0.9-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 155.4 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lazpy-0.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad61b574d64b8f951c84d17b421479c1511d5b5c142506b5c9169d768b078165
MD5 05bcb9cbb37ad6959374514077a6faf8
BLAKE2b-256 3ea851e1d9d102991503b9b9046dfe22a8c26e87ec02da164a49bf9df128a7b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9-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

0.9.2

57 files

0.9.1

57 files

This release

0.9 This release

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