Skip to main content

A python package for processing Polarimetric Synthetic Aperture Radar (PolSAR) data.

Project description

A python package for processing Polarimetric Synthetic Aperture Radar (PolSAR) data.

Silver Medal Build Documentation Status

image

image image

GitHub commits License: GPL 3.0

Jointly Developed By

MRSLab
Microwave Remote Sensing Lab (MRSLab)
Indian Institute of Technology Bombay, India
MIRSL
Microwave Remote Sensing Laboratory (MiRSL)
University of Massachusetts Amherst, USA

🏆 Awards & Recognition

ISRS I-CON (Silver)

This award was presented by the Indian Society of Remote Sensing (ISRS) during the Innovation Contest for Geo Spatial Information Technology-2025.

Why this work was recognized: Our project was honored for addressing the "Big Data" challenges of the current generation of SAR missions (such as NISAR, EOS-04, BIOMASS, and Sentinel-1). The judges recognized PolSARtools for:

  • ☁️ Cloud-Native Innovation: Bridging the gap between raw polarimetric data and Analysis Ready Data (ARD) using cloud-optimized formats.
  • 🔓 Open Science: Promoting inclusive research by lowering the coding barrier through our integrated QGIS plugin.
  • 🏗️ Scalability: Providing a reproducible architecture capable of handling the petabyte-scale influx of modern satellite imagery.

💠 General Information

This package generates derived SAR parameters (viz. polarimetric descriptors, vegetation indices, polarimetric decomposition parameters) from various SAR sensors or input polarimetric matrix (S2, C4, C3, T4, T3, Sxy, C2, T2).

💠 Installation

  1. Install gdal Package

    conda install gdal -c conda-forge
    
  2. Install polsartools Package

    You may choose any of the following options

    • a. pip (stable release):

      pip install polsartools
      
    • b. conda (stable release)

      conda install polsartools -c bnarayanarao
      
    • c. GitHub (Weekly Build)

      pip install git+https://github.com/polsartools/polsartools.git#egg=polsartools
      

      Use this if you encounter errors like: AttributeError: module 'polsartools' has no attribute 'xyzabc'

      Note for Windows users: If installing via GitHub (option c), make sure to install Microsoft C++ build tools first. Download here: https://visualstudio.microsoft.com/visual-cpp-build-tools

💠 Example Usage

The following code example demonstrates a typical processing pipeline using polsartools on NASA-ISRO SAR (NISAR) Geocoded Single-look Complex (GSLC) data. It includes polarimetric covariance matrix (C3) extraction, Pauli RGB visualization, speckle filtering, H/A/α decomposition, and plotting in the H/α and H/A/α feature spaces.

import polsartools as pst

def main():
  # Generate C3 from NISAR GSLC full-pol data with 5x5 multilooking
  pst.import_nisar_gslc('path/to/nisar_gslc.h5',mat='C3',
                    azlks=5, rglks=5,
                    fmt='tif', cog=False, 
                    )

  # Visualize Pauli-decomposition RGB
  c3path = 'path/to/nisar_gslc/C3'
  pst.pauli_rgb(c3path)

  # Apply 3x3 refined-Lee speckle filter
  pst.filter_refined_lee(c3path,win=3)

  # Perform H-A-Alpha decomposition
  c3_rlee = 'path/to/nisar_gslc/rlee_3x3/C3'
  pst.h_a_alpha_fp(c3_rlee)

  # Generate H-Alpha 2d plot
  entropy_path = c3_rlee+'/H_fp.tif'
  alpha_path = c3_rlee+'/alpha_fp.tif'
  pst.plot_h_alpha_fp(entropy_path, alpha_path,
                      ppath='./halpha_2D.png')

  # Generate H-A-Alpha 3d plot
  ani_path = c3_rlee + '/anisotropy_fp.tif'
  pst.plot_h_a_alpha_fp(entropy_path, ani_path,alpha_path,
                      ppath='./haalpha_3D.png')

if __name__ == "__main__":
    main()

More example use cases and notebooks are provided at polsartools-notebooks repo. Detailed documentation is available at polsartools.readthedocs.io

💠 Available functionalities:

Full list of available functions is provided here : Functions

🎨 Logo Vibes Explained

The package logo visually encapsulates key concepts in PolSAR data processing:

  • Poincaré Sphere Representation: Central to the logo is a stylized visualization of the Poincaré sphere, highlighting the diversity of polarization states encountered in SAR imaging.
  • Huynen Polarization Fork: A dotted elliptical curve represents the great circle containing Huynen's characteristic polarization states: co-polarized maximum, saddle point, and minima. These vectors lie in a common plane, revealing target symmetries and scattering behaviors.
  • Quadrant Background: The four background squares reflect brightness variations in SAR intensity data, showcasing:
    • Bright vs. dark reflectivity regions
    • Co-polarized (diagonal) vs. cross-polarized (off-diagonal) intensity distribution

Designed to reflect what this package does best: demystify PolSAR, one pixel at a time.

💠 Contributing

We welcome contributions! Whether it's fixing bugs, adding new features, or improving documentation, your help is greatly appreciated.

How to Contribute

  1. Fork the repository - Fork this repository to your GitHub account.

  2. Clone your fork - Clone the repository to your local machine:

    git clone https://github.com/polsartools/polsartools.git
    
  3. Create a branch - Create a new branch for your changes:

    git checkout -b feature-branch
    
  4. Make changes - Implement your changes or additions.

  5. Test your changes - Run the tests to ensure that your changes don’t break anything.

  6. Commit and push - Commit your changes and push them to your fork:

        git commit -am "Description of changes"
        git push origin feature-branch
    
  7. Create a Pull Request - Open a pull request to the main repository with a clear description of the changes.

💠 Bug Reporting

If you encounter a bug or issue, please follow these steps to report it:

  1. Check the existing issues: Before submitting a new bug report, check if the issue has already been reported in the Issues section.

  2. Submit a bug report: If the issue hasn’t been reported, please open a new issue and include the following information:

    • A clear description of the problem.
    • Steps to reproduce the issue.
    • Expected vs actual behavior.
    • Any error messages or stack traces.
    • Relevant code snippets or files if possible.
    • Version of polsartools and Python you're using.

Click here to report a bug

💠 Feature Requests

We’re always open to suggestions for new features or improvements!

  1. Check existing feature requests: Please make sure the feature request hasn't already been made in the Issues section.

  2. Submit a feature request: If it hasn’t been requested already, please open a new issue with the following information:

    • A clear description of the feature.
    • Why you think this feature would be beneficial.
    • Any specific use cases or examples.

    Click here to request a feature

💠 Cite

If you use polsartoos in your research or projects, please cite the official journal paper:

Bhogapurapu, N., Siqueira, P., & Bhattacharya, A. 2025. polsartools: A Cloud-Native Python Library for Processing Open Polarimetric SAR Data at Scale. SoftwareX, 33, 102490. doi: 10.1016/j.softx.2025.102490

BibTeX

@article{bhogapurapu2025polsartools,
title = {Polsartools: A cloud-native python library for processing open polarimetric SAR data at scale},
author = {Narayanarao Bhogapurapu and Paul Siqueira and Avik Bhattacharya},journal = {SoftwareX},
volume = {33},
pages = {102490},
year = {2026},
publisher={Elsevier},
issn = {2352-7110},
doi = {https://doi.org/10.1016/j.softx.2025.102490},
}

💠 Funding

This research was partially supported by NASA through the NISAR grant (#80NSSC22K1869), with additional support from the Multi-Mission Algorithm and Analysis Platform (MAAP).

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

polsartools-0.10.tar.gz (6.1 MB view details)

Uploaded Source

Built Distributions

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

polsartools-0.10-cp313-cp313-win_amd64.whl (497.3 kB view details)

Uploaded CPython 3.13Windows x86-64

polsartools-0.10-cp313-cp313-win32.whl (479.8 kB view details)

Uploaded CPython 3.13Windows x86

polsartools-0.10-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.6 MB view details)

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

polsartools-0.10-cp313-cp313-macosx_11_0_arm64.whl (515.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

polsartools-0.10-cp312-cp312-win_amd64.whl (561.8 kB view details)

Uploaded CPython 3.12Windows x86-64

polsartools-0.10-cp312-cp312-win32.whl (479.8 kB view details)

Uploaded CPython 3.12Windows x86

polsartools-0.10-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.6 MB view details)

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

polsartools-0.10-cp312-cp312-macosx_11_0_arm64.whl (515.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

polsartools-0.10-cp311-cp311-win_amd64.whl (493.1 kB view details)

Uploaded CPython 3.11Windows x86-64

polsartools-0.10-cp311-cp311-win32.whl (477.2 kB view details)

Uploaded CPython 3.11Windows x86

polsartools-0.10-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

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

polsartools-0.10-cp311-cp311-macosx_11_0_arm64.whl (513.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

polsartools-0.10-cp310-cp310-win_amd64.whl (490.4 kB view details)

Uploaded CPython 3.10Windows x86-64

polsartools-0.10-cp310-cp310-win32.whl (474.0 kB view details)

Uploaded CPython 3.10Windows x86

polsartools-0.10-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

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

polsartools-0.10-cp310-cp310-macosx_11_0_arm64.whl (509.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

polsartools-0.10-cp39-cp39-win_amd64.whl (491.7 kB view details)

Uploaded CPython 3.9Windows x86-64

polsartools-0.10-cp39-cp39-win32.whl (473.8 kB view details)

Uploaded CPython 3.9Windows x86

polsartools-0.10-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

polsartools-0.10-cp39-cp39-macosx_11_0_arm64.whl (509.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

polsartools-0.10-cp38-cp38-win_amd64.whl (489.7 kB view details)

Uploaded CPython 3.8Windows x86-64

polsartools-0.10-cp38-cp38-win32.whl (474.0 kB view details)

Uploaded CPython 3.8Windows x86

polsartools-0.10-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

polsartools-0.10-cp38-cp38-macosx_11_0_arm64.whl (508.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file polsartools-0.10.tar.gz.

File metadata

  • Download URL: polsartools-0.10.tar.gz
  • Upload date:
  • Size: 6.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for polsartools-0.10.tar.gz
Algorithm Hash digest
SHA256 0b2179057512da5dae34002bb47f96abc3aec6a41c47e5a5668f39d96c0aebd1
MD5 52d0942289e7bbb4cb39b888cf84daa9
BLAKE2b-256 77085f325e4a0515015b8e54fffff49d76861260d84a80e3b98df58d864d3cc0

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: polsartools-0.10-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 497.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for polsartools-0.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 61721e8fe130223d2b37be829825d3cae364884bba51ad70c3020c0b30e22823
MD5 84bdb9c73273a7a34de681e3e81b58c0
BLAKE2b-256 73a578a52cb2ab6f589f6ad9e9626e66041a06ec2cccb74dc5d34cc78e1f56ac

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp313-cp313-win32.whl.

File metadata

  • Download URL: polsartools-0.10-cp313-cp313-win32.whl
  • Upload date:
  • Size: 479.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for polsartools-0.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 38f72eb026a24d612b2003fc3931bb1ae3380a2767850aeb00eb28cbe074b06c
MD5 e1cba340cf6310c09dde81d8b5cf80e2
BLAKE2b-256 c878cc9dbf900faf2d0035c0786eb3416e5e057a7b2e5ad08229406414358995

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for polsartools-0.10-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fe48a757fe969afaa21a23844d321a4512710316c1f94a7c94e4630fdd5c8b3
MD5 22fdda10ab1e249eea33c78ed4808211
BLAKE2b-256 6c77b9bcb7dbe751f913195d8d5da1bc4ebce85f50760ce8177935d87fca3164

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polsartools-0.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c11dd1e1150782da0fc82a103383a03e9eae943aa2e15257feebd7b73b8e614f
MD5 4e672c769017f24074cba6a01b7ce738
BLAKE2b-256 93e7f6e52b5430cd397779905fd5fa8f72019bae36e7020cb4956b800d96bc66

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: polsartools-0.10-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 561.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for polsartools-0.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e97b571d21b90843aac1c1210e86a3e817fb9914f63a8b64df1cd0146e213c0c
MD5 1bc12891fbc956165ab49b53a08abfa1
BLAKE2b-256 340bd82c9371146ef9b7e46f9c8ef7616caf0f7a4c239b6ad9c354b3b4267327

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp312-cp312-win32.whl.

File metadata

  • Download URL: polsartools-0.10-cp312-cp312-win32.whl
  • Upload date:
  • Size: 479.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for polsartools-0.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 780266c92e130c22f7b6ea4534f87b6036551d146be42cdeaf7cf36db1e442f8
MD5 4f4bab81cb5ab22238e9b38181eff140
BLAKE2b-256 177e4b5cf226aa088b281ba62f5cfdf2aae4fb08b48aaf1be8e8469dc13d5ee5

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for polsartools-0.10-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b2b4e6e991c712219f94bbe400ffb319082e2edcaaa55a510dc94c6c903aaf1
MD5 5bc9b38fad3c471bdc22b2b71f8bfd80
BLAKE2b-256 a2fd8a469ba2e56a3acb5303e01c1afc6d4306c36b559448d7c015ba63345293

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polsartools-0.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7b9b76a670f2e707966861e139be3c15ea03112eb93f1b20cea6ee8ccc3b1d1
MD5 3db557667febeb2d1b2685eef736b6c9
BLAKE2b-256 1cabfe72199aa4675e5d9cf6023b68326ec8148eefdbb569c53d2aba763538d6

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: polsartools-0.10-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 493.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for polsartools-0.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 78863f9a83b46c5849a857235fabbfa7d5da1e38b1f22f047d78599567afd50a
MD5 4705f1fc4a87d9b2851fc6e3fc8da046
BLAKE2b-256 41717d2960cae4c7ad3c792c24582116a320d960700d19028c0bee881916f3af

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp311-cp311-win32.whl.

File metadata

  • Download URL: polsartools-0.10-cp311-cp311-win32.whl
  • Upload date:
  • Size: 477.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for polsartools-0.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3df357700595b72817648bbe32d984cb79c37a7a2ac8e42098b789e49b0e1569
MD5 e73cd95c059320fb9c444890057a4ca1
BLAKE2b-256 6b034f4b2a76e7d800a6150dca9535b4058882d97acbb8e7fea28e7bbf387c32

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for polsartools-0.10-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 56f8507620b0a1f533346e8dd428282cd4b7022afca2d186dc8e668fae949f05
MD5 45dd5118e61a61b1f589eda4f9ccbc2a
BLAKE2b-256 b11f837e63052a9bb7b94677a2c03304d8a7c5e2c0db254f65b7fc17fa5fa8c2

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polsartools-0.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d042d368a2844472a4615732e291ac3e30059e221a3ec7018939080d0a1e86b
MD5 c8289f9f024b411399ae0e8438447405
BLAKE2b-256 646acf547fadac097ddc074d4a69015bab1ec9a4e9c434e766a85dfff04ee733

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: polsartools-0.10-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 490.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for polsartools-0.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 44729ca61db1a54b485cfa9815b2a50cf9c3a782c564df927bae33730b4ce43e
MD5 2ea30373f1d098e1852f68e2adde23d8
BLAKE2b-256 b6723932c253fd7b527b60262391a070bcafd9b7bef69179cae609a22756c3ea

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp310-cp310-win32.whl.

File metadata

  • Download URL: polsartools-0.10-cp310-cp310-win32.whl
  • Upload date:
  • Size: 474.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for polsartools-0.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 20406e306f04573b400e82afc4f25881902842634357329c52e4cf65e9e15d02
MD5 b222213c2ce73f1f2f5c22df317bb814
BLAKE2b-256 f4fbca238acaf6d7a92ae4355e0b0745ac3ac848ea39862b684411ce94510c6d

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for polsartools-0.10-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ea42f171b5d0ed510d0c73f0b72411c24ad37deae2a8949adcb54ee60c6d68c
MD5 19e3c2943a51d03bc538d130d5797229
BLAKE2b-256 8ea5a978e1f3e6d29c159d5d68c9a02120066ea911b9c4274f79e4ab6ccd5149

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polsartools-0.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d22b55217211d634807a20840771e285a4942065d643fbfe96dfd682625f408e
MD5 90e895637665f36503ba0b0ee058c0e8
BLAKE2b-256 f1ddf65118e0205ed39dd5bb83f049d7284d2d7704b9c5495267d8711ea4e620

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: polsartools-0.10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 491.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for polsartools-0.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0c3d424705cbe2718a80031678e60918bc27f7ec2ccc2f2063efe3d0aec80aa6
MD5 e0000eb5421a34043373cd769969ff30
BLAKE2b-256 d90621060961389e369cbc96546ebaf86786f00cbba44aba488bbf493aa2bbe1

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp39-cp39-win32.whl.

File metadata

  • Download URL: polsartools-0.10-cp39-cp39-win32.whl
  • Upload date:
  • Size: 473.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for polsartools-0.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6dc722cb0e129ef8cd3af17035e13cd1ef9c93f5c5d2c32d3346d91013a53d24
MD5 8492326a2c06bf91defc99a46ab4810f
BLAKE2b-256 5afcfe55262b43b7d707646dcf0f99259d44ab3235b041669e4530df0f00252f

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for polsartools-0.10-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7bed0e3f781b65130c721dfa6472ded1bfbbeeb377914fe5656efb0d2dc08f6d
MD5 c39bf410fcbf0eb231683dfde0fc7dc7
BLAKE2b-256 5b803910e18e5ce4de09d60894a55b33587e2c18c2cde27e8d1a1889b651b391

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polsartools-0.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea18b68396fb5d0d085add108562b853b068a2589c16d58706542a80fd6adde2
MD5 bc76a817915905339a41dcda0ce56d55
BLAKE2b-256 00c5f0f21ff440f97d78434da7145b071cedcf88f94661a757ce95ac07f0d69b

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: polsartools-0.10-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 489.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for polsartools-0.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fecff5ac674edebbff0290b47067f4462ebea3449482e00f298cfacafa7a7d52
MD5 883e5cb713eb0226756e4367bce5366a
BLAKE2b-256 e7d49800b000fc67e87e778608349e4519a6e6d257d05260792930c99e3ad9a5

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp38-cp38-win32.whl.

File metadata

  • Download URL: polsartools-0.10-cp38-cp38-win32.whl
  • Upload date:
  • Size: 474.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for polsartools-0.10-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 af271b10ad2c20d31780d73e01b961a4534fecea9cbbda43146f69f47673c965
MD5 495866316dab87928ef7566534b20119
BLAKE2b-256 fbc29b479c4c0ef979682a433a3a2e3966872d85dc9f4eed7eb756e073e7c814

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for polsartools-0.10-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 273e5e763969b8d218d1f1f328658e0dd3a9c4b786306815a30d503e24def01b
MD5 6f91bbde88fd5717ee1951ebccb1006c
BLAKE2b-256 cc5c455bfcc845e71b5ed380985135b4a2d2005a7cfeb77b665a084de1d2f1fe

See more details on using hashes here.

File details

Details for the file polsartools-0.10-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polsartools-0.10-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81323c4dbcb78211c80b9de0193cc048d09c9d1075873c4dacf0e1493ceb1016
MD5 fadc7630bd3d9f68cc7db460e5039481
BLAKE2b-256 32f618e945696d031444b2f2aca6dd319bd034388d8cb722aa8f679357fa6a93

See more details on using hashes here.

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