Skip to main content

pentapy: A toolbox for pentadiagonal matrizes.

Project description

Welcome to pentapy

status DOI PyPI version Build Status Coverage Status Documentation Status Code style: black

Purpose

pentapy is a toolbox to deal with pentadiagonal matrices in Python.

Pentadiagonal linear equation systems arise in many areas of science and engineering: e.g. when solving differential equations, in interpolation problems, or in numerical schemes like finite difference.

Installation

The package can be installed via pip. On Windows you can install WinPython to get Python and pip running.

pip install pentapy

There are pre-built wheels for Linux, MacOS and Windows for most Python versions (2.7, 3.4-3.7).

If your system is not supported and you want to have the Cython routines of pentapy installed, you have to provide a c-compiler and run:

pip install numpy cython
pip install pentapy

To get the scipy solvers running, you have to install scipy or you can use the following extra argument:

pip install pentapy[all]

Instead of "all" you can also typ "scipy" or "umfpack" to get one of these specific packages.

Citation

If you use pentapy in your publication, please cite it:

Müller, (2019). pentapy: A Python toolbox for pentadiagonal linear systems. Journal of Open Source Software, 4(42), 1759, https://doi.org/10.21105/joss.01759

To cite a certain release, have a look at the Zenodo site: https://doi.org/10.5281/zenodo.2587158

References

The solver is based on the algorithms PTRANS-I and PTRANS-II presented by Askar et al. 2015.

Documentation and Examples

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

Solving a pentadiagonal linear equation system

This is an example of how to solve a LES with a pentadiagonal matrix.

import numpy as np
import pentapy as pp

size = 1000
# create a flattened pentadiagonal matrix
M_flat = (np.random.random((5, size)) - 0.5) * 1e-5
V = np.random.random(size) * 1e5
# solve the LES with M_flat as row-wise flattened matrix
X = pp.solve(M_flat, V, is_flat=True)

# create the corresponding matrix for checking
M = pp.create_full(M_flat, col_wise=False)
# calculate the error
print(np.max(np.abs(np.dot(M, X) - V)))

This should give something like:

4.257890395820141e-08

Performance

In the following a couple of solvers for pentadiagonal systems are compared:

Performance

The implementations of pentapy are almost one order of magnitude faster than the scipy algorithms for banded or sparse matrices.

The performance plot was created with perfplot. Have a look at the script: examples/03_perform_simple.py.

Requirements:

Optional

Contact

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

License

MIT © 2019 - 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

pentapy-1.1.0rc3.tar.gz (236.2 kB view details)

Uploaded Source

Built Distributions

pentapy-1.1.0rc3-cp38-cp38-win_amd64.whl (206.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

pentapy-1.1.0rc3-cp38-cp38-win32.whl (190.5 kB view details)

Uploaded CPython 3.8 Windows x86

pentapy-1.1.0rc3-cp38-cp38-manylinux2010_x86_64.whl (532.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pentapy-1.1.0rc3-cp38-cp38-manylinux2010_i686.whl (430.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pentapy-1.1.0rc3-cp38-cp38-manylinux1_x86_64.whl (532.1 kB view details)

Uploaded CPython 3.8

pentapy-1.1.0rc3-cp38-cp38-manylinux1_i686.whl (430.9 kB view details)

Uploaded CPython 3.8

pentapy-1.1.0rc3-cp38-cp38-macosx_10_9_x86_64.whl (209.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pentapy-1.1.0rc3-cp37-cp37m-win_amd64.whl (206.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

pentapy-1.1.0rc3-cp37-cp37m-win32.whl (189.7 kB view details)

Uploaded CPython 3.7m Windows x86

pentapy-1.1.0rc3-cp37-cp37m-manylinux2010_x86_64.whl (484.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

pentapy-1.1.0rc3-cp37-cp37m-manylinux2010_i686.whl (398.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pentapy-1.1.0rc3-cp37-cp37m-manylinux1_x86_64.whl (484.1 kB view details)

Uploaded CPython 3.7m

pentapy-1.1.0rc3-cp37-cp37m-manylinux1_i686.whl (398.8 kB view details)

Uploaded CPython 3.7m

pentapy-1.1.0rc3-cp37-cp37m-macosx_10_9_x86_64.whl (208.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pentapy-1.1.0rc3-cp36-cp36m-win_amd64.whl (206.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

pentapy-1.1.0rc3-cp36-cp36m-win32.whl (189.7 kB view details)

Uploaded CPython 3.6m Windows x86

pentapy-1.1.0rc3-cp36-cp36m-manylinux2010_x86_64.whl (484.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

pentapy-1.1.0rc3-cp36-cp36m-manylinux2010_i686.whl (398.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pentapy-1.1.0rc3-cp36-cp36m-manylinux1_x86_64.whl (484.1 kB view details)

Uploaded CPython 3.6m

pentapy-1.1.0rc3-cp36-cp36m-manylinux1_i686.whl (398.5 kB view details)

Uploaded CPython 3.6m

pentapy-1.1.0rc3-cp36-cp36m-macosx_10_9_x86_64.whl (208.7 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

pentapy-1.1.0rc3-cp35-cp35m-win_amd64.whl (204.9 kB view details)

Uploaded CPython 3.5m Windows x86-64

pentapy-1.1.0rc3-cp35-cp35m-win32.whl (188.8 kB view details)

Uploaded CPython 3.5m Windows x86

pentapy-1.1.0rc3-cp35-cp35m-manylinux2010_x86_64.whl (476.7 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

pentapy-1.1.0rc3-cp35-cp35m-manylinux2010_i686.whl (393.3 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

pentapy-1.1.0rc3-cp35-cp35m-manylinux1_x86_64.whl (476.7 kB view details)

Uploaded CPython 3.5m

pentapy-1.1.0rc3-cp35-cp35m-manylinux1_i686.whl (393.3 kB view details)

Uploaded CPython 3.5m

pentapy-1.1.0rc3-cp35-cp35m-macosx_10_9_x86_64.whl (206.2 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

Details for the file pentapy-1.1.0rc3.tar.gz.

File metadata

  • Download URL: pentapy-1.1.0rc3.tar.gz
  • Upload date:
  • Size: 236.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3.tar.gz
Algorithm Hash digest
SHA256 94e8ef4f1dbe7afd9dac6c33f2ae24234dcc6f4244d9352b9c60077092bab0b4
MD5 a08a1037302096f6a2e65a9616f2452d
BLAKE2b-256 47412ec00ae8aa3d12f43cc6168aaffa7b5295f7fe0ecfd0035129922ef45dd2

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 206.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4b506b802c9f238933eb6d167ba12e4883837ad586e43c735ec69a80c965bc24
MD5 15bc7226d7b6462b9e6de8511746bb1e
BLAKE2b-256 138ef15559b0af06c920a4b2dc9c25578c674d376e88ee6e8f75c83664aeb227

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp38-cp38-win32.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 190.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 76439d24fe5c3682925c5d184ee9f2b8136754d432dde14134c00a04228d9623
MD5 1ce52ef13bc224d75f088fa4e43addcf
BLAKE2b-256 f303644872dae6fbfba465068568236891bc86472bc52b93738e167ba155ce7e

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 532.1 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 04203232ea9893334fd3233cb0ea9ea5c3ad320a91f4a8f2c6f24e868561e05f
MD5 845cc1aaf62159ba891935af576a087d
BLAKE2b-256 8ad3584d719dfacb841a5d62737f279d59693ac8f82e9ffcaaa14a7fe069ec6e

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 430.9 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 759f723e6bb18ee225f8b04259bff6e577a39205b70c84720bce63d8690adf55
MD5 da7792f19c0d50b1d5f08278aaec5836
BLAKE2b-256 05a6efcbc01fddaa22382d5a9f6f56944f609b505752d8fe5f0bdc73a928beb0

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 532.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 728a2f724ff029062d70615a1d42ca81e6bc6bbb73d65f3c5fcaf0b18001aab3
MD5 2533ecd9b7e396d689130d99fdb96ae2
BLAKE2b-256 2a1f075b59082d2b4e03d1370052d647edc45f5fa0f67798c7fbf7f660ce746d

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 430.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 68bf86cd8a44b7843aec67b46a67a692c4c84812f741a3495f8e1dd249e395d5
MD5 586341247b136077a77a5bf633c1ed80
BLAKE2b-256 aa655e99e346e242237f77adbacc1e9fe50032af98dc7bb5906108cbef95a607

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 209.8 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for pentapy-1.1.0rc3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06514895ca2dc74d2bae4cbbee34541f2fc71e2f77969b8c35454570b68c7e82
MD5 e9ad475411b051c0152b72d6492a97a3
BLAKE2b-256 13bc80d54e5928337219f99408bb7c6119c88dde291c4e35a3431e3ec2d318a6

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 206.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ee27351777948c56f76f6c94e0be21846ca157b64002655fbbcf87c5f1fab4b8
MD5 9ed027e1043422ef7ae2688d95c48ad9
BLAKE2b-256 f312ad536a312da229b7e3bb7de4289972793303a7eb28709b0f78409bfe53f0

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 189.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 47769b069e26f1b382149db82a85d644b54907fd3e25b73dc3d2efce74d22efe
MD5 b7e11a1124962d9597da3ffc35cc27f4
BLAKE2b-256 9560d729e6e2802402cf45ad311bcf44642e3be46bbaf6d9f87678665bea18ce

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 484.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c81c74460a733e55119cf238f2de72d9a32d50f24bac3c58c05be5a1eef2cd60
MD5 79dd811d781d78aa0bcf3d45052673e7
BLAKE2b-256 fdbbcfbc86d6839f7f899c9231c25d233e0023dc19241e3f5e35eebd6424c3c9

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 398.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8cc396cad9738e45cbeba002ad27446f69fdc8009230ffb3ca1d13c064d3ec83
MD5 5889aa998ffb4cbf1a13952e25254372
BLAKE2b-256 200d871f59e870a5977f61a9c8f70ef4405b50dcbc77b6debbf27d720a3ffaee

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 484.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 765de0ee0e16733082e05b63ae1594362b43551e8bde82a37df37366925c3836
MD5 99f1b48f02c668d34bc122a878cee6cf
BLAKE2b-256 603f8f16e540416a3f257a4286c1a743930c01661a3bfc85018cd7b1afc4a9e9

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 398.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7e6ce1b87c74c0e3f9b9b4acf6592978701671a071b108090bd02d121be3c10b
MD5 8ddfbb6a287dddfb2a48aa5063a6dd08
BLAKE2b-256 a174c0bfc6f111db3a640662e121a74784da52c10e13cbf9135d29189900cebf

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 208.7 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for pentapy-1.1.0rc3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f0cf2922430f135a2c91a41cf10e094ed8ba67477d1e16abde7a4acefa21411c
MD5 ac4ac38f95b1680a70c8bdc2f0e3a1c5
BLAKE2b-256 d8bd0daaa736fcaf14af89e4d93817b8905c54245955f568406ac0ed84fbd9b6

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 206.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2a66d41d3fe0bf1a9d6f1196b097cc829ed9a41fbc0420dff200c001f47cd27d
MD5 957c792c0ee4a9556aed2f78c0f1e25d
BLAKE2b-256 4f790d2862383cd81b2e15d8a2f37e547c30055c144467647ed45e4cf20f194b

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 189.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 06e96e134796296a4f294fd90914f1ea65359a3a0204475e67549a1c42a6033b
MD5 f48c91b8cd300b7b7810f9afc98c7385
BLAKE2b-256 bc752f7454637ebc07f5ddcc9ef856c87f3822b1c273ce4a840ec62838c5b8fa

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 484.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 18b8ca825fd7c95bfa7e1547afc8ab145e7635cddb3e903086c4f0e6a7398146
MD5 d765d9a57b0d91d99049f3223270a1c7
BLAKE2b-256 3fd95c1c55312bfb7630caadbdd157a89feb69b20aae25960dffafdedf9f87ec

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 398.5 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b6d799b2d6dc290c1d4599ba4aed8c46c1024a9e00b3065b42d5504d6f6ffca6
MD5 657d1b593cc26b5b12c262fb8aa52435
BLAKE2b-256 6edd528b3bde5f9c1a5af8092529e50fb15d8643dae9ad6216c9e9cb1662e93b

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 484.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3cac4c1605ee00af4e4dbe16c12f1e34b21e2bc0ea16afff7a88cc6bb6acaa26
MD5 fd50d435f3e6ad95ee763e7490755b16
BLAKE2b-256 56a5ae5e4e73dece99f5be3a86a4109d2ec298e133ae48f29b98f74c79eac384

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 398.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 712cd3be0ad64c2b4f3a8b04db0dcda8e9b3c4bc33c920509de58ed072613a50
MD5 0a87538d98fc118e0fb068a98f9d3e6e
BLAKE2b-256 a83c6532a70d4a7fee2471b59ca93679ebe2f4f497a3301788a4faf56afdb6cb

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 208.7 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for pentapy-1.1.0rc3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 200712c4792bb152db45424ea193a11390d64c687b1d7100b504a95541889222
MD5 7457f1fd141587347f7117e7376cfc93
BLAKE2b-256 bdddfc72f86cb18fb64c69a5945a97124545a24aff6855585a2c84a547010df1

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 204.9 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 05a286226d9ed6f817bd338d1bcf5c93a0eccd109621dd764d31351172c80f79
MD5 d3895dd0c5e5c0fee4c57e32632ee0b1
BLAKE2b-256 0a00a849d5c488982fbaff4846f0bea2411b6a18a7c75ecda5423da58e47794f

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp35-cp35m-win32.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 188.8 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 8f860968bb64cfcbee0f5967f6732cb212eb3926d999e1e37f4175a84bd7925b
MD5 11b3706802cbef3de3096cd883389de2
BLAKE2b-256 ba378f051879afb477ac7d2aff3fa101925080f388c65f9daed7bf7b73b8b095

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 476.7 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4a875c3111131c26b86025e6544a0cb6caeab04ba88afec4e021424fe448eb68
MD5 5aa7cfd07152bf69138f55b3d52f3a40
BLAKE2b-256 786ffc9ed1bb44340711617c2fd94e9bcd5a17c9e1ca84fb9f0add776a83472a

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 393.3 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5c53d24d3f2b8ec016b881f9f9dd48c00013575d84c770ac537a9380c221616e
MD5 a3385bec460370646c9f4eb653dd1e1b
BLAKE2b-256 67eac6df74196977905ea52a2433b6146e2b9fc64047c0791fcf6698143a6c57

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 476.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e371f0df8c809b6206ddcff1a94f85e171816e373851607ea4ef84cb42f3ecef
MD5 ebea9c266eaf28bf408626255e152b87
BLAKE2b-256 33f452a8226a8b2201f50d4f8600a15da25f867e0f530b1092d8529ad324c4a0

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 393.3 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for pentapy-1.1.0rc3-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 396dd444b93050fa0e98d7281adc7a625e0925402a8c641d2884368176ed73ca
MD5 733b27843dfc8d743441d1ee0e8dfdbe
BLAKE2b-256 f5b92e68cc59f2194fdd877040fda3a276a4c59a2fc069f402b004819c5d5143

See more details on using hashes here.

Provenance

File details

Details for the file pentapy-1.1.0rc3-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pentapy-1.1.0rc3-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 206.2 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for pentapy-1.1.0rc3-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 918bb265ab53fb10bb1f055d9575ad7ce6a2c4aed439358765b21f3cace6ca64
MD5 0ed5cd160fcba321ae76b7738c37a5ed
BLAKE2b-256 2a099ca90c1480f982940fdafb87b71bcc015ebe4459ab9d8b6a9e34a4a02dc7

See more details on using hashes here.

Provenance

Supported by

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