Skip to main content

No project description provided

Project description

async-tiff

PyPI

Fast, low-level async TIFF reader for Python.

This documentation is for the Python bindings. Refer here for the Rust crate documentation.

For a higher-level API to read GeoTIFF files, visit async-geotiff.

Examples

Reading NAIP

from async_tiff import TIFF
from async_tiff.store import S3Store

# You'll also need to provide credentials to access a requester pays bucket
store = S3Store("naip-visualization", region="us-west-2", request_payer=True)
path = "ny/2022/60cm/rgb/40073/m_4007307_sw_18_060_20220803.tif"

tiff = await TIFF.open(path, store=store)
primary_ifd = tiff.ifds[0]

primary_ifd.geo_key_directory.citation
# 'NAD83 / UTM zone 18N'

primary_ifd.geo_key_directory.projected_type
# 26918
# (EPSG code)

primary_ifd.sample_format
# [<SampleFormat.Uint: 1>, <SampleFormat.Uint: 1>, <SampleFormat.Uint: 1>]

primary_ifd.bits_per_sample
# [8, 8, 8]

tile = await tiff.fetch_tile(0, 0, 4)
array = await tile.decode()

# Use rasterio and matplotlib for visualization
import numpy as np
from rasterio.plot import reshape_as_raster, show

# Zero-copy conversion of the rust array into a numpy array
np_array = np.asarray(array)

# Then we need to reshape the "image" axes into "raster" axes
# https://rasterio.readthedocs.io/en/stable/topics/image_processing.html
show(reshape_as_raster(np_array), adjust=True)

Reading Sentinel 2 L2A

import numpy as np
from async_tiff import TIFF
from async_tiff.store import S3Store

store = S3Store("sentinel-cogs", region="us-west-2", skip_signature=True)
path = "sentinel-s2-l2a-cogs/12/S/UF/2022/6/S2B_12SUF_20220609_0_L2A/B04.tif"

tiff = await TIFF.open(path, store=store)
primary_ifd = tiff.ifds[0]
# Text readable citation
primary_ifd.geo_key_directory.citation
# EPSG code
primary_ifd.geo_key_directory.projected_type

primary_ifd.sample_format[0]
# <SampleFormat.Uint: 1>
primary_ifd.bits_per_sample[0]
# 16

tile = await tiff.fetch_tile(0, 0, 0)
array = await tile.decode()

# Zero-copy conversion of the rust array into a numpy array
np_array = np.asarray(array)
np_array.shape
# (1024, 1024, 1)

Project details


Download files

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

Source Distribution

async_tiff-0.7.2.tar.gz (5.2 MB view details)

Uploaded Source

Built Distributions

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

async_tiff-0.7.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

async_tiff-0.7.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (4.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

async_tiff-0.7.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (4.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

async_tiff-0.7.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl (4.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

async_tiff-0.7.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (4.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

async_tiff-0.7.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

async_tiff-0.7.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

async_tiff-0.7.2-cp311-abi3-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.11+Windows x86-64

async_tiff-0.7.2-cp311-abi3-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ x86-64

async_tiff-0.7.2-cp311-abi3-musllinux_1_2_i686.whl (4.1 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ i686

async_tiff-0.7.2-cp311-abi3-manylinux_2_28_x86_64.whl (4.3 MB view details)

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

async_tiff-0.7.2-cp311-abi3-manylinux_2_28_i686.whl (4.1 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.28+ i686

async_tiff-0.7.2-cp311-abi3-manylinux_2_28_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.28+ ARM64

async_tiff-0.7.2-cp311-abi3-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

async_tiff-0.7.2-cp311-abi3-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11+macOS 10.12+ x86-64

async_tiff-0.7.2-cp310-cp310-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.10Windows x86-64

async_tiff-0.7.2-cp310-cp310-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

async_tiff-0.7.2-cp310-cp310-musllinux_1_2_i686.whl (4.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

async_tiff-0.7.2-cp310-cp310-manylinux_2_28_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

async_tiff-0.7.2-cp310-cp310-manylinux_2_28_i686.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

async_tiff-0.7.2-cp310-cp310-manylinux_2_28_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

async_tiff-0.7.2-cp310-cp310-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

async_tiff-0.7.2-cp310-cp310-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file async_tiff-0.7.2.tar.gz.

File metadata

  • Download URL: async_tiff-0.7.2.tar.gz
  • Upload date:
  • Size: 5.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for async_tiff-0.7.2.tar.gz
Algorithm Hash digest
SHA256 b2eb1f2671de4e331d1eaef1fd5bb3670e1f26ec7465115be488e60349f2dbce
MD5 f8ca37e7a615a7de7fc23c11308eb5df
BLAKE2b-256 c9816b8198cbf294ab6f50c7b8fd704b773af595c5f40e738358d40c218df236

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2.tar.gz:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1609c254845ab6ddb2db02466fa0fdad5a7410fc24eb652e4ea44891216dd2d1
MD5 411b7896c5eb2063b1b2834b977ebdc9
BLAKE2b-256 cb14f25529fe0de6d97dfc5e6d292b2334f597aa40276b67e19cbe419d0a0e7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3df1bf90c3fa40acc5eef42ca9d927467d4b34d5d1281d9779ec77396bd5a964
MD5 a1a26687e0b5201fca8115019c03edf2
BLAKE2b-256 3dde15c656564e7a77524b29fc15b825d9b6f37d4f3345c69261ad854ef6803a

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed74fc8a7368140d1ff56094513ee9e90ef150d83846710e9436e990d4df056b
MD5 9e7ac138d871ffc36025ec6d6e2bd07c
BLAKE2b-256 705e36b4e1aa54be7ecd44f1845ba041f3fb8182c7825639d2e1e051c59bbad1

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1b6ab725e061c232e4f0a74cd2aa72024a4459f521deeedc807a82a1408b61e0
MD5 e8475834befe78d04c68133f9cd4807a
BLAKE2b-256 e011e5919f111e3dd051803c3fc528a0014bd0a25c83688f758de32a75feba03

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 43b1399633fa5839a705c43b3f01dc9d70de5dd422098130da34a904eb0f5600
MD5 2730d7ead71befed055f4c0ffc38edac
BLAKE2b-256 bcd21bb5fa40d4bdbac4b73e0b52094fd45d77fada866ebe8789c126793a9cc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49473e043083a532dd7f1210363e626f964e65be9ce68ed986a2645005ae0f0c
MD5 e09168055e6c88986319a7f8f0e6c5b0
BLAKE2b-256 ad18509a3541851d014c8a7f4f52032593f8247a28fb7d7ad96e38526222b217

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e75dc8f806f60fe738cce85d5f03a014472db48ed4369b5ba03b185396d09772
MD5 77425e1353050be1f849ad2c0f3e033c
BLAKE2b-256 3e5f83b491bbedf430098aec5c9b57d6a723674297a608817c8fb1dddb8f85a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: async_tiff-0.7.2-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for async_tiff-0.7.2-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 296647adac8b05ae1bacc69feea2e42ce17220d34df1bc419be0daa94364ebd5
MD5 6b6fb7fbef037220bf13b201a5f225e3
BLAKE2b-256 9fcce106fcee3a8cd98d57c8842ba4ff2839fea6ca736970f0899b3162298fc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-cp311-abi3-win_amd64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-cp311-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-cp311-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cb8ec113b5d33ad020556527ae54f2cb86f7e955fedac718779a4b12404688f
MD5 53b90f2538bf5207fe2cc9b0b1ba3270
BLAKE2b-256 8984b889e197f51c82a9470cb294b81c4713725e646ffb6716d078d4004b9569

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-cp311-abi3-musllinux_1_2_x86_64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-cp311-abi3-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-cp311-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed2ca1842f47714a23623125bb864b858db400f9b7af4cae41dfc04f798f2557
MD5 0619a8cc7dd6d0370faa11f45e1d722c
BLAKE2b-256 aa268382fab4dd930c4d96d3a3d243fb0f90750e472ae2a6bbc2c82343df6167

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-cp311-abi3-musllinux_1_2_i686.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-cp311-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-cp311-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 84ca597d8a6354d7b1ae46d2c41432e0dad36ffd4ad54f45aa29d11857506e9b
MD5 c8b4b5f68e9913827ae4faa24acd1558
BLAKE2b-256 3e8fc8a7c48fd966e13ee7390984d43318f71f0eab76889108b3a9621b6ef62a

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-cp311-abi3-manylinux_2_28_x86_64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-cp311-abi3-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-cp311-abi3-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1fb75527b4405107af587e55f4d34e50e8f2f8fe70bfac615e551fbe156cfe11
MD5 2e1c26f311ed6b2e162c1b33d85cf26c
BLAKE2b-256 79ec2f16e32670e9ade6aba6cc0634cc65f232e8f42cdd46e6a883592d8b59ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-cp311-abi3-manylinux_2_28_i686.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-cp311-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-cp311-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62859389a21dc512f5c37fe17729eeeafb66c445374fcf888c1aa2c64bc79ff7
MD5 2d6473840661bea1a0375c4e6f3faf78
BLAKE2b-256 9076342bdaff66caa7b4eb6d224bdf8b5f2815b888c665dd51f9b8f83d45316f

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-cp311-abi3-manylinux_2_28_aarch64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97d77fcad25824321645c3b83da060b1ece827f30e76fe64db74b4df97e5da1d
MD5 8b5d5078205893b93d6276879cc197b5
BLAKE2b-256 c558fc2451333d389da41e8505a8edcc711fcacfb8f038c67a1629d7e87fbdc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-cp311-abi3-macosx_11_0_arm64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-cp311-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-cp311-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 028e9d629dbe8d830581d8e46b92081a656953db020b424615af3c6e51ed9249
MD5 c2c44254b0b89760cbfd0923e45dbf85
BLAKE2b-256 6b8b1591e69991987b43ccd7faecb843bd601dfb08a35395770c1562aaca73da

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-cp311-abi3-macosx_10_12_x86_64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: async_tiff-0.7.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for async_tiff-0.7.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ca3f521d7f3b9303424a141685396044003669f5acfbe10e58aceb10320a7e85
MD5 f6a3fd413d75d78fdfde4e15f652df65
BLAKE2b-256 403e3d0483ae66ce94c35a23a9982025783f7986183cc561756cdac4cd0a32f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-cp310-cp310-win_amd64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4f74d3ec990791b08af6992f0c16b64fea938805f8e26a4931d1ffd2d3d8f60
MD5 be21352584d31bfcc5e0bfe2955e896d
BLAKE2b-256 7c9080b3cab03f0f38ae1d458cfff180930610b2ab27ae63f22146d438301b4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 64fc6dd9459a63bf2fa55fe074bdb940d2889bc2467c528d56fb9bfba57a1be1
MD5 0b7feee7e3f68c261e9ae10b189d0e68
BLAKE2b-256 d2f88a31b5fc877f2d6c6aa9d0a1de9be7dad94426992e473d7baa77b89c9555

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 243804a56a9b2d7af2e50cab6fdca443a829ab6b678c0e6c8ff78610c0098fdd
MD5 a1b22ab26b3cad83d29a6f8a59557d05
BLAKE2b-256 5cb437ad37984dc07d7288d7513752aec5d727ee6257748a11e4a0e4de414e54

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 04c47f376ce9de160915d26a4e8b123572e3c01e74bee36b31cf2bfdff35c91a
MD5 500abd58e417ff253e2b353ff36bfa30
BLAKE2b-256 73cf44caed1bf95954b3cb44b478ad4d42dca639bb50eb9d52c48d9f087f9e71

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-cp310-cp310-manylinux_2_28_i686.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0be9c8dd1cc08e7dbeeb04ed9e1bf2c0b96376c46fd13c3070cee92c5ae461de
MD5 1aa4d9adf09eb592a95da0248f88f28e
BLAKE2b-256 c3b5cca60420f6b17d6ae6f284bbfcda3507433256d18951bd6a0b89022dcee7

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c41fe8198001decfe66ce0d059711b175494915484b85a9bb3c8f2a98ab24350
MD5 4b4f58d708d2bef26909adebc2a0ab87
BLAKE2b-256 9d800620c7da5465e1e5edbb4b70cd2abaedafd931691cb00c3fa6cb2a419dbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

File details

Details for the file async_tiff-0.7.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for async_tiff-0.7.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a5006bfcfccda9a7fe3b2178701dbd04e64eb7fea74c952c277d350c255af18
MD5 6ecf2e036702457264b23b44fb619a96
BLAKE2b-256 49e23f975c66494986edd9c90d5fe8acb1d77e7354b56fa6f0b5d28da8f73516

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tiff-0.7.2-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: python-wheels.yml on developmentseed/async-tiff

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

Supported by

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