Skip to main content

Computing landscape metrics in the Python ecosystem.

Project description

PyPI version fury.io Conda Downloads Documentation Status tests pre-commit.ci status codecov GitHub license

PyLandStats

Open-source library to compute landscape metrics in the Python ecosystem (NumPy, pandas, matplotlib...)

Citation: Bosch M. 2019. "PyLandStats: An open-source Pythonic library to compute landscape metrics". PLOS ONE, 14(12), 1-19. doi.org/10.1371/journal.pone.0225734

Features

  • Read GeoTiff files of land use/cover:

    import pylandstats as pls
    
    ls = pls.Landscape("../data/processed/veveyse-AS18_4.tif")
    ls.plot_landscape(legend=True)
    

    landscape-veveyse

  • Compute pandas data frames of landscape metrics at the patch, class and landscape level:

    class_metrics_df = ls.compute_class_metrics_df(
        metrics=["proportion_of_landscape", "edge_density", "euclidean_nearest_neighbor_mn"]
    )
    class_metrics_df
    
    class_val proportion_of_landscape edge_density euclidean_nearest_neighbor_mn
    1 7.749572 19.102211 309.244705
    2 56.271868 50.599270 229.079970
    3 33.946252 38.167200 253.299859
    4 2.032308 3.722177 552.835154
  • Analyze the spatio-temporal evolution of landscapes:

    import matplotlib.pyplot as plt
    
    input_filepaths = [
        "../data/processed/veveyse-AS97R_4.tif",
        "../data/processed/veveyse-AS09R_4.tif",
        "../data/processed/veveyse-AS18_4.tif",
    ]
    
    sta = pls.SpatioTemporalAnalysis(input_filepaths, dates=["1992", "2004", "2012"])
    sta.plot_metric("contagion")
    

    spatiotemporal-analysis

  • Zonal analysis of landscapes

See the documentation and the pylandstats-notebooks repository for a more complete overview.

Installation

The easiest way to install PyLandStats is with conda:

$ conda install -c conda-forge pylandstats

which will install PyLandStats and all of its dependencies. Alternatively, you can install PyLandStats using pip:

$ pip install pylandstats

Nevertheless, note that in order to define zones by vector geometries in ZonalAnalysis, or in order to use the the BufferAnalysis and SpatioTemporalBufferAnalysis classes, PyLandStats requires geopandas, which cannot be installed with pip. If you already have the dependencies for geopandas installed in your system, you might then install PyLandStats with the geo extras as in:

$ pip install pylandstats[geo]

and you will be able to use the aforementioned features (without having to use conda).

Development install

To install a development version of PyLandStats, you can first use conda to create an environment with all the dependencies and activate it as in:

$ conda create -n pylandstats -c conda-forge geopandas matplotlib-base rasterio scipy openblas
$ conda activate pylandstats

and then clone the repository and use pip to install it in development mode

$ git clone https://github.com/martibosch/pylandstats.git
$ cd pylandstats/
$ pip install -e .

Acknowledgments

  • The computation of the adjacency matrix in transonic has been implemented by Pierre Augier (paugier)
  • Several information theory-based metrics from Nowosad and Stepinski [1] were added by achennu
  • With the support of the École Polytechnique Fédérale de Lausanne (EPFL)
  • The Corine Land Cover datasets used for the test datasets were produced with funding by the European Union

References

  1. Nowosad, J., & Stepinski, T. F. (2019). Information theory as a consistent framework for quantification and classification of landscape patterns. Landscape Ecology, 34(9), 2091-2101.

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

pylandstats-3.1.0.tar.gz (218.7 kB view details)

Uploaded Source

Built Distributions

pylandstats-3.1.0-cp313-cp313-win_amd64.whl (283.6 kB view details)

Uploaded CPython 3.13 Windows x86-64

pylandstats-3.1.0-cp313-cp313-win32.whl (272.4 kB view details)

Uploaded CPython 3.13 Windows x86

pylandstats-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (691.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pylandstats-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (669.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pylandstats-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (646.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pylandstats-3.1.0-cp313-cp313-macosx_11_0_arm64.whl (285.3 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pylandstats-3.1.0-cp312-cp312-win_amd64.whl (283.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

pylandstats-3.1.0-cp312-cp312-win32.whl (272.6 kB view details)

Uploaded CPython 3.12 Windows x86

pylandstats-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (695.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pylandstats-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (673.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pylandstats-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (651.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pylandstats-3.1.0-cp312-cp312-macosx_11_0_arm64.whl (286.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pylandstats-3.1.0-cp311-cp311-win_amd64.whl (283.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

pylandstats-3.1.0-cp311-cp311-win32.whl (272.0 kB view details)

Uploaded CPython 3.11 Windows x86

pylandstats-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (704.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pylandstats-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (681.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pylandstats-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (661.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pylandstats-3.1.0-cp311-cp311-macosx_11_0_arm64.whl (285.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pylandstats-3.1.0-cp310-cp310-win_amd64.whl (283.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

pylandstats-3.1.0-cp310-cp310-win32.whl (272.3 kB view details)

Uploaded CPython 3.10 Windows x86

pylandstats-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (665.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pylandstats-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (645.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pylandstats-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (626.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pylandstats-3.1.0-cp310-cp310-macosx_11_0_arm64.whl (285.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pylandstats-3.1.0-cp39-cp39-win_amd64.whl (283.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

pylandstats-3.1.0-cp39-cp39-win32.whl (272.9 kB view details)

Uploaded CPython 3.9 Windows x86

pylandstats-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (668.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pylandstats-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (647.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pylandstats-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (629.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pylandstats-3.1.0-cp39-cp39-macosx_11_0_arm64.whl (285.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

File details

Details for the file pylandstats-3.1.0.tar.gz.

File metadata

  • Download URL: pylandstats-3.1.0.tar.gz
  • Upload date:
  • Size: 218.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pylandstats-3.1.0.tar.gz
Algorithm Hash digest
SHA256 6903514eac254ddd41482b575501389e92c81b8d79d2ed1585c0d8a0dfe0b382
MD5 0ff56d3618a8cb61500666effa33615b
BLAKE2b-256 57d0e840d1b55a433d15f3930ec1206a1e93e79a1bee0690a8471e190c6bd989

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0.tar.gz:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4947e0fec634f7e41d1cfba89dd27251c4c75a8af1d7ec4865269721eb469f6a
MD5 177c393cbd4799c04d731bb85bc5d94d
BLAKE2b-256 a57cd3ca5b6608e62336b350c93215c86da713e1a6cab87bea927b6867d5d1e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pylandstats-3.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 272.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pylandstats-3.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 36440fbacbcdc0f200e2bce23a8530a41e33456c7d694ca0aba3f615beba3a5a
MD5 4b14c5ecf9ba947cf825107c410e98cd
BLAKE2b-256 8c1954ee556533c216e72329b2b86a54c79c9e4dfe6bb5b29c41f605186ea0cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp313-cp313-win32.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2513e2d552e6a476f97d08ecf456d2956ffefcebc691bd2e33b164c5d5530e2
MD5 287cc8ee770d97bd5e23fdeee6559aa5
BLAKE2b-256 8ae637fbd2c59d00bd62a5d00df9711da4d685c015c378bd5f5d62cc2e34624a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55c5558f053828d485fc5bf5213ed77f70c77459c213103ce67201fc061bf17f
MD5 758795b0e65a6af2942dd2c683486870
BLAKE2b-256 5af2fabadb5e78a45bcecf64650fca18e68f1145b88298170f9fdd66c47b9f43

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7341d06f8790d6ce7c7b32d0a5ef76445383f655201e87a9c0d4eec4a09465ed
MD5 3fbe7f40027e5f305610586c85d4d169
BLAKE2b-256 d0dad43cc0a217297c69fd7aa90b1ec7f4979d88156f51fd6fded8aad24befcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 458226ac5ddf42046a46ec742911a9dca6b7c266067f2b8ae32081929bb32641
MD5 b6211f57c110e8144c4235fe61456cbc
BLAKE2b-256 552017bff85b3f54c3650feda7925dd39e7b8f18306c30440669902205f1c2ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 93ffd529cbec4b124cd4ae2dbabec3d339215839a1a4e57758ba3d9b3b4b7508
MD5 8c17bf098955114a4f817d2147d38ea8
BLAKE2b-256 3cc0d94690b55b519f657f7a5a471a7d716b09e15407b9d259ae86c502651cff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pylandstats-3.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 272.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pylandstats-3.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b6aea90390eac7ffb547f966daede279f34a54f6d0e35772ef9461c268f5c763
MD5 0ac0b15318286c0aa357cc9e48b4ffe2
BLAKE2b-256 9f7fbe061b54ef18f2f07022b7757f5e61f5f478b92d4e0829dd889cb4f514cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp312-cp312-win32.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 534b39c517dd5cef667b2114bfa0170756f2764d2cacfdddb5ff8b74f352455d
MD5 61fc691f8ed0ee4740572b62e8eb0b22
BLAKE2b-256 b617ab6b06fe0965ae4652d0a1248ed84f0735c95ee05490d4125d9fdf2aef8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0c9dcb60c04396a5329374141b193ec73d75e362fdfb36a87cae6ca502a17f4
MD5 5e1f5c8cf518bc618a061e8063a24206
BLAKE2b-256 91d6171e7f3a4ab249fab276f30b64e88ae8b8d27735418576c00daf33ff9303

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38f50c381d1a3209ad21382f2f45a2dccd776880d68b9abddbd86d3e068a9764
MD5 23af1310fdb45b8ed5636c410a3ea4c2
BLAKE2b-256 84b70ec8e6ed946725cbf34482627584e93b89d233b78996e344695a153f591e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e86d3d8a340fdcf467834c992eb545dd600e65d00c5caff8db1337faa5265458
MD5 2e8a22cead6edfc87312383ba3b8c270
BLAKE2b-256 3038c472f3f07a728ce3b9eb871a3831f0bdc6381a81349861271d322078294c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0c0fcd4d869d9a23fc19c355747836c11c6c02182c84f17a856610a04b0727d2
MD5 622fb2c5234f110b9a0a590c141ed469
BLAKE2b-256 39aa55f9afa89cc647cbd3fd1ad2a04d909ba78e416d6b8c9523750a9f23536e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pylandstats-3.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 272.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pylandstats-3.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ccdb9b94ccd9d779351b53bef1f3e1426305b212dbc71767dd91a143d7805ab4
MD5 04bfc25d8999a7999a1bac6118d0240b
BLAKE2b-256 7fe7a12b9882e5e33da7383cda6be73f89ce9d00e866e94bdb60ae6c0c9e2871

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp311-cp311-win32.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 589e5003c12d2daa90ec006d967527ba56e2a2c23117629f8b91f6532476dc44
MD5 b260a0669fc92365ee608b3ae73d877c
BLAKE2b-256 618e3e7f716c13921eb077f600b7cecf84a28d0dc15da07a02c2dcb642c0d467

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a93921889860072ff03c76b8e8f23715b861ec01441bc72f382a30c3856e36bd
MD5 51274e21bd9767457b397948afb551d0
BLAKE2b-256 7b807347a3630240878509d822b901c675602379e7942ce3f6ffca204973ac3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6bf78c1ee1667bfe548309014c371b7e7493a8adc9d2892901999a949e093170
MD5 f0d9852148c9affcf180952848e35d38
BLAKE2b-256 bed0b3dc2ab1886006ac1c34f51a6b34d9db213bb408d6ccc5e213eded83ae1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d568cd522ca1f0733bc92ecb99bcbf09a6057353a54de5a47a538f96af4126f8
MD5 2f93b80068c31047caed09a0ae7316e1
BLAKE2b-256 7402f8e6e90ce621f81c0205116e475946f02cd4487188970448690859ae34d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 21c9acc9158b844d92adf24fa034db4dcbb12e4181a774eb985232ddaec36fa5
MD5 f9e45289371e11fca6a3b9aae2958c64
BLAKE2b-256 6624930d87974e1f419ea577e4ddf492f0b272dc10328d1444ec733a4a7878f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pylandstats-3.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 272.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pylandstats-3.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d212bc57b24b1d3dd0a61b9c24183949e29c6fa50c8e18b00d58431bf3d164b9
MD5 a01fc515a845b5f7755a0830bec00604
BLAKE2b-256 f532946d13a60619f1f4692f46f36dd2eb91d7339d9c6e42c33f416963659bb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp310-cp310-win32.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d773af60b1fdfd128f93c222296268a0acd29ddd5a67eccc7de68cca7c80459
MD5 5dbcc7773d3b1503b0d4d844a715dfb0
BLAKE2b-256 bdb9148196c51c4107c62cd38bd0355a535e948b6698ca711329e2bb55b4181a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de85276ce34c44235cb861b0a44d201dea8b80da5e40e4f2408630ce48766a12
MD5 79b51d6775f75dc7f25ff3d6d22c02bc
BLAKE2b-256 b488976c5469d0e6feb3fe284218655ac24145639966ebf096e65f7c8cba90e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09ce88443ff9eeb2923601ec0032c479a5150129217d5ab699df069cf64c3d03
MD5 ad0e76df8dbcd5d7f93ca8837495ad12
BLAKE2b-256 537d33b4f24d6e418ca8b82d037131c4e2159e0f6270751fe9b9bb195c2086d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a99f1acbf5b4e117b5ecd5889d828418c313addba9c99c9a4c0a0d1c2bb85a55
MD5 6564cdd8033bd4efbf44472f2fddfd8c
BLAKE2b-256 99a1998a32ae3e106832b600bfac8bbe295c229b6f9f05105695a2492832d971

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ddff60622e722f849eddee2567c951c571c6b52f86f37007b08e351281e7ae28
MD5 7206c27c0cc5347520c92bbe92959b38
BLAKE2b-256 91a6eeacb5e30f0b984a55743c603439f7542404bb95aeaff8b84bcf520d5029

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp39-cp39-win_amd64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pylandstats-3.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 272.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pylandstats-3.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3e6605fcfc0c506f06fd882f167b5581924c1f1a881fed6949a5706febacca2c
MD5 0f25e507745449c4ea2ca5db84096ce4
BLAKE2b-256 4be51f6deee9261a90e7303042a99c3dd6e9592cc81b463439ff3e2f6df73fb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp39-cp39-win32.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06c9b09c8a04388c11df31641c7aced88e1023834535d1898b7eabd26610b9e1
MD5 5ed977579295e3f7d6bdd769419ff153
BLAKE2b-256 295d502911e63e0782928bc6240044b017d1182bb899e1fd1fc91c5877672826

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16b4805b824e05eeb1b2debb678f4c65fa8ff36f36c0b5d6b6205bcbf1040004
MD5 399964e00e06b4d2762f5940f07e772c
BLAKE2b-256 4209a4fff014b42f244369c2b65504f035bd1d236a74785c3eda8b70ef842724

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4366603512537f63c0fafe72b41126ba5d50f42d8f99107c26782736cfbf0079
MD5 8051ee0aea35398c11f6e38cd82c30a5
BLAKE2b-256 1df967c4fffd0acf8adaa2c602222a9ab8efd029e8f1d6ac5389d11f8c2399d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on martibosch/pylandstats

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

File details

Details for the file pylandstats-3.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylandstats-3.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f83bb43194c7c45f141e7edd1bf124f378fa859e98043589b9682a77b182f80
MD5 99378860670ed79a38a3efae37f0500c
BLAKE2b-256 a30d9925809a095132b56f2e03186fe0d4f0786d2ee9c5dbdd706f21dbabd25f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylandstats-3.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on martibosch/pylandstats

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

Supported by

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