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

Uploaded CPython 3.15tWindows x86-64

lazpy-0.9.1-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.1-cp315-cp315t-musllinux_1_2_aarch64.whl (456.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

lazpy-0.9.1-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.1-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.1-cp315-cp315t-macosx_11_0_arm64.whl (153.9 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

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

Uploaded CPython 3.15tmacOS 10.15+ x86-64

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

Uploaded CPython 3.15Windows x86-64

lazpy-0.9.1-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.1-cp315-cp315-musllinux_1_2_aarch64.whl (439.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

lazpy-0.9.1-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.1-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.1-cp315-cp315-macosx_11_0_arm64.whl (153.3 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.15macOS 10.15+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

lazpy-0.9.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl (454.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

lazpy-0.9.1-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.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl (153.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows x86-64

lazpy-0.9.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl (436.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

lazpy-0.9.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (152.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

lazpy-0.9.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl (436.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

lazpy-0.9.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (152.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

lazpy-0.9.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl (435.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

lazpy-0.9.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (152.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

lazpy-0.9.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl (434.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

lazpy-0.9.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (152.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

lazpy-0.9.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl (431.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

lazpy-0.9.1-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.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (435.4 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

lazpy-0.9.1-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.1.tar.gz.

File metadata

  • Download URL: lazpy-0.9.1.tar.gz
  • Upload date:
  • Size: 803.3 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.1.tar.gz
Algorithm Hash digest
SHA256 c7d39295d42d439e4a45c5002050c617fcde1796d2715abd011edf8850b37773
MD5 d660d294a628cf744f660131702fb52c
BLAKE2b-256 7cdcd9e4af1a857afc87c9a53a830be9e7a130e54163b81af21b41dd70c52a7a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazpy-0.9.1-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.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 225c20d04f43c210c7aa496b2331200e1fe50bf6e0c936243bc80d37b4e6d3cf
MD5 561bf1715b1c5e85915efcdcb9d417c5
BLAKE2b-256 44a75be3bea7925ddc9b3b224b76cc7dca38a05469e8094fa285ac3a47c551fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39bf5f4b7953ac0bbded62ded45fdea20bccd353ba7b30af40b4b64f70b254d3
MD5 a851f315a46d42abb6b4c9cb1698b64f
BLAKE2b-256 73b99888b8170e6ccf77a8b9df27ad339d0fbe99d20b5ad7e2ee81588c3bee88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b04ae3fee36fb252065610df3eda3279332fa2ac215aea705b34e9370476cfe6
MD5 4e42acc843f90791da7377cc3a4a52e8
BLAKE2b-256 7022731883546b392f69ea1515b406edc8a5401878ef6239f8be64ca032c7f6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.1-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.1-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.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 396decdb8c73735ed1e5b4534de74815e4a45200bfce672474e581d960e3171d
MD5 35abcba9424ee96420f0285f234fb294
BLAKE2b-256 e4ba42b689da570eaac2a526551c7e33a0aed22dc47751f146ceca5b0014443b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12fc23e576d6301cc58e9edd6ca9bb11dd5472fd82395a1b6e608d151796fc39
MD5 a58e7d70e3d432df5010deed236f51a4
BLAKE2b-256 6b5d7f09d4bf432debd16fb27bc082e92ae563199c65d77ab374ae4d45dbcd1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e3f4470bfc5a94ace6e2c43637446e0a112838e143b8efd69ea56a3d23acf98
MD5 556cccf8000900cd033f28744684ec8e
BLAKE2b-256 86f6f14e248e4665686b736565925a2cb1874fa967a7a3d8e1551e8f17abaaf4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1407898743d3a579c7e6942a762ae85137123abd975818eada3c4fe2414e8467
MD5 16b4e77118a1a3a6a46a14f442118d95
BLAKE2b-256 582e507cfa4dae8d6feabd74d478d4868438af59ffb8fdc3c6a4b0577a447872

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazpy-0.9.1-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.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 8f420148e1d09c4e1c417958f88e5cff7dd1ca8533e25b5a9b62bdf2a04d06a6
MD5 5f6df692dd7434d8e20a9ae890a2287e
BLAKE2b-256 c85c122f23ddf14afd0f0412b2c47797e0a9cc5d484996a1f43c1d0a32a3405b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2191b09b0da120c344554bf0feae2d27b65e146105766a692cec18f840bf7be8
MD5 dfc98ac98d3583fe46947994e26955b0
BLAKE2b-256 edbba47a90f8f29af178ea34c6fc1d6cd5ed81db1096ca2f5d310fca5634ba40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bbf85f497ad717d6b9aa74d8c883d52d13d5fbc5137a0751e5b9b42ad6a770f
MD5 1553ff2a280a6955687692d4870d7f49
BLAKE2b-256 33d19cdc0508e6935c0f0119b15cb3299ef174d5aae755183c442cf08c6b671f

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.1-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.1-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.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cfea34cb312f92226bc0e28eaf834f69c61413eac60f3506e80cdefdcc2707c9
MD5 2a2d67f6e1d06f04553bdeac125bebb2
BLAKE2b-256 af9e7d6315beed92de065d2691cfd00f3a17c222a2c9492c28f2e9dcddb13e63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce70fa89498582e6b2d90c975a989e3202b5b54d602995e490021217955eaa5e
MD5 25e746012de7c78fbb72bf0d8d65d4ad
BLAKE2b-256 56dfbdae41295850c68cbbb64e9cc8a9263502633c19b9aac4ab239c506c1466

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea975d715afd0407c80fe6fe055a812e42ba18b608412ada392b6797139fbbd6
MD5 3b3706ceb458ef93d920f4eef2ed8d35
BLAKE2b-256 e3c64de2fce7a5c16c6274a1e93978fb21bb56d513641c56ff3e4ed91d8bfdca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 36e000884b05b0d07c1fb20e5048d6d69aae6c49d91007369681be07c8c064fe
MD5 00e5c9cd49dc839c731bd72627bfe212
BLAKE2b-256 f38a5f60666c648a2499a40b93ca8d4824705f9cca95d4f3d6a66cbe7add77a1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazpy-0.9.1-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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 da5d3a796f70b7ad370b32ddc34f96f070dddbc86573aabec0c44af8e58f7f4d
MD5 2ebc064e4f0377201d033084d4057f36
BLAKE2b-256 df8035aed82b6b112a96de5ad2204ebf3f3872353a61c9560b9eaaab6a1a019e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55358905c4e2d7e7461a13f16cc7c75cfcb239321ca4e0193af25e6f11cfc4d9
MD5 2758d6c5325a63ab17a5677aafdc26a4
BLAKE2b-256 ac76718dda1aed2e9d7b743ae67998d5781c5efa11b0299876200638dda3dba8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc8d709dde2b5ca4c6edafca26eaf4a6499667e946c9a8ed3761954533a5090d
MD5 f818a1a005a411f8f04915e8e2b83124
BLAKE2b-256 42694dbb898fb4440d3ffd4e1b6602fb4210c896e1e256c06370f35d7a70865c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.1-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.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9ac926be47fb288baa605d54f3d70c078b53cd6be95fd71377c9c8a844f64751
MD5 537349fcadc7aeef58effaa44e822467
BLAKE2b-256 8a00351e02c98bd27c9a3152a6442b88ce3a05c4cab2bc8e8fb41b64b49a10bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ecdb563cffe2da8639b0d7a1608b89562907afc5586ec3c5fa4c5d68390a8693
MD5 c245e85b4b3937296b4b756f87f5944d
BLAKE2b-256 e0fcd38fb724f2247761e829dd688d459ff0a82d2131be3ba6e18c68e27f6937

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20d83779ddbdbd6bdfad450c838f5e00d6511fb6bcfdb9db9376c9ec522d5772
MD5 fdb93b5c9a3c18ebb99ce8ffcbe7e9df
BLAKE2b-256 f55bb1e394705e019973025403221b421a319fb237c124ebbb04fa03815b5020

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ba18c382a1b4c4d0ec5f73c788e9fbd64216bf3567cc045c4b069f7ab2f95f6b
MD5 b2d31d01e5899927bfc466d66fe79531
BLAKE2b-256 81787c355d2ccf3aa8f092ba76bb9fcaa22099f1ce60e698c8d95186361093d0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazpy-0.9.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b8c779f6165b5848de532eb09c8afb5707a16b8e6fafdf3e272761faec9cd80e
MD5 7baca8803312934af7a57ee1d00251b2
BLAKE2b-256 4624b00e16fa5e93b88a63790751c6401276b5dc9622d656469f6cfa74f48c6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cc66952c4f3836fc130e2026e161d498d91846d7f8730859dcf1c604fedde29
MD5 97281c77f44d9e07c10511350e001daa
BLAKE2b-256 04aaab131b74b1270a9ab1ed65dc56c7c2f14a0affaf160517208466c97a357a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2f3c76e8fd5c3ceea7439df2591dd0804c1347fb65ac6bd2e6a975c20f11855
MD5 11349687874c402bd3d9b2fcecbe3df8
BLAKE2b-256 91fb772db81646e5ad35c11be0a951e43adffc20a53f824cda11b674ed8479d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b33a6b4f072e5eb80a9d58e6ccbe874c59ef0843bc968606e2cc998b9492084f
MD5 27722ba39c6484c944bd43a0d1299d68
BLAKE2b-256 f14fba2db5af663c037f94d2268e8f071d1b059abc207b1c130ed4672b161a55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c14a514cf0a76dcf0991fb258fc0cf91b4f59f875b99e2ba48a2501c2f46a7a0
MD5 fe2d0ceaf14525048112d7966c6be90d
BLAKE2b-256 43c73805a9f62a8658d4dde78df7caacab9e839a681136209a70a9b1c4c01745

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6b389242e91474899361c97717d29b6297bc2c5aae4ba9389f14169e71caa58
MD5 596c331db8698816eb378542a8405d96
BLAKE2b-256 ce7e9bb42f8920160db5f028cbc9bb86864ac7b7f5a3ca30f1fcdd06cbe37fc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4674ff1c514e99d6763fc0b982d15cdd733fa15cc5dee62b7257308dd9b1a6a3
MD5 0c621ebd4b39377ac8f0a44a3a9c0e7a
BLAKE2b-256 5a6ef858ba2338ade89ad6069b7f755feb11969d69cd2d2428487155525b3d2f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazpy-0.9.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2fe9358e3c02bed4cd269bd1cc7d4b6fe730dda82d252aae04ad91b0cbcd6358
MD5 5719f1c020492cfd9957e5bb601390f6
BLAKE2b-256 32a4ecf2cf631efd10e7e8f3bc04c113932d6ab33cb82b1f46ef04666a41817f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68d0117db75d2f9b9fca4787f5d9f1868327df2e153f6b7cbe6bb2ac55ae380d
MD5 918e098d7fb09706d2de74a7d8f337dd
BLAKE2b-256 ca106ba7cecc3240102e6d7eaaa43c5c6dce1a7accc18bd43daa08a8015b850e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 452ad224539c225ce128f8faab72b509f138a404f9fc64be26f77ff772193fc4
MD5 459dd7130d8a7281f3489d2636013b59
BLAKE2b-256 f9684a5186d3a8ed3f6198d255c713e6845df540505c3ed42794624c0a043916

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f4168f489422569956439edce0ac94e6c5a96a2eabdd570de17f5bd3d48164b5
MD5 ae32eb5177116347c9cfbf171c998f03
BLAKE2b-256 63ad47314625fdd7fe249bf31819b4b8f0f9d3ebcaaba7daaeea1d4e2174947d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 14eed483792fa2a5909fe846d55e7c7482c6ede77d91a6d6987fdf4a0b9ca0bb
MD5 da3497511b52f49327f965901c409470
BLAKE2b-256 e2ba99a43cacf7cfbce029a95b8108dfcb5b8b79649a901b94246b1f79022510

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ea7c0fa8dedc804727a161296e2501e7bc6dc8a0f52f3c9aa5c35d8a255c71b
MD5 a4bcffc173087b968c5e448a6e9f27a1
BLAKE2b-256 13c52955978c01a825aa4a52160f12ffd5260fe615a376e380a9624ea64151ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e2b90ba39245a234837027748a44f895600cd2ed7a1eaf2744bd9777abd691d8
MD5 1ecaf518ac822011a6841f4dab9100c4
BLAKE2b-256 da4cf7c5fa73c62c50a0ad7262cc3f32ff0cb820eeb597e8bc9e1076447d248f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazpy-0.9.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 47e584d20d9ff93128d74cace9a6d20a20c6a70ca672a23dceae143e092fd3a4
MD5 bd3515ccfe8676f6d545d5b56f3cf4ec
BLAKE2b-256 46be6b2dd12d25a3202f16057c73b4d9f57743900b68ec9fc4f9da9afb3d4004

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e40c23dca8458002a0a0982a99b183a37a3aa7eb681728be67451ec370e39a01
MD5 ecc1e20bd9d4899898741f6323d48f1a
BLAKE2b-256 be2bb3b77b9ce31606622730af6ac0258019700fdaa75546b05ee09ccc1769ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 95dcfd5556da73d6e9f96069667f54f5a5300a362eb78cb333b306a71e901c72
MD5 99c9e968d8024c670ba9666a944c963a
BLAKE2b-256 3c01bca8de090b3c2042475515de453161ef45220c2c604d0e469cebb280ec28

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bfdbd0df3407b48980c255dd1e15c3543297696b711dbffa0f3b7042c127c6d7
MD5 efecbaa62e41822fbd016c09d69a8c7f
BLAKE2b-256 b75e63af9a607c0be4b4792b78ebcf14f8bf67fc4fd3211194c11bb8380f54c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1cef72c907578882826955b887f5b67bfa8fbe8e1cde744f78bef4a7bd468b2e
MD5 a6461f3e67444e88f6c384336c366286
BLAKE2b-256 c665606ed5768a80a7a48938c43e32348e1ca5647835a16a89b49f27f35bd8bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3f6dd622f165f73e3a837d15eaee4255afb7333014fa0345bb8f01831598de5
MD5 e2fb1e79b0b6918ac31d247203484a38
BLAKE2b-256 58da0b4b8dd9031b49a45f877285efca78e81eaf77a02e3cd964cabc2f15db4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 89c85b64250c56652eb72ab6e6eb82770d5bfc3a16249dd38fdc5c5ef9eb9ee6
MD5 7e40496705f7b9580d2c179e496e33ae
BLAKE2b-256 dc138c5ef98660fd94183837cd4a588e42016e8b8758422274ea4a8a50d502f4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazpy-0.9.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f05a71239f55e0273f24ece2a801631533d231f708d4cdc9a66fbefaf45348e5
MD5 56e6f0d1531c8ed80328448c05698fc4
BLAKE2b-256 4565611d5fc39ef0eda3bd17c8428565ad58fbf322b7c5cadc93d49c39b52659

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eae3b4fd8d724d2e78d9a7df3cbaa0da352a6c9f7e10441fe544c49d9f6295c3
MD5 c05ee87baabe002ed9e4673082a27eb6
BLAKE2b-256 7ea4026077f9ff297dc6e18777acc273de6869685d74b803f6e585c025141c8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a381ed9c995f7cf794095001eb1b7dc111e690df12f0515b7486feaf54ed9f17
MD5 81f8ddf4380ae55b0e913ee25d7b8562
BLAKE2b-256 953a99f6c7e2691df13b9ff4d9dbd13cc0ff3a5b576ff2b86f7d6845d893d528

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6056eae9365f24a6f8d6d1df2eb15a2943e2ba411c85e31fe3d881bba0e5e4c4
MD5 45ced1d90c7f120fe31de972658b7c44
BLAKE2b-256 74d72ab2ebd061481f6a1d2d83c481fcfcc444861f4dcb4da2dacc521b008494

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 782ef48c03f44e785b13bdde849edd1d0baac4417b038497cf636648ef97d6c0
MD5 c674c8ccd301c2e5eb9dfd5a52a9cb28
BLAKE2b-256 68207569983c5806ebed6653417f7256b942252e45aba762f995cc1f8b75dc5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6890d4b111cbda99cfb435679fd7dc27158a5144d18aebc2a352350bac5f9a8
MD5 a05f4637146a351a7709cf9974543bf9
BLAKE2b-256 00ea6c37163a69d83fb4cc2ca79725e75274fb1418bf1813977f44bc6a5e3bcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ecd6efe311aba65232fdda174adcb028b8b9caad4c42ad044e78c6dace46068
MD5 9b5a3b5a2ea65d09b0888be2df0f039f
BLAKE2b-256 9a88d151c39669234bb0f0df86031300bcd99bc1ff08f17036c51961eb14687a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazpy-0.9.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 62169544d7c42fb468d9e72d9126513861576e012ed90391712c60491502c570
MD5 9231b7d00f03e227e819560e6c78022d
BLAKE2b-256 1832c1ba4467ad11e9129ea7eb2227a7b6fb551c99bb0adcda6ff448c1859c10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 802c8ac7588ad12d0a1653c95423df37dc62e0cf3b254e8809e9f79b96456954
MD5 c3fea70966a4cb0d682852dd7a2479c1
BLAKE2b-256 cebd94c085a2dcaab97e5c34208f5920a10996e4063142eb8a321197d2d6d0c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69de4ffe2df127cdc841deccb8479a12488d38c65bb4cb3978d3c64a5ac72ecf
MD5 eb0077bffaaa3b0006a52c595331152d
BLAKE2b-256 1a064d9f737b6236d3b385e5a9a4e17fbeb975856b20fc9d78112cee5cc4d3bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazpy-0.9.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ca04a442ef2c23ddcc2ae06a2c45702772672f7613fbe4171bb4c52853eb532
MD5 f6f5a603899043e89f0f4444ab9b5ed3
BLAKE2b-256 f05437389d85af1434211ae39cfa7599f5b12bf50a92478f75e3c08262f6c1c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32bc0f5b45452b470bfb7723875c42ea38b63edf4b0b8502efb2d726be544aee
MD5 4574003a01e4f0d8930363d0b48edf96
BLAKE2b-256 f970fe56c105ea5b874cd2bbac66fffd611be1baf0b5003b13370dd0600330c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07b162130def16e6e0b01cf37ffc58c79773ef686cd789e41bf87be3c989a420
MD5 a173ff6a6fd65f4ccd1281758a6178ce
BLAKE2b-256 08dfb7e3085de90e4968f9a66e07cd213f9314d5a2fea0c9597a373480230d38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazpy-0.9.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc12dca629b732989ae14eab12d6c123053c33bd06fc7efa06fd9b479b905bc8
MD5 bee5068dc538f70124f0e110dcfeb085
BLAKE2b-256 0a27ba751abaf9884cb962bb6f79a63f222fa4b4132e9cb681b336cda574f243

See more details on using hashes here.

Provenance

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

This release

0.9.1 This release

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