Skip to main content

Phi_K correlation analyzer library

Project description

Phi_K is a practical correlation constant that works consistently between categorical, ordinal and interval variables. It is based on several refinements to Pearson’s hypothesis test of independence of two variables. Essentially, the contingency test statistic of two variables is interpreted as coming from a rotated bi-variate normal distribution, where the tilt is interpreted as Phi_K.

The combined features of Phi_K form an advantage over existing coefficients. First, it works consistently between categorical, ordinal and interval variables. Second, it captures non-linear dependency. Third, it reverts to the Pearson correlation coefficient in case of a bi-variate normal input distribution. These are useful features when studying the correlation matrix of variables with mixed types.

For details on the methodology behind the calculations, please see our publication. Emphasis is paid to the proper evaluation of statistical significance of correlations and to the interpretation of variable relationships in a contingency table, in particular in case of low statistics samples. The presented algorithms are easy to use and available through this public Python library.

Example notebooks

Static link

Google Colab link

basic tutorial

basic on colab

advanced tutorial (detailed configuration)

advanced on colab

spark tutorial

no spark available

Documentation

The entire Phi_K documentation including tutorials can be found at read-the-docs. See the tutorials for detailed examples on how to run the code with pandas. We also have one example on how calculate the Phi_K correlation matrix for a spark dataframe.

Check it out

The Phi_K library requires Python 3 and is pip friendly. To get started, simply do:

$ pip install phik

or check out the code from out GitHub repository:

$ git clone https://github.com/KaveIO/PhiK.git
$ pip install -e PhiK/

where in this example the code is installed in edit mode (option -e).

You can now use the package in Python with:

import phik

Congratulations, you are now ready to use the PhiK correlation analyzer library!

Quick run

As a quick example, you can do:

import pandas as pd
import phik
from phik import resources, report

# open fake car insurance data
df = pd.read_csv( resources.fixture('fake_insurance_data.csv.gz') )
df.head()

# Pearson's correlation matrix between numeric variables (pandas functionality)
df.corr()

# get the phi_k correlation matrix between all variables
df.phik_matrix()

# get global correlations based on phi_k correlation matrix
df.global_phik()

# get the significance matrix (expressed as one-sided Z)
# of the hypothesis test of each variable-pair dependency
df.significance_matrix()

# contingency table of two columns
cols = ['mileage','car_size']
df[cols].hist2d()

# normalized residuals of contingency test applied to cols
df[cols].outlier_significance_matrix()

# show the normalized residuals of each variable-pair
df.outlier_significance_matrices()

# generate a phik correlation report and save as test.pdf
report.correlation_report(df, pdf_file_name='test.pdf')

For all available examples, please see the tutorials at read-the-docs.

Contact and support

Please note that support is (only) provided on a best-effort basis.

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

phik-0.12.0.tar.gz (44.2 kB view details)

Uploaded Source

Built Distributions

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

phik-0.12.0-cp39-cp39-win_amd64.whl (659.8 kB view details)

Uploaded CPython 3.9Windows x86-64

phik-0.12.0-cp39-cp39-win32.whl (655.3 kB view details)

Uploaded CPython 3.9Windows x86

phik-0.12.0-cp39-cp39-manylinux2010_x86_64.whl (676.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

phik-0.12.0-cp39-cp39-manylinux2010_i686.whl (680.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

phik-0.12.0-cp39-cp39-macosx_10_13_x86_64.whl (653.0 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

phik-0.12.0-cp38-cp38-win_amd64.whl (659.3 kB view details)

Uploaded CPython 3.8Windows x86-64

phik-0.12.0-cp38-cp38-win32.whl (655.1 kB view details)

Uploaded CPython 3.8Windows x86

phik-0.12.0-cp38-cp38-manylinux2010_x86_64.whl (676.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

phik-0.12.0-cp38-cp38-manylinux2010_i686.whl (680.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

phik-0.12.0-cp38-cp38-macosx_10_13_x86_64.whl (653.0 kB view details)

Uploaded CPython 3.8macOS 10.13+ x86-64

phik-0.12.0-cp37-cp37m-win_amd64.whl (660.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

phik-0.12.0-cp37-cp37m-win32.whl (655.5 kB view details)

Uploaded CPython 3.7mWindows x86

phik-0.12.0-cp37-cp37m-manylinux2010_x86_64.whl (675.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

phik-0.12.0-cp37-cp37m-manylinux2010_i686.whl (681.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

phik-0.12.0-cp37-cp37m-macosx_10_13_x86_64.whl (652.7 kB view details)

Uploaded CPython 3.7mmacOS 10.13+ x86-64

phik-0.12.0-cp36-cp36m-win_amd64.whl (660.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

phik-0.12.0-cp36-cp36m-win32.whl (655.5 kB view details)

Uploaded CPython 3.6mWindows x86

phik-0.12.0-cp36-cp36m-manylinux2010_x86_64.whl (675.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

phik-0.12.0-cp36-cp36m-manylinux2010_i686.whl (681.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

phik-0.12.0-cp36-cp36m-macosx_10_13_x86_64.whl (652.8 kB view details)

Uploaded CPython 3.6mmacOS 10.13+ x86-64

File details

Details for the file phik-0.12.0.tar.gz.

File metadata

  • Download URL: phik-0.12.0.tar.gz
  • Upload date:
  • Size: 44.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0.tar.gz
Algorithm Hash digest
SHA256 959fd40482246e3f643cdac5ea04135b2c11a487e917af7d4e75843f47183549
MD5 dc99add4c3f909c6ed594ad5702b118b
BLAKE2b-256 ade31370905d5c543d83398785c0eb92239e77be0d6125b992d9085dea9b6fc3

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: phik-0.12.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 659.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 44a2f728a2a3e301355ae1cd77893093ed6303de71fc0e6c90091e2b42a5da94
MD5 2708707c00311fbebc83f2f70365167e
BLAKE2b-256 af30656fc35a565e1821183cd53f967e4bb256afc0c37dfedf083b92d28847a3

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: phik-0.12.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 655.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3f8a35a88a6ace67fba3ee9fae28bc9d2356dc70d80d223601e8ff06d65cab29
MD5 27d16abdd447404b0d5a1f8f57e066ad
BLAKE2b-256 6dd739924177cf0de3d3a496db7f1c5cf7c33d59d92e0b81451b0872033899f6

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: phik-0.12.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 676.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ff4b38aa79f7178b39f404655aa6494b7ed70edf117da2246ac9289f8bf630cd
MD5 00561db93e08e18a677eda1c68514a6a
BLAKE2b-256 a9b547d053f92eb072b231150f18a3081985ad8d84d6521234e79a428e6a7434

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: phik-0.12.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 680.7 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 40b3329e16a547f0d89c0f0f7b0c5588860833e2e5c25e3ac8782f0dce44e3a5
MD5 e48113409fa55ef72d2e4a014b4e4e56
BLAKE2b-256 a4359a53c4cc630ec49ebd7614fe1699908824d335be961066ac1a6cf4282d7d

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: phik-0.12.0-cp39-cp39-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 653.0 kB
  • Tags: CPython 3.9, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 839f578f0b3f1abf5a66be1a4218342729701125bea60e17e0ef2431cea7bdb9
MD5 268e98e96d90ee6e0b440acca6dbc9ba
BLAKE2b-256 e5e4c4b35a163cd0c86dea201fd34748046810ea36fdf44c21681254ad730921

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: phik-0.12.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 659.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 44695244414d644210230ebdc080cc94fdbd675a79d0d47633a54eb29f952102
MD5 27783b95b826f769d19f3e08d4dfd728
BLAKE2b-256 4b4a67e13965bf9d110cdffe6ba8de2733faf764f0fc2eb12dbbdba3e4c1e2fb

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: phik-0.12.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 655.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f60d9e09ea60a558e13e15cd01bf212e90b5e5c2abff4fd3209864000b3a55c4
MD5 6dd9f66de2939b838c63a8100ca35649
BLAKE2b-256 500566469ec8b135b910292218c3482410518e59edaac060ff2ae7e222409d37

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: phik-0.12.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 676.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fae864023ba75136ae46a34279b6b7aef8c9548c3475e945b8e01a6f93400a57
MD5 bd12c349f7a076c0ea08c20db2c5dccf
BLAKE2b-256 208543ff28edd22e7c723544bff793a174ed43861f593ff56afe57b2796e9902

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: phik-0.12.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 680.5 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7b45d2881c9129f2993eb4f0333d594fc3cc6f68d84d304777e726a899d3bdbe
MD5 e52daf39f20b2b2bea69dca917e55caa
BLAKE2b-256 2c96d2a997e9aa0a03beef3dab7682b7c3024d5dd29443d130d370fa3d757db6

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: phik-0.12.0-cp38-cp38-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 653.0 kB
  • Tags: CPython 3.8, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 14bb939b3855e3a2a78362411ff3ec436d061081405daa501310b63d5828c364
MD5 a7d8622975ee51890b024f17186c09cd
BLAKE2b-256 51bb07bdaac8733e3c7f04fae7ac119c9b971b3db9f483b189c43a6bb4b39871

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: phik-0.12.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 660.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2055b3dce325ef9a6288d1d1a55d30fd049e859ff3c9a4c4b43c46cff747ce71
MD5 57a814efb719b3c3b189a25ff8158acb
BLAKE2b-256 dcc1efa2ed199503f1132271b4d5be3c688304fccfc343ef555479d7a5bd6c40

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: phik-0.12.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 655.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e66cb58584d5db5b395ee9dc69dcfbb364cbc8e9f2376deaf321153322598798
MD5 aca59cc3a6642eba0743736b9107e6fa
BLAKE2b-256 c0cd551453cc077735f9873d038c74740d996a4a876708e274e1d821c7985133

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: phik-0.12.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 675.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b1691c977935c8fe4a1c68953c813c3e9fec479936ae9296c1ecd4e655419584
MD5 7ac862627f4cb0e8d8d33d0e2c0f5054
BLAKE2b-256 4ed05063cc193bf0d22359a8223e769438a9ef41d17bd8745c24a069575aa3c2

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: phik-0.12.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 681.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f8fb9d55cbaa75c711a29e4cac00032638235afd80f675eb469431bef4a240c0
MD5 10ec02746ce07a1ec7c089cec2bcbbec
BLAKE2b-256 7bb28540e3bc1177b0a4a11392298643fc8ae495f7ea63c76f2f9d965c171d0a

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: phik-0.12.0-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 652.7 kB
  • Tags: CPython 3.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e1cc94b513a28440f8450ef37cb0ef27a9d0c09947774d7c56d88a2a6d99bda9
MD5 89468da9a00c9e3babb041be74616657
BLAKE2b-256 70b828af47b94ebd79e9d6bc2a81ae1b82567b588fa3a1346543e8e1a1620efe

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: phik-0.12.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 660.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3981fcdc992d16b4fe86b1656292d1be853f7b6174311a52cc74808de7dccb7d
MD5 53e43d4ebd3bf5deb931ed2078d2bf62
BLAKE2b-256 8e30f785f6da50067085766c7b540a5febbc5b62c9774b23f2761354221225b9

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: phik-0.12.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 655.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8ce9f3d8d7113afb9ee2f4e198cf094ffad719d9261a4aa0a79c8ed3aa40d158
MD5 3cbda6564d337785a3ea6ec079bb847d
BLAKE2b-256 9ec1150a89ac1e5faff40ddf10160d0494a7e3b903afd5722c730248ea7068d6

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: phik-0.12.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 675.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 922d19b7fe8b64e0f073815d6da2766e0c6934dd1acbcb6a4244450356efb7c0
MD5 3981f88d2d37332c7e4a6eb2f12b3aaa
BLAKE2b-256 c7f341f78b7ace5472fea5e6ad98d4b79c642a3563adfecb425ff0b8e681f2bc

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: phik-0.12.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 681.0 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a761997ef4ebd7028fbf6cd443170a214f2f551d9f88f91ce1bcdd2fd8ff4a82
MD5 f7585251f2446c733c6478501cc972e2
BLAKE2b-256 99726ba764e75753f75e5bc503448ed556c342bb9280a8c3a0bec9bddee40874

See more details on using hashes here.

File details

Details for the file phik-0.12.0-cp36-cp36m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: phik-0.12.0-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 652.8 kB
  • Tags: CPython 3.6m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8

File hashes

Hashes for phik-0.12.0-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 57db39d1c74c84a24d0270b63d1c629a5cb975462919895b96a8522ae0678408
MD5 7218681a25170747a4bc459f2a77ed78
BLAKE2b-256 f4bac01663b052474ec676f31bfaffed46bfa0aadf2864ba19276c14a9979dd2

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