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.2.tar.gz (283.1 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

pyhacrf_datamade-0.2.2-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.2-cp36-cp36m-win_amd64.whl (178.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

pyhacrf_datamade-0.2.2-cp35-cp35m-win32.whl (143.3 kB view details)

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

pyhacrf_datamade-0.2.2-cp27-cp27m-manylinux1_i686.whl (719.6 kB view details)

Uploaded CPython 2.7m

pyhacrf_datamade-0.2.2-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.2.tar.gz.

File metadata

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

File hashes

Hashes for pyhacrf-datamade-0.2.2.tar.gz
Algorithm Hash digest
SHA256 e1811fbd4a723bffdb89ac9b4dd481e32123c8618bca1d59b008e8799dfc8674
MD5 8dcac8c3a004fecf852dd520281a1544
BLAKE2b-256 56ebcc7b639af06e29844c3ff081bfe1fc11c7a46d27513e1270d8fe09d16deb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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/39.0.1 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7fa00057db53b506e8a9efd510c12998968ed53a6b2b8763d64735bd2b5a1ac5
MD5 9e26da0a91b4a4990ea780414e7388aa
BLAKE2b-256 9615d97da0793097cc0a88ce76b9a4388943782a3435d9339ad807e3a4217662

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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/39.0.1 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6d9ed250ef7918d9a2086e28a07f0dca443cce041a3cdbd35303cbef5896e462
MD5 91652b770210c861a11a173e13a98344
BLAKE2b-256 430fc6989d5384e9e7a0095c53dad7af0ad59c229716a741f6dd15526fd34771

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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.24.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a4987d10c18cdf0333233dc2d3976f30c0dbee2ee786c1674e57abf4c74761d6
MD5 4162938d882d1a893c7d61af07560216
BLAKE2b-256 a1a9310c2d50a629799c025eb18ccd0a9e12a013d54d717e0de34dc240381511

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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.24.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 990316c3c72be3730689ca24a244cff7247fabf9fff259b9459c2691c3642d76
MD5 9cf69cb239fa129801a59bf269345a76
BLAKE2b-256 55ea97f6aa157ee556488f3762432971814d87be4211be2eb6a09560760caa48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 99f52d1707ea865be27efdc94c7c2ef13760c2f3bc27656bc189754dc3ba33ad
MD5 fe4e74ab67745fba17f23793dba1eba3
BLAKE2b-256 05a6002736c60169c6abcb30e1827348cf41df0d5f4a7898d9905a9a50069ffa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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/39.0.1 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.6

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ed2538e9c20450235be8b5907614cde9e09be609dc32c9b141aee3b9af23e32f
MD5 e548ec3a2488796771f2505fc5f4ab22
BLAKE2b-256 24c79b130734956e73d132020d31f556d80ffbafe911fbff26d3dcde86bb3875

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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/39.0.1 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.6

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 de3b88c329c646ab1d118d58d70d64acb5f1689ce7600ccc5a8f70c91080b211
MD5 9d03f569e049a99c5800ca90c2140ad4
BLAKE2b-256 0ade836911676922edc21ab9b88e5eace1a2a90b06bb7aab4a94685bb918e7fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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.24.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e116c217450cd103630a3d9613e8e24583a2530d015e498ef61debc5a00b6dec
MD5 325e1062e4e7864acc73c58227a5b3fb
BLAKE2b-256 56a5e89ef21b9fb2ec29d408981159f9c415766864e01db4c1524a374438ce6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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.24.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ade84393a05cba29e793b2148aea6e0c811721dc4487f528dd1b80a1833f4768
MD5 f35e969504b16f5a8c94b61979390920
BLAKE2b-256 fa1d7d6b7e9e241bfe4a34755cfd5335b45e858c28fee770c16b4c082d1f4f1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 143.3 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/28.8.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.3

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f61438ff543e16e3b612d8bd7369f88c346dc5151b6df79b2a8c3fcf65be1124
MD5 0e90a5104138717f1266dd01148f2b15
BLAKE2b-256 adb819ddcb1ddeee1f89e29d1d7832f2ceadfc492dd95a601bc4987d654fc603

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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.24.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 666d575873b11d349a6a2b62b653f15100904982c67208b11ce5c92449ede4d7
MD5 73295679115b003c1df078d58f18e6bd
BLAKE2b-256 febd0cfe9de1e72d2e187199cb115743ce08a876b58007a83895e60f0f995490

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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.24.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6116d3d5b80e046d6dcb4e59a8cfca7a5c894593d1d67ab8a16f00c775769440
MD5 d2efffb0162e38893d3f9c655610abeb
BLAKE2b-256 36e6d975979ca4a2121519dd7fc6bf235f1f1c3647023ef3cf046bad123f0443

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.4.4

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 b2d04286fe6200fefec1a01974e4527a0dcc42329257ba549acb0cd80225eb6e
MD5 f6d5e9ca4332d551fcfe406e4566e16e
BLAKE2b-256 88cbf4c250b0e79358cc27973e1cb75283ca68f318a0165771c6e7a25dd2df1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.4.4

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 dfdb2b804ecfa229fa8f3ec823da08ff220ac8b06d10f28c85d6061306d5bd85
MD5 07b8d18135535cb8d2dc9d9274aa167b
BLAKE2b-256 72c55be6d78a870e33f1f2a8f964bbab7970ce949a15b0f11e1b72bc2bad4ea6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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.24.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 760b39f5f05c8f293c9a539f2397cc89f8e7708928dad5e009411903381a8f69
MD5 9c9e5179499956318bd537a99652d9f0
BLAKE2b-256 2bc2f895aefdf219e0afd0f180cfc0e90b90c42cda8518be58ff78e4f8d541b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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.24.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 883de50cfeb95ae62515846964372861b69cde61972f72071b00ae6a0189a3c7
MD5 8c475ea8ee966e606d20a1fc30224ab9
BLAKE2b-256 242d88f4fb1feffcfc80a638dd3a800d8d05cb190c59fa2d14d205810d729d02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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.24.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0e355410bf65a37288707f4474ce6e897042beab6943239b78090820fa3d1e6e
MD5 be5670e399416febf3b0d91b6263727b
BLAKE2b-256 42b2a96c64834ad96566b1a66d1e7e9f3879df149fb7ffecf81f583d7a07e436

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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.24.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ebde74df6683f489d02bfaf23269c7539350a4bfa34c060c00e9248e1a4c9145
MD5 783c99c4b2b9b5c3ebe5c4ece41e7156
BLAKE2b-256 5b7ba960d8c0b61831cdcc4a550b176a288a9c98c965b694ad2fdac49eb5c6a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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/39.0.1 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 3bc970ea5976e473bbe447b7bfd55fd53dc5b8aef45ae49012eeea7108c8a49a
MD5 34de3e55c6684d8d1da36a7b78d7e578
BLAKE2b-256 219745fe4111539f517ed30d613022c1ec0c4b30b5952360a822442f5455e026

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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/39.0.1 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 6e1f4b5eb6bf575847ddad96c75c2c126298ec593c3966c7b41d47266fb7dd1d
MD5 d1694e617d1c0d940be2a1443e2bf29d
BLAKE2b-256 502c3f456411d6cd3f46b6ea6839c32a0550483d2f7626ce7cadd106a81586c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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.24.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 221e907878749309c8eace76f3ce77e8e34b80c39281d8b2c3a15235f5593928
MD5 d57ea6d82164884d4f31a0841c9ade70
BLAKE2b-256 b7c2ef93ba59e5e002bbccc3fd693ea74935463f03121ad0b673204da77cc132

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 719.6 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.24.0 CPython/2.7.14

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2fe8330a784556860fa778ce6411415e9f9674a527da5d770cf55a751f15a69a
MD5 af9e1374cc2129535993b12338312f73
BLAKE2b-256 9c105b8e586af1f0ebda660a7afaad18a9c11fc471c93388894244bd231751d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.2-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.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for pyhacrf_datamade-0.2.2-cp27-cp27m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 93ac7762374e380f5035cefedd8a2eda320dc292f04049c8f163c0e1c34146e9
MD5 dabb4990070ccc8ab52ff4f517ea1e6b
BLAKE2b-256 b466926b9fde4e4bd52b20d087c0cd73b8afd8fb48820814378d38803f5a7f9b

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