Skip to main content

GSTools: A geostatistical toolbox.

Project description

Welcome to GSTools

DOI PyPI version Conda Version Build Status Coverage Status Documentation Status Code style: black

GSTools-LOGO

Purpose

GeoStatTools provides geostatistical tools for various purposes:

  • random field generation
  • conditioned field generation
  • incompressible random vector field generation
  • simple and ordinary kriging
  • variogram estimation and fitting
  • many readily provided and even user-defined covariance models
  • plotting and exporting routines

Installation

conda

GSTools can be installed via conda on Linux, Mac, and Windows. Install the package by typing the following command in a command terminal:

conda install gstools

In case conda forge is not set up for your system yet, see the easy to follow instructions on conda forge. Using conda, the parallelized version of GSTools should be installed.

pip

GSTools can be installed via pip on Linux, Mac, and Windows. On Windows you can install WinPython to get Python and pip running. Install the package by typing the following command in a command terminal:

pip install gstools

To install the latest development version via pip, see the documentation.

Citation

At the moment you can cite the Zenodo code publication of GSTools:

Sebastian Müller & Lennart Schüler. GeoStat-Framework/GSTools. Zenodo. https://doi.org/10.5281/zenodo.1313628

If you want to cite a specific version, have a look at the Zenodo site.

A publication for the GeoStat-Framework is in preperation.

Documentation for GSTools

You can find the documentation under geostat-framework.readthedocs.io.

Tutorials and Examples

The documentation also includes some tutorials, showing the most important use cases of GSTools, which are

The associated python scripts are provided in the examples folder.

Spatial Random Field Generation

The core of this library is the generation of spatial random fields. These fields are generated using the randomisation method, described by Heße et al. 2014.

Examples

Gaussian Covariance Model

This is an example of how to generate a 2 dimensional spatial random field with a gaussian covariance model.

import gstools as gs
# structured field with a size 100x100 and a grid-size of 1x1
x = y = range(100)
model = gs.Gaussian(dim=2, var=1, len_scale=10)
srf = gs.SRF(model)
srf((x, y), mesh_type='structured')
srf.plot()

Random field

GSTools also provides support for geographic coordinates. This works perfectly well with cartopy.

import matplotlib.pyplot as plt
import cartopy.crs as ccrs
import gstools as gs
# define a structured field by latitude and longitude
lat = lon = range(-80, 81)
model = gs.Gaussian(latlon=True, len_scale=777, rescale=gs.EARTH_RADIUS)
srf = gs.SRF(model, seed=12345)
field = srf.structured((lat, lon))
# Orthographic plotting with cartopy
ax = plt.subplot(projection=ccrs.Orthographic(-45, 45))
cont = ax.contourf(lon, lat, field, transform=ccrs.PlateCarree())
ax.coastlines()
ax.set_global()
plt.colorbar(cont)

lat-lon random field

A similar example but for a three dimensional field is exported to a VTK file, which can be visualized with ParaView or PyVista in Python:

import gstools as gs
# structured field with a size 100x100x100 and a grid-size of 1x1x1
x = y = z = range(100)
model = gs.Gaussian(dim=3, len_scale=[16, 8, 4], angles=(0.8, 0.4, 0.2))
srf = gs.SRF(model)
srf((x, y, z), mesh_type='structured')
srf.vtk_export('3d_field') # Save to a VTK file for ParaView

mesh = srf.to_pyvista() # Create a PyVista mesh for plotting in Python
mesh.contour(isosurfaces=8).plot()

3d Random field

Estimating and Fitting Variograms

The spatial structure of a field can be analyzed with the variogram, which contains the same information as the covariance function.

All covariance models can be used to fit given variogram data by a simple interface.

Example

This is an example of how to estimate the variogram of a 2 dimensional unstructured field and estimate the parameters of the covariance model again.

import numpy as np
import gstools as gs
# generate a synthetic field with an exponential model
x = np.random.RandomState(19970221).rand(1000) * 100.
y = np.random.RandomState(20011012).rand(1000) * 100.
model = gs.Exponential(dim=2, var=2, len_scale=8)
srf = gs.SRF(model, mean=0, seed=19970221)
field = srf((x, y))
# estimate the variogram of the field with 40 bins
bins = np.arange(40)
bin_center, gamma = gs.vario_estimate((x, y), field, bins)
# fit the variogram with a stable model. (no nugget fitted)
fit_model = gs.Stable(dim=2)
fit_model.fit_variogram(bin_center, gamma, nugget=False)
# output
ax = fit_model.plot(x_max=40)
ax.plot(bin_center, gamma)
print(fit_model)

Which gives:

Stable(dim=2, var=1.92, len_scale=8.15, nugget=0.0, anis=[1.], angles=[0.], alpha=1.05)

Variogram

Kriging and Conditioned Random Fields

An important part of geostatistics is Kriging and conditioning spatial random fields to measurements. With conditioned random fields, an ensemble of field realizations with their variability depending on the proximity of the measurements can be generated.

Example

For better visualization, we will condition a 1d field to a few "measurements", generate 100 realizations and plot them:

import numpy as np
import matplotlib.pyplot as plt
import gstools as gs

# conditions
cond_pos = [0.3, 1.9, 1.1, 3.3, 4.7]
cond_val = [0.47, 0.56, 0.74, 1.47, 1.74]

gridx = np.linspace(0.0, 15.0, 151)

# spatial random field class
model = gs.Gaussian(dim=1, var=0.5, len_scale=2)
srf = gs.SRF(model)
srf.set_condition(cond_pos, cond_val, "ordinary")

# generate the ensemble of field realizations
fields = []
for i in range(100):
    fields.append(srf(gridx, seed=i))
    plt.plot(gridx, fields[i], color="k", alpha=0.1)
plt.scatter(cond_pos, cond_val, color="k")
plt.show()

Conditioned

User Defined Covariance Models

One of the core-features of GSTools is the powerful CovModel class, which allows to easy define covariance models by the user.

Example

Here we re-implement the Gaussian covariance model by defining just a correlation function, which takes a non-dimensional distance h = r/l:

import numpy as np
import gstools as gs
# use CovModel as the base-class
class Gau(gs.CovModel):
    def cor(self, h):
        return np.exp(-h**2)

And that's it! With Gau you now have a fully working covariance model, which you could use for field generation or variogram fitting as shown above.

Have a look at the documentation for further information on incorporating optional parameters and optimizations.

Incompressible Vector Field Generation

Using the original Kraichnan method, incompressible random spatial vector fields can be generated.

Example

import numpy as np
import gstools as gs
x = np.arange(100)
y = np.arange(100)
model = gs.Gaussian(dim=2, var=1, len_scale=10)
srf = gs.SRF(model, generator='VectorField')
srf((x, y), mesh_type='structured', seed=19841203)
srf.plot()

yielding

vector field

VTK/PyVista Export

After you have created a field, you may want to save it to file, so we provide a handy VTK export routine using the .vtk_export() or you could create a VTK/PyVista dataset for use in Python with to .to_pyvista() method:

import gstools as gs
x = y = range(100)
model = gs.Gaussian(dim=2, var=1, len_scale=10)
srf = gs.SRF(model)
srf((x, y), mesh_type='structured')
srf.vtk_export("field") # Saves to a VTK file
mesh = srf.to_pyvista() # Create a VTK/PyVista dataset in memory
mesh.plot()

Which gives a RectilinearGrid VTK file field.vtr or creates a PyVista mesh in memory for immediate 3D plotting in Python.

pyvista export

Requirements:

Optional

Contact

You can contact us via info@geostat-framework.org.

License

LGPLv3 © 2018-2020

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

gstools-1.3.0rc1.tar.gz (12.4 MB view details)

Uploaded Source

Built Distributions

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

gstools-1.3.0rc1-cp39-cp39-win_amd64.whl (689.5 kB view details)

Uploaded CPython 3.9Windows x86-64

gstools-1.3.0rc1-cp39-cp39-win32.whl (649.7 kB view details)

Uploaded CPython 3.9Windows x86

gstools-1.3.0rc1-cp39-cp39-manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

gstools-1.3.0rc1-cp39-cp39-manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

gstools-1.3.0rc1-cp39-cp39-manylinux1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9

gstools-1.3.0rc1-cp39-cp39-manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.9

gstools-1.3.0rc1-cp39-cp39-macosx_10_9_x86_64.whl (694.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

gstools-1.3.0rc1-cp38-cp38-win_amd64.whl (690.2 kB view details)

Uploaded CPython 3.8Windows x86-64

gstools-1.3.0rc1-cp38-cp38-win32.whl (649.9 kB view details)

Uploaded CPython 3.8Windows x86

gstools-1.3.0rc1-cp38-cp38-manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

gstools-1.3.0rc1-cp38-cp38-manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

gstools-1.3.0rc1-cp38-cp38-manylinux1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8

gstools-1.3.0rc1-cp38-cp38-manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.8

gstools-1.3.0rc1-cp38-cp38-macosx_10_9_x86_64.whl (688.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

gstools-1.3.0rc1-cp37-cp37m-win_amd64.whl (686.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

gstools-1.3.0rc1-cp37-cp37m-win32.whl (646.3 kB view details)

Uploaded CPython 3.7mWindows x86

gstools-1.3.0rc1-cp37-cp37m-manylinux2010_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

gstools-1.3.0rc1-cp37-cp37m-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

gstools-1.3.0rc1-cp37-cp37m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.7m

gstools-1.3.0rc1-cp37-cp37m-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.7m

gstools-1.3.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl (690.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

gstools-1.3.0rc1-cp36-cp36m-win_amd64.whl (686.0 kB view details)

Uploaded CPython 3.6mWindows x86-64

gstools-1.3.0rc1-cp36-cp36m-win32.whl (646.3 kB view details)

Uploaded CPython 3.6mWindows x86

gstools-1.3.0rc1-cp36-cp36m-manylinux2010_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

gstools-1.3.0rc1-cp36-cp36m-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

gstools-1.3.0rc1-cp36-cp36m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.6m

gstools-1.3.0rc1-cp36-cp36m-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.6m

gstools-1.3.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl (690.3 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

gstools-1.3.0rc1-cp35-cp35m-win_amd64.whl (682.8 kB view details)

Uploaded CPython 3.5mWindows x86-64

gstools-1.3.0rc1-cp35-cp35m-win32.whl (643.8 kB view details)

Uploaded CPython 3.5mWindows x86

gstools-1.3.0rc1-cp35-cp35m-manylinux2010_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

gstools-1.3.0rc1-cp35-cp35m-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

gstools-1.3.0rc1-cp35-cp35m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.5m

gstools-1.3.0rc1-cp35-cp35m-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.5m

gstools-1.3.0rc1-cp35-cp35m-macosx_10_9_x86_64.whl (682.6 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

File details

Details for the file gstools-1.3.0rc1.tar.gz.

File metadata

  • Download URL: gstools-1.3.0rc1.tar.gz
  • Upload date:
  • Size: 12.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1.tar.gz
Algorithm Hash digest
SHA256 b7e264733fef5e9ed79a02da83f8ae78b6eeb23ea4386b59eeee72c8ae2ef849
MD5 aa23166ea0361438b2c1ab5845266745
BLAKE2b-256 27e1f2047fbd2546725c8b57c91e35ddf83dc197b47b80689288ff01d38aa8d0

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 689.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 95c79e61e84f363de1a0231a86e2114f97634a1794a8bba17b9715b7245ef161
MD5 3595b2e780565e0d0ab4a9b78cd63a16
BLAKE2b-256 a6c1e099112127fbc26b72ec4a2cfd6d248f394a81c1b07bf3de7cd6c6982cf3

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp39-cp39-win32.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 649.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ab03d11edf3038de5a048f736884f2a365fc4758cb3a49ddf721382dcd3b778d
MD5 a3d9990cf1cb314ae77f7ca2dbcf48ca
BLAKE2b-256 44a026d0ddd11d61155a4e912855c567344b2fe601dd241e9237aa9f0c413ef6

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fd56e47cb707d4ceae4bf76b6229854b9bb5d8920b466a247613d442aaa55c06
MD5 f67fc73bb5a4b3e7be887d702ae201fd
BLAKE2b-256 40b1958b357fda7122967cdc44fd179854641ae366f3590f32570f61dfeec811

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f7dd0f67ccaad49c9341efebcfcb01da6b0f246bebeae884bf0aff4e9208b1e3
MD5 0e752dd99d9cd229c4bb24d8219bfa9e
BLAKE2b-256 881361d8a8419fb40833de61e55649471526456d6beccc330f8aa338b9390f5c

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bb479d2c4afcc426423f9367d9adbc76f376d2685c5b6c3eb03dcbb5d289d1c6
MD5 323413856c6d5bd8245281cb66d0d3d5
BLAKE2b-256 053e242e647018f91886e1ff864ebe28ab6a340b8daf1f1d7b9e3607ff8c6e9b

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8401200716f34e1fbd231afd3fd3c60dabb6f18bc8506c258c9869622f713f3e
MD5 11b62e1ac3bc539c5f3d2161c0eae3b0
BLAKE2b-256 a0847ad27337ce4c14cd37168248f256bb48aceea8f44b7cc41a9aeb3136ad21

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 694.9 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1251a914172701b4e1291aadad7b89e8892269282991a1d9d9b569ed772b9ad
MD5 2aaf0d80d06ddcf7b65e779f8d04eaea
BLAKE2b-256 585b79aa8cea72409c0ccd75baf63943f3f229341336d9ddf393c160692ee6d2

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 690.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f23a298c336a83b07f6ea7d3088208a7263a5dfc41399d9dda274254df4e97dd
MD5 efa55dd92441e394b778397a5907b18e
BLAKE2b-256 d05d84d2bc7f3ef27abddc1741cc22209c8a690ef2df3e4b91b49cc56b5f908e

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp38-cp38-win32.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 649.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 03e28100ede8c8ad4ea150602eb5dd2f47a081d80f5f352d18741b34ec7a130c
MD5 da8090bb6bce0aaa4f5c76cbb7b07c16
BLAKE2b-256 5335b87a2dde22c7d27337ac55d8caed4cc8a2aee80d5af200ca229ac0fbfcac

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5101f9ab1bc97c3e533093c47b9cd082f268fff8a4bc292e3417a4f88c567814
MD5 f5de348f70366a5dc23add5549ff3559
BLAKE2b-256 e61d6205a926464a390806e7e9487b4767cc4e099b87c13012c64ed56b7bcc2c

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cf3dbc08a48cc7061a2e77ee94b895b491135a43a70b7af39522188e48fe3f02
MD5 6723e4d22abf03982e16b3599d3aa792
BLAKE2b-256 4c0938326637a3079c6a8d970afc81ca2526448623d4236ca8bc1912c57ed760

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e1c92dc74b3994363f2c11750b20fa6e47a690e563df3b42ceac53d6a15caf79
MD5 f71eb0c1088b78fbe2cbe93759241dc7
BLAKE2b-256 71326afec42ed39fa506afd40fdf7cad8c50ee3ffc211f14d47e89069fa50f06

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 94bbd42a70e4d36fff34dc2f0efdd640c83d0f3d6142ad040b90334390a64276
MD5 d5067a5a55524776d678da8ae0cde05d
BLAKE2b-256 a1e4163c8f59a7f551df55d4036abe4bf5c58fd6abf45a996ce94c2ab6b93b37

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 688.5 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7edae18be060503b97ffd1c58205738704efad40f002bdeef6e4c78441793878
MD5 d9be77b9f8a9f7beee7d040cbd13123e
BLAKE2b-256 4cc93bfbd8413fa0c1ecaab23d024527b028c63dcf2135e3f392e0a9354e76c1

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 686.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 89d484cbf503c685a4cd4977d5e53145e7dc9117d9c325a0b4f99aa5faf6f27f
MD5 99d235fe27b3718bc9b8a140956f6ccc
BLAKE2b-256 bbc1c3a0afc695d32f6c2c9c384aa6beafebad81ebe5f944d64b932e464c6950

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 646.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 eebcd08d0b90389aa8b648149df05363e87d4e1aa1badc777a9ca2afa1c33334
MD5 29a34beebe617e0de2a60ec9d47337d5
BLAKE2b-256 ed92c8fe4026df5368944579c652b719584b7e580b7b0a25d90f556e12fc51e3

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6f107aa1d49cf760be9e8141ef78d742793af2740b8726e5fb2c90fd68b83eb8
MD5 636e30544ec6076c3a4ffb63e5137b7c
BLAKE2b-256 198337d76d9ef3e764f628e10dc4d893ed4ff3858e2b1de17ca878dea779c79c

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ebe4ca4b0a315f5701e9e538a68bd67e18d0ef1e391d14518cd878792b163396
MD5 cabc23a2c69a9a5d960a98bf6f655d3a
BLAKE2b-256 3249b9948a7084413f36bf82526408498418e1179202d7edd0ed4eeae67ba7eb

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 47b62f17f5161a9cde6611ecc2dd6a85267b4f963cd21bf1f040069b52b85e96
MD5 c909a5bb919e015651460f554903b3ed
BLAKE2b-256 dd6a98cd5f4f33fc959e79b8c2f92b5fde29303511d11a6f77dda365e1ad09b1

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e9cfc7a212f35db17b5c41a81daf0313a0891de0f6f71ec52423ec38a1adafb0
MD5 5f65d95fd3a132f3d780266ebfc5ac1f
BLAKE2b-256 23c1d0c4fdc9cac7c57febbc9ac889d17dad3209f05bb3b9636088538c49f537

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 690.6 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 934c5fd67b6fdc33e81708407dade0bf9bdd33e7d32f5e91aa0fcf183fab22fe
MD5 a4b32cecb475a5e3934903d7cf21b59a
BLAKE2b-256 839528cd48316a891da0ea014a508927ad8439dbab82d231d811414157e01d70

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 686.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4feb4518b37838a80ae72ccfdf93f573e58579eabc3b1b1980e07448fd689c58
MD5 ca96745197d94305727a37c7159895a6
BLAKE2b-256 83c6876db62792b7e1207cc0f6166be7e38d4c31344c3af785677f617384be52

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 646.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 15fbc75e8f0b2540869a8a17bc146a2177c9e3c18ea378760e7b0b41f2323274
MD5 05d598b17a62caf483c1f37d6918d5cc
BLAKE2b-256 96c59c52abc1f95be2201c35c02e7d43f91bf38edae1e80f57394e45387e79ee

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a128f4bc27810e99a6540a5603d03788adda3a21f094c16ec743459ecdfcc37c
MD5 41fc6a8721e5da48b35d99011934ff7b
BLAKE2b-256 4402181ed8f5a26e970f99ccccb87d674f5f95211f0f1abaf3b1d8c15931f1e7

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2c0ec7c1a431354ce7f393034ed4c389cc3bc717c945f53304cae2d27722f0c2
MD5 aa9803fd88b1a7db94dbbc8a5c79b7a3
BLAKE2b-256 fd38cf32600308f015a9716e6e0625a5c43038ee3b30208c3d3b91f7bb65f036

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c245d96718e662492185b461e0af1474d412531031f2d19a8ddc9a8d98599294
MD5 bdb5bbda4b7821367d7771ecc0a7b652
BLAKE2b-256 61a914244f7e3641a636b7adfa0ea2908a110561c6792b497c04d979ff6193e7

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 03216653b5a219c5fe5f7130760e37cfac5a6f2a4e89f46139d1b343d1f61630
MD5 a1ed8941e8cd6ce0a2bf321f92d33391
BLAKE2b-256 408707ec10cf258e7818eac388c5cd7342f8460dbd3271e02074402f363eb2a7

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 690.3 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71444ec4a42c489d133813286d6b257b90c974a6698e0c51d3c0d6d412cad2f1
MD5 6791e38d028d3c6e33cabf6b272f60a9
BLAKE2b-256 9480369f16b8e6a95e50b92925c0776ca425217a4b55e11f9b6be70e9d0f0a54

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 682.8 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 a362296610be610637a3ab5973019fb8332e22036f1e3b18ec4563a895c60c10
MD5 2529e19b59086b3e99df1311c98ce962
BLAKE2b-256 0fc1cd7b9a04adb1154034b9dc56058f199fc6ce8724a8c87b2ff0edf523bf82

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 643.8 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 771be3104ab69c8657d2862f5695e17d69cb9e7771698f679a62b5b5b13f9467
MD5 87c466d9cc94a3084a486583bfb80f42
BLAKE2b-256 ca765130fca7284ad0707f7adfde03b827eed3f711906088bf9f1f24e094b7be

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 29c25d19045fb0669da2efaae2db77e2c556074965d5cdcac03b5debc223da72
MD5 7df628cd8a89ffc69682980f3545e0ca
BLAKE2b-256 b3b400d2aea9f8aa6aaff332ae6f8bed9622ac2feb93da8b7e41dc2b169c06c7

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ae21f39bac3afb172ca168a0e44d98e8c94b3862e1c5acef1b507069b938b7e4
MD5 eccca15939f3a21e205e52a82d3f6206
BLAKE2b-256 7f973175740f2ed3144e1762a9fff5216e88f223e953ab6ec6960ba5deccf072

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 843be781cdc5336e3ff2d83369e454b5fcd55b10efd89a1e32eee206c68a7d45
MD5 cd053289af88adb9644adf632e355621
BLAKE2b-256 57d30f4faae1ce14c65a1cd19f213707a1faa25d9a9031ee962afe841f0cddc3

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2a2de4c5209c59d27a018310786a3c40817e35e3a02d160bace43c15252aac96
MD5 c939eae15ae6416f379b32f19bf28671
BLAKE2b-256 e36ba1b6546e73f73ebe33af00fa89c798b13cf8bf141569740c56b24d05ec16

See more details on using hashes here.

File details

Details for the file gstools-1.3.0rc1-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gstools-1.3.0rc1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 682.6 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for gstools-1.3.0rc1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 177c0bd6436fe5fe4edca6d54e6aa8a484494de778e8d40b115e2fe8ef78cb6b
MD5 e8bd5fdef759f123c3473e8a4d3e4e56
BLAKE2b-256 7eefa9f1c75586fea1ab10064ed7194be987d096feccac4ea366e331dc301198

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