Skip to main content

pentapy: A toolbox for pentadiagonal matrizes.

Project description

Welcome to pentapy

status DOI PyPI version Build Status 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.

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/04_perform_simple.py.

Requirements:

Optional

Contact

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

License

MIT © 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.0rc1.tar.gz (294.9 kB view details)

Uploaded Source

Built Distributions

pentapy-1.1.0rc1-cp38-cp38-win_amd64.whl (208.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

pentapy-1.1.0rc1-cp38-cp38-win32.whl (192.2 kB view details)

Uploaded CPython 3.8 Windows x86

pentapy-1.1.0rc1-cp38-cp38-manylinux2010_x86_64.whl (533.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pentapy-1.1.0rc1-cp38-cp38-manylinux2010_i686.whl (432.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pentapy-1.1.0rc1-cp38-cp38-manylinux1_x86_64.whl (533.8 kB view details)

Uploaded CPython 3.8

pentapy-1.1.0rc1-cp38-cp38-manylinux1_i686.whl (432.5 kB view details)

Uploaded CPython 3.8

pentapy-1.1.0rc1-cp38-cp38-macosx_10_9_x86_64.whl (211.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pentapy-1.1.0rc1-cp37-cp37m-win_amd64.whl (207.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

pentapy-1.1.0rc1-cp37-cp37m-win32.whl (191.3 kB view details)

Uploaded CPython 3.7m Windows x86

pentapy-1.1.0rc1-cp37-cp37m-manylinux2010_x86_64.whl (485.8 kB view details)

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

pentapy-1.1.0rc1-cp37-cp37m-manylinux2010_i686.whl (400.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pentapy-1.1.0rc1-cp37-cp37m-manylinux1_x86_64.whl (485.8 kB view details)

Uploaded CPython 3.7m

pentapy-1.1.0rc1-cp37-cp37m-manylinux1_i686.whl (400.4 kB view details)

Uploaded CPython 3.7m

pentapy-1.1.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl (210.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pentapy-1.1.0rc1-cp36-cp36m-win_amd64.whl (207.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

pentapy-1.1.0rc1-cp36-cp36m-win32.whl (191.4 kB view details)

Uploaded CPython 3.6m Windows x86

pentapy-1.1.0rc1-cp36-cp36m-manylinux2010_x86_64.whl (485.8 kB view details)

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

pentapy-1.1.0rc1-cp36-cp36m-manylinux2010_i686.whl (400.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pentapy-1.1.0rc1-cp36-cp36m-manylinux1_x86_64.whl (485.8 kB view details)

Uploaded CPython 3.6m

pentapy-1.1.0rc1-cp36-cp36m-manylinux1_i686.whl (400.2 kB view details)

Uploaded CPython 3.6m

pentapy-1.1.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl (210.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

pentapy-1.1.0rc1-cp35-cp35m-win_amd64.whl (206.6 kB view details)

Uploaded CPython 3.5m Windows x86-64

pentapy-1.1.0rc1-cp35-cp35m-win32.whl (190.5 kB view details)

Uploaded CPython 3.5m Windows x86

pentapy-1.1.0rc1-cp35-cp35m-manylinux2010_x86_64.whl (478.4 kB view details)

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

pentapy-1.1.0rc1-cp35-cp35m-manylinux2010_i686.whl (394.9 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

pentapy-1.1.0rc1-cp35-cp35m-manylinux1_x86_64.whl (478.4 kB view details)

Uploaded CPython 3.5m

pentapy-1.1.0rc1-cp35-cp35m-manylinux1_i686.whl (394.9 kB view details)

Uploaded CPython 3.5m

pentapy-1.1.0rc1-cp35-cp35m-macosx_10_9_x86_64.whl (207.8 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1.tar.gz
  • Upload date:
  • Size: 294.9 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.0rc1.tar.gz
Algorithm Hash digest
SHA256 1b066f795df500d13d409465c90d5f2e367c66994db0f39e684186c2d915395b
MD5 5dd6c77ca33a24dfa2d28bbfcde50568
BLAKE2b-256 7002c00ce769dddc8cd3d17d936f315b3be9f6f04d0ccf0c37008a2c57ab8024

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 208.1 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.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 36fb926a9694c3210ea0f185b1592eff87a9b4c22f225e4904fc2a0c72cf013b
MD5 f84ea22dafc432842c99472c2deb85a7
BLAKE2b-256 c53d9e48f07d09b2ef21e1ca82faf0a5009f4ed19c1d12cb80865ec81232d239

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 192.2 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.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2a28d6f115587c78eb1baa57059fce93293fc71f2f1c2290b6c811076ed046f9
MD5 631bd96dd2512ffc35c00972b807b5f7
BLAKE2b-256 54ba9eeb9bc6ec4260785ebc597bb34d559d71c21dcd9750828972fa6e6f64d1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 533.8 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.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a330bdd6ea363b74b0a7b1e89fce9a4d31018610f9a2be311f2b54941d2d1513
MD5 98dbb90fb1e4da20c488af9656c3364b
BLAKE2b-256 d2f8f10cc489240ebed10944325d92ceea390ec26b061c2440deb3600ac2a51d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 432.5 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.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f398d8c7bc3465bf56c1cc538a41917df2dcf3415cd0cb4029bafa63364041ac
MD5 ee63ffd277a49ef76fe5e61509095b90
BLAKE2b-256 748267023f174006ad320050f4fd69caf20539c9dbe4b4138db42369f41430bf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 533.8 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.0rc1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a2ae95b79f1792791046dad08714c4c8ce22adb9b8030ea635055e20c8f4e6e0
MD5 ddcf073a6f7d57ed2898b15bcf9a537e
BLAKE2b-256 520bdac0a098fd5964bbfaef262ab46ef50b11cf45b34e02b18f771ae4022f76

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 432.5 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.0rc1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c8b1cde9047b03d2a107e52445cad5f5aea0e35d9d3df7ca732a076aa39128e1
MD5 63e9305247056651d3182e1131f85b8a
BLAKE2b-256 06d70241a458814549965fa9eafb2da55e67cade86bf931d7bf27affc38c49cb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 211.5 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.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 938e8358991908eb69deaa8c93bc2959921865511db021fe9915658ec08a4619
MD5 bf9b43ff6b9864ceca4180bbb3d8aaa6
BLAKE2b-256 b6357180dbb31294bad28c97bfff0177c644bf018709c1c4b35fd18ccd7312c5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 207.7 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.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5b5dfb15e83a3893292ed7c9a074269227befdb0c00c802ad7d206c4bf47f3f0
MD5 75f4821fb4af4957beaa66b6a54abd97
BLAKE2b-256 de8762074d2152b80c7e4c8ddb1c063e060f125958fc7cc91f936136d007cc50

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 191.3 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.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 04984f17ab83c3219b579e283dd94a9b48da2b54f14524c77518bae8cd7cd6a1
MD5 6b5d2cd80c6909cf4dd31cb077961ffd
BLAKE2b-256 034e6be7c2f11ae5b5bcaec0991ccc1c0bd54d7a0e6f981545b77754346d51a9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 485.8 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.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1d86848928215285b4d18608a7d4355f30b8cd4d21f00931041f0574260da215
MD5 4edaf323d9a9d4caf8d7bd6c99888777
BLAKE2b-256 50be2ffefc4e21d683826657079480eefd2e71382a2557abc93045fc065102d0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 400.4 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.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0dd8c41c8a4d6b529767b64725b6d1e54d2f8aec9a2487cefbee8ad23e558ec9
MD5 b782f4d089ff0cec5af83a145186481b
BLAKE2b-256 d6652fd6a735e7ace93287bab219afa8fa7a0c41a9cb63a103721a44a1eeddad

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 485.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.0rc1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 41f8006f93ea79544330b61e2fbd2c0555639b012e0992e0247ced7a29db10fb
MD5 d9a8a66c6fbd29d68676db6a9d6bb6c3
BLAKE2b-256 4eae7f956f6602bbad1cd81a6d15933f98e502a903317dab564a196c7eb94b9e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 400.4 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.0rc1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 52c380ef86c6d9236d234b71880b8013ea6bbb5cc3c77a90ccea52916911f7ef
MD5 9b41fa5469022514bdfba516a220a642
BLAKE2b-256 55f11ca302ab70bb4d7a13267f725046d2019089cb122472d024d8066fab92b8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 210.4 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.7.6

File hashes

Hashes for pentapy-1.1.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7449a8dd9db058ef032de8d6761b09fce82c3022ba50009c292110addc0c4ad8
MD5 4c9f3c2562e1e1408926f67a6852d738
BLAKE2b-256 2d05e4b7c00ee18f3b873e37c8faf78f7e150314147f4f012a0ae00c3177e2de

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 207.7 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.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a4f58fce2f34b97980725dea6fdc7838193a1bfe82e4a21afa44f8851f237a49
MD5 51b2bdfd7dc2aa26af39bcda02bc80e8
BLAKE2b-256 ae0f2dc4656bc349bb8520f05602b901bdbf25fff81357db3d1ad23149610c54

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 191.4 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.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 123d320e2a47f65f0fb349ff849aa3d7514d1796439e4310afebeba23282f6a6
MD5 5a872145823ce8dd7ceec66ed311fa16
BLAKE2b-256 1177dcf30546b3d5415f0fb331a0f854a78fa07f83bfe3995a15c472fc9cf533

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 485.8 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.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 039706168f068ced18514b84870284c337a0f380777945ea5c1ccf303919e3ad
MD5 31ba531c083d41a00d32464a28793305
BLAKE2b-256 57e8727076cd95d75e6ca6a5838866efeaf62a9a88e9642885e61f8b924436e2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 400.2 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.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d42f4ecc7b039e57d893ba2c4d46b25782665990929bd62b6039d3283d9b7c58
MD5 e10ba27cb6d7c63aad504cc1cae316cb
BLAKE2b-256 59ddd95f9df2a73f5843635a71f184198c755c48c317918da3c97ba1aa414dc4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 485.8 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.0rc1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e1586785b7fa75eff59b678d560cd59c78b47919b40411aa1949a97ac02dc227
MD5 cb2c1a6210a9f840a204160617b64188
BLAKE2b-256 bd92e5c4b193c7f32b6af5ccc284b72c346570278cd39e60d2801985fcb565cf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 400.2 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.0rc1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e5c559d0b19f9e90ad4b39c965a27df7069b635ceedbf1bca9018ee9d1104b0c
MD5 0f77368779197904f152e3d79350a933
BLAKE2b-256 4a8650ce6bfb3a616ca1f69369bf8e8a8d063d2f7fbf0b580ae7a729c7065bd6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 210.3 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.6.8

File hashes

Hashes for pentapy-1.1.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2584f1c33961a64bf6f403e016976d8870de9962c78063c0041159f18043f5f8
MD5 8d05772638a7327661d14fb0fe807db5
BLAKE2b-256 72f9d1895f91bec15051f1cc199f359f166b1501b306b3be771b822f689b3a3f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 206.6 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.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5500efe52c1c51bf3cf832354c5228e5f889341d9ff2c62dbe0d09e200503597
MD5 ebd49d0e73f118b5c29dd9b986e37bb4
BLAKE2b-256 4f2d3a9aae3befe0e0b229ac3cdcf025d7582c17fd08368301ddfcc5fb14fd8e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 190.5 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.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 90c7012a9acd86b321b744496fa2500ca490b266ee3743e22110508252673f47
MD5 c9c4cf35daa358852117f886305c953d
BLAKE2b-256 8a6cb512a02b7833ef68fc3ab1453710f0973f3ef732749688ce22858fcc8c53

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 478.4 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.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4a6729eff43d056432c42bde9a07abf8eda83de6ba2f3d1cc032c0c22aebec53
MD5 1e765b5601471a146a9e6cb95cfad7bf
BLAKE2b-256 c93df3e862c3042e8582971e4d50f5e68e9b8b5886a16c3572f53bd849b5b5da

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 394.9 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.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 073d35260d23e324baf11ad86525440dc974bc97de06d99050659aef46bf86fb
MD5 1e01a6905727081a9c76887e88f387c1
BLAKE2b-256 5249e84c9d8efb4fd51dd19786112fb395664726c09cdfa456f6b57a3a463ee8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 478.4 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.0rc1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d57f8295098ae70a1c1520fa124ff63f0dfc27714914985d3811931f7d353852
MD5 619f9ca2e5d81f66c3170966063d3aec
BLAKE2b-256 69657bb6cb6fd4f58663bebdc78fbbf7355346c528e5d339b81e692e5239d4eb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pentapy-1.1.0rc1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 394.9 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.0rc1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 51be3a78ba35c8b8248b818607248930de94290693a47020e297c3671b2725df
MD5 ed5fee1a0b795ce21a3789c2108bd4eb
BLAKE2b-256 271e3b2c1258e066f10284dff92248ae272389aa3fddeb6851aabf711baa425c

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for pentapy-1.1.0rc1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dab6e6ca007149abe015aa4ef803564b18d21348814740f1f5589bff2e17f7dd
MD5 ac87097f1f69cda2a87e1ee258589fd4
BLAKE2b-256 fd449cc0678a5e6bcf7e2189ac1c5186bbc06943372f30dc525f547e25165cdb

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