Skip to main content

Hidden alignment conditional random field, a discriminative string edit distance

Project description

https://travis-ci.org/dedupeio/pyhacrf.svg?branch=master https://ci.appveyor.com/api/projects/status/kibqrd7wnsk2ilpf/branch/master?svg=true

Hidden alignment conditional random field for classifying string pairs - a learnable edit distance.

This package aims to implement the HACRF machine learning model with a sklearn-like interface. It includes ways to fit a model to training examples and score new example.

The model takes string pairs as input and classify them into any number of classes. In McCallum’s original paper the model was applied to the database deduplication problem. Each database entry was paired with every other entry and the model then classified whether the pair was a ‘match’ or a ‘mismatch’ based on training examples of matches and mismatches.

I also tried to use it as learnable string edit distance for normalizing noisy text. See A Conditional Random Field for Discriminatively-trained Finite-state String Edit Distance by McCallum, Bellare, and Pereira, and the report Conditional Random Fields for Noisy text normalisation by Dirko Coetsee.

Example

from pyhacrf import StringPairFeatureExtractor, Hacrf

training_X = [('helloooo', 'hello'), # Matching examples
              ('h0me', 'home'),
              ('krazii', 'crazy'),
              ('non matching string example', 'no really'), # Non-matching examples
              ('and another one', 'yep')]
training_y = ['match',
              'match',
              'match',
              'non-match',
              'non-match']

# Extract features
feature_extractor = StringPairFeatureExtractor(match=True, numeric=True)
training_X_extracted = feature_extractor.fit_transform(training_X)

# Train model
model = Hacrf(l2_regularization=1.0)
model.fit(training_X_extracted, training_y)

# Evaluate
from sklearn.metrics import confusion_matrix
predictions = model.predict(training_X_extracted)

print(confusion_matrix(training_y, predictions))
> [[0 3]
>  [2 0]]

print(model.predict_proba(training_X_extracted))
> [[ 0.94914812  0.05085188]
>  [ 0.92397711  0.07602289]
>  [ 0.86756034  0.13243966]
>  [ 0.05438812  0.94561188]
>  [ 0.02641275  0.97358725]]

Dependencies

This package depends on numpy. The LBFGS optimizer in pylbfgs is used, but alternative optimizers can be passed.

Install

Install by running:

python setup.py install

or from pypi:

pip install pyhacrf

Developing

Clone from repository, then

pip install -r requirements.txt
cython pyhacrf/*.pyx
python setup.py install

To deploy to pypi, make sure you have compiled the *.pyx files to *.c

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

pyhacrf-datamade-0.2.3.tar.gz (286.5 kB view details)

Uploaded Source

Built Distributions

pyhacrf_datamade-0.2.3-cp37-cp37m-win_amd64.whl (179.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyhacrf_datamade-0.2.3-cp37-cp37m-win32.whl (146.8 kB view details)

Uploaded CPython 3.7m Windows x86

pyhacrf_datamade-0.2.3-cp37-cp37m-manylinux1_x86_64.whl (784.5 kB view details)

Uploaded CPython 3.7m

pyhacrf_datamade-0.2.3-cp37-cp37m-manylinux1_i686.whl (736.3 kB view details)

Uploaded CPython 3.7m

pyhacrf_datamade-0.2.3-cp37-cp37m-macosx_10_13_x86_64.whl (195.7 kB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

pyhacrf_datamade-0.2.3-cp36-cp36m-win_amd64.whl (178.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

pyhacrf_datamade-0.2.3-cp36-cp36m-win32.whl (144.2 kB view details)

Uploaded CPython 3.6m Windows x86

pyhacrf_datamade-0.2.3-cp36-cp36m-manylinux1_x86_64.whl (785.9 kB view details)

Uploaded CPython 3.6m

pyhacrf_datamade-0.2.3-cp36-cp36m-manylinux1_i686.whl (737.0 kB view details)

Uploaded CPython 3.6m

pyhacrf_datamade-0.2.3-cp35-cp35m-win32.whl (143.4 kB view details)

Uploaded CPython 3.5m Windows x86

pyhacrf_datamade-0.2.3-cp35-cp35m-manylinux1_x86_64.whl (772.8 kB view details)

Uploaded CPython 3.5m

pyhacrf_datamade-0.2.3-cp35-cp35m-manylinux1_i686.whl (726.8 kB view details)

Uploaded CPython 3.5m

pyhacrf_datamade-0.2.3-cp34-cp34m-win_amd64.whl (177.5 kB view details)

Uploaded CPython 3.4m Windows x86-64

pyhacrf_datamade-0.2.3-cp34-cp34m-win32.whl (152.9 kB view details)

Uploaded CPython 3.4m Windows x86

pyhacrf_datamade-0.2.3-cp34-cp34m-manylinux1_x86_64.whl (781.5 kB view details)

Uploaded CPython 3.4m

pyhacrf_datamade-0.2.3-cp34-cp34m-manylinux1_i686.whl (734.8 kB view details)

Uploaded CPython 3.4m

pyhacrf_datamade-0.2.3-cp27-cp27mu-manylinux1_x86_64.whl (768.9 kB view details)

Uploaded CPython 2.7mu

pyhacrf_datamade-0.2.3-cp27-cp27mu-manylinux1_i686.whl (719.6 kB view details)

Uploaded CPython 2.7mu

pyhacrf_datamade-0.2.3-cp27-cp27m-win_amd64.whl (191.9 kB view details)

Uploaded CPython 2.7m Windows x86-64

pyhacrf_datamade-0.2.3-cp27-cp27m-win32.whl (157.8 kB view details)

Uploaded CPython 2.7m Windows x86

pyhacrf_datamade-0.2.3-cp27-cp27m-manylinux1_x86_64.whl (768.9 kB view details)

Uploaded CPython 2.7m

pyhacrf_datamade-0.2.3-cp27-cp27m-manylinux1_i686.whl (719.7 kB view details)

Uploaded CPython 2.7m

pyhacrf_datamade-0.2.3-cp27-cp27m-macosx_10_13_x86_64.whl (210.4 kB view details)

Uploaded CPython 2.7m macOS 10.13+ x86-64

File details

Details for the file pyhacrf-datamade-0.2.3.tar.gz.

File metadata

  • Download URL: pyhacrf-datamade-0.2.3.tar.gz
  • Upload date:
  • Size: 286.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3

File hashes

Hashes for pyhacrf-datamade-0.2.3.tar.gz
Algorithm Hash digest
SHA256 88517957abd7484835da23ff06085cdce34c5818e0bca90e42f8be093b347239
MD5 946ee79d5fd25b264ba2675ba263a3df
BLAKE2b-256 a086d407bd9e8541c2d7e9fc0d9344a35a6be1a02c7ba65ef4d4b6ea7afc6f33

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 179.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d560b645ab02ea784866ffe646ba334b9c38bdf22a24436ac24af5283028b3bf
MD5 d046188b201dd70ce0ee1be73db4b8e5
BLAKE2b-256 17b11d352ad12eaa1f1ec206fe134617d3cd3431e9d8eee890c5ab00b2607800

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 146.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 27c48851464642d8a50fa1c889e1b1463d323cb74db6481c913907314d9f3cad
MD5 d93148cccdf9d72ffd62dc775f6d2133
BLAKE2b-256 29488316bc4e512a8d04584accc83bbff3a8cb525741d5123d03a16a79d57d07

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 784.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5658f7d36d09fef9326827c1fc0fa10d2f81d867a6d4be67d8bb03651f79bd2f
MD5 8b7196cbe3f3bd5fa0265e40b680cbf4
BLAKE2b-256 16d9e089ecc7db7f27903b13e70d55070ac7899b1953030ae52891319b5b9886

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 736.3 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e57c10295cbbb5679f6ebe498de1ab7e989ece690434dfaaae93d91531be1f6f
MD5 8223f8c1e3f331730b1ce1cde542cd39
BLAKE2b-256 d925330dd4e5d9963326c557383fa1f70e7a635ddee99683fd9fdd6156c24b61

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 195.7 kB
  • Tags: CPython 3.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b328bd2ecbe57774c429b1ac99e6c1927656bc28322b9bef3c9df9c4b5b6e36e
MD5 7b79ad648745279107bf7b3fc3f3c7a4
BLAKE2b-256 f98021e48bff6e7aac981c64d26deca55de963b4662f00b58d9f1a5fc21e83ca

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 178.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e72755e2e182b6e2ad88717eafd9b1d4ea0c82d7f0e9aed8cab54fb0c4d5b902
MD5 d1eb0db75ba6acbf6fe5b5effe62537f
BLAKE2b-256 7335e5a4e5ae886de860a758b1032d03d99402a75f059e5d64942b8ac53e203e

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 144.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 43f9995cba23861021bf311934b28796c80026f7b2af6c97b5395c2dca9a6279
MD5 40549f7dbba781c46219dfb1cf536e68
BLAKE2b-256 097d7cfdfb0823bb5c215ac4331bed8791960162e2d103d5942981584ea98106

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 785.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ac33d52417f78349b8982fa03d7bdfa07878bc9519eb7752c7101f1706ed7f98
MD5 cbff082bda2c431e08f6a587262a7e85
BLAKE2b-256 71cc6f4bfb9297adc18f9416a79a6dcffe88066369a8022caa4a886dc4d0af6f

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 737.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b486d6fb2007c962759ea039557f5d245729ad5077ce62d0bc1bdb5d1c57452f
MD5 9b6990099b2aaae6658ba835a780dd26
BLAKE2b-256 c5d455673e5a8a696c0ed438194b3a1c3299fb9a5bd0388dbd677aaf7979a4c6

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp35-cp35m-win32.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 143.4 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.3

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a3087a03389fd7ded1f77b937c11ab690a644b42dd9593625343f8c08255a984
MD5 bc0691825d57d67fd6bd6bbae6627356
BLAKE2b-256 99875fc7459454441eb5794ee90891f994fe4b84204d2947d407543e8597abe9

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 772.8 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6188fbb98818b45d2e004d6a4f32129a3fbe6c7c1a5cc30a9bde4745a1d1eea9
MD5 61493f3e60c98442e4644da929311ba9
BLAKE2b-256 f5b2cfefc5c427b459d6f35f664e371a5469d2f2d064b6630e89304a125a34e0

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 726.8 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1a0803ad372fecabeadcc2e5911dfdb47beb5b7ed896cc6eb3028728e574d84
MD5 2b370343efca958beb7bcd95221c2003
BLAKE2b-256 630edfc7f7a5b3dcabee964a677ee21a370ed0ecada51fe18ea28d218ff92e4f

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 177.5 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.4.4

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 67a98b1bf56a4438c6c45672f762003cd7a39ab5e6286ae602feb135d2c61e63
MD5 932501c0f2cdfc6415420d52a381cb3d
BLAKE2b-256 0bf20495f35cca2ec731a333d94cfbadb6db62441f83406fc08a9637cac99602

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp34-cp34m-win32.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 152.9 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.4.4

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 696f426af4b422f4c63f45fae331ddda446f9b2337291559edeefffb6a3713fa
MD5 ffae7812900131ee04222296957e7f0a
BLAKE2b-256 084ebf5b07102a3a2558cb20401de8db7496595b366f3d23c3a882297b5b9a38

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 781.5 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 75bf5bedd3df5100d94d1d500f165791fb3d62b54717ed642ccd767b9a0edc05
MD5 871de1370fdcbfc4260391addafdb94e
BLAKE2b-256 7d9956762bb5836244e5fef995a277e2e3ad2be009094edd652030a5a1c2bef4

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 734.8 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 65c51ac79cd5bc67ada1436b808df9f339f15d58737922d240b2532b6cfa5de2
MD5 c4bdb7d882dfcdaa365285aabfe865d9
BLAKE2b-256 c5367d7f492215ce30c8e9b6a8501160ed23bbba69c0ec2339533c8badb1ae20

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 768.9 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6a3149c6e2569a2b96aa1ce7cc2422dde7cf96abebf950d18fa9d3f536cb7fc1
MD5 718b882119ca9a6751398a896ef19576
BLAKE2b-256 a0be93679daf5e4650c88824754ebb08984783c6dcebca8f2a20ecf1284ea7b1

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 719.6 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4a82008510641626d2918891e7ed134f446cccf86d1502b84d81596a4343a159
MD5 f7c3c0e61e09b9f3dd67af9d17397120
BLAKE2b-256 ed7900428d36ab4a94b18cdf3686d2c1e9973a8a7aa189388c97ee88b80c2996

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 191.9 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 b983e574263df66c7f2492168a22cb3288791b4e267606a073fec432a0b9875f
MD5 f9468c6bc7fdb25b3d84131cfd95dbae
BLAKE2b-256 3107fddf4b2e6efe9a15789d3b3bfa37cad1d902007bbeb15c9dfb5ac8917603

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp27-cp27m-win32.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 157.8 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e36dd5c75113d10f072880d048103e62343a802cea8282a0ec6b8155a2eae63d
MD5 5d74554a09d047d907399edb1e8de4d3
BLAKE2b-256 c84a130c5646d49e72816b1edeb5e761de098d32c779c329917cd4b41dacc891

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 768.9 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0fd1cb193aebbd1135bb6d5d67c2b3b966ee96978b96ed6a04609d0f572e6c7b
MD5 24376bdbf7e4c9364615e89692887ccf
BLAKE2b-256 6e68e037733d97581bf7bf9fed59e1368014f9cd49e30ad0685b4760d1ed88fd

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 719.7 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 370080733928428b39c12df9309a4524ec7e7c7817823b05d7ef0fe2fe788b69
MD5 88c791065449cf563810a941b91e75cb
BLAKE2b-256 d0b61279e6416cf6bc745111e1635bf71ff179886cdb3388f06242d33f73d090

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.3-cp27-cp27m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.3-cp27-cp27m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 210.4 kB
  • Tags: CPython 2.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for pyhacrf_datamade-0.2.3-cp27-cp27m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 da7cc7674be8b7561fb6c2ab4ad5433891da5c750a023f5611e9d050225a7559
MD5 31b9a9f0362a48c52ffe9494a560cc3d
BLAKE2b-256 4d74343a3ab8f4988f8634af3bb27d2c911bcdebf74008ec2025ab8adfdc80a3

See more details on using hashes here.

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