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

Uploaded Source

Built Distributions

pyhacrf_datamade-0.2.4-cp38-cp38-win_amd64.whl (186.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyhacrf_datamade-0.2.4-cp38-cp38-win32.whl (152.3 kB view details)

Uploaded CPython 3.8 Windows x86

pyhacrf_datamade-0.2.4-cp38-cp38-manylinux1_i686.whl (771.9 kB view details)

Uploaded CPython 3.8

pyhacrf_datamade-0.2.4-cp38-cp38-macosx_10_13_x86_64.whl (207.1 kB view details)

Uploaded CPython 3.8 macOS 10.13+ x86-64

pyhacrf_datamade-0.2.4-cp37-cp37m-win_amd64.whl (182.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyhacrf_datamade-0.2.4-cp37-cp37m-win32.whl (147.8 kB view details)

Uploaded CPython 3.7m Windows x86

pyhacrf_datamade-0.2.4-cp37-cp37m-manylinux1_x86_64.whl (787.1 kB view details)

Uploaded CPython 3.7m

pyhacrf_datamade-0.2.4-cp37-cp37m-manylinux1_i686.whl (735.9 kB view details)

Uploaded CPython 3.7m

pyhacrf_datamade-0.2.4-cp37-cp37m-macosx_10_13_x86_64.whl (204.6 kB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

pyhacrf_datamade-0.2.4-cp37-cp37m-macosx_10_6_intel.whl (373.1 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

pyhacrf_datamade-0.2.4-cp36-cp36m-win_amd64.whl (180.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

pyhacrf_datamade-0.2.4-cp36-cp36m-win32.whl (145.1 kB view details)

Uploaded CPython 3.6m Windows x86

pyhacrf_datamade-0.2.4-cp36-cp36m-manylinux1_x86_64.whl (787.9 kB view details)

Uploaded CPython 3.6m

pyhacrf_datamade-0.2.4-cp36-cp36m-manylinux1_i686.whl (732.2 kB view details)

Uploaded CPython 3.6m

pyhacrf_datamade-0.2.4-cp36-cp36m-macosx_10_13_x86_64.whl (204.3 kB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

pyhacrf_datamade-0.2.4-cp36-cp36m-macosx_10_6_intel.whl (370.7 kB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

pyhacrf_datamade-0.2.4-cp35-cp35m-manylinux1_x86_64.whl (778.2 kB view details)

Uploaded CPython 3.5m

pyhacrf_datamade-0.2.4-cp35-cp35m-manylinux1_i686.whl (723.4 kB view details)

Uploaded CPython 3.5m

pyhacrf_datamade-0.2.4-cp35-cp35m-macosx_10_6_intel.whl (364.8 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

File details

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

File metadata

  • Download URL: pyhacrf-datamade-0.2.4.tar.gz
  • Upload date:
  • Size: 290.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.1

File hashes

Hashes for pyhacrf-datamade-0.2.4.tar.gz
Algorithm Hash digest
SHA256 5a617e3c84e799293065bc70b13350b743c0ee33b48af0f99f5c28ac5f7da304
MD5 3498010fa98df440dfa7314ddbb58ca4
BLAKE2b-256 a3d93b5e930fdf3d82bcb50e139425d003cc6e5dd453869fea45017e29ad660b

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 186.0 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.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.0

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9bedc9d4e8bb340bba7210c30d5ecb02c6013f52f1f2b58fe0f4c411ac3ec498
MD5 9fa91b63127eb0fe416bb0ccfba1d44a
BLAKE2b-256 8fc0f9b3db7328cda32f00ee4159ec8ac9329eae56745001b37f81ff025a7335

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 152.3 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.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.0

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ba1b638c22ca9f8a024affb9513a3398169819b7223d73556cdfd63e345517d8
MD5 82d30ac069a1a36ba1c15f3ab8342370
BLAKE2b-256 d169815fa60b36109e51b691a9f0e9200359493efd3a9188c0d957922cdca351

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.4-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 826.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.7

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 220a3b62888638ab91324de19b0367e33e991a6f3dfc7c328ad15a2bd9a64209
MD5 f225acf94d9b530f226e28fb6213e42b
BLAKE2b-256 7824a3cc1fa3e64f53fb0488f4e054984e2d99ad190f29a8f96ad8a084997ecd

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.4-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 771.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.7

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 95057910daa1a70d3787038c812d97544394e464644d9a6d96cb320fa20e77f9
MD5 7004e47eb589268ea94548cd3d00d738
BLAKE2b-256 456fce1260a8c1bafafb583cf8a7fc60e88df3a9d35ea44af590c34e86798f48

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.4-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp38-cp38-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 207.1 kB
  • Tags: CPython 3.8, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.0

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4ea6133cf169a7ed1ee097491932229510c104996e3a08163cb637fb32ebfc81
MD5 845f23004fefdcb524c604bed4fa60a4
BLAKE2b-256 eb04c0c7f95711f6c8afbe9421d3f467f0c20e169141df838ac879354b8bfd22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 182.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.5

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2646160664914e39d028721c20a607ed09731bfa3a7ac648012b719504ed174b
MD5 a05c33e1182e1c91371ca91130182225
BLAKE2b-256 1b335c38f35985fb6d2d50dcbbeaef8ae24e5639edc11ba50e7ee053141c6ee3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 147.8 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.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.5

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a785513d9f8b17c3b6b0d24236d216a82a25513aa2995bd63c1e28b1185ea1a8
MD5 5e6a2325633e6cd0aa27a0c09a87ccf8
BLAKE2b-256 cb7e7fab8f45b62b88d3e9d6483e4d4a8c5ecece0b8b2ad33f29947e68c792cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 787.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.7

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7fb4ddf91da3263ae8eef60557a8cea3fb26a062667a2c8c154c4b8b51293d72
MD5 287512982495db995fad54f6438753fa
BLAKE2b-256 2e324a55005d60f6f22e11be118df3b1586ad8ccd14f0800733fd94b75c6af13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 735.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.7

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3283442620e3aa0311ba9fbf2d3904e87456639af2dd3d33f5e332109d77088b
MD5 d9079ca77c487803bb5648c296198d1b
BLAKE2b-256 4963721fec5787e97d9e4c86c553fc6ca1cdd71789b442fa3ed1ac55f649ad0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 204.6 kB
  • Tags: CPython 3.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.5

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5bfe29f54acda3eeae5f2001a069c36e77d33155d2f2c5a230c7eeb8d6e3a28e
MD5 b132bd7f7b3b32366bed5d4f7df5e11d
BLAKE2b-256 17aea997c63f8c732844e56722cc43d95d09b5a8bbe7a602678c9324e8d3d12c

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.4-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 373.1 kB
  • Tags: CPython 3.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.0

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 3880a9802536200ea8b9e7d07716f98c047beb655262f83880dacc34f1fa0ab8
MD5 48b7e92b985273e9296e227f7bbfcdc0
BLAKE2b-256 84cda70cbd2662d532e269b5f0941ef3c94ddf3624a0bbed07baa04342295587

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 180.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.8

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 76b14fad2b50bf11b6786b3879e9eeff32d19bc74de88c457effba233873f91e
MD5 7d5d31057d820335ce15398bcca101a8
BLAKE2b-256 46654a1082c2196b33433624d71e1976405c47f7607ba330a5f4f825a335d3f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 145.1 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.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.8

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ca65f2d07b920c030a500f6bcbe845acbab7a4d59232f88e42814cc77b78a4ee
MD5 c6f8fe6329b7d3a76da2420f0979991d
BLAKE2b-256 1cb26f34be367af42f681ef4a41893bbb0b34d91c973af3df3254ce90cc4e537

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 787.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.7

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 985bf309d7087f08ec3b11ec1e17a93f1d1c58d06fbe934b9f4d4ac0905dde39
MD5 0afb7518795726f607379202d0202b92
BLAKE2b-256 6a4dfdf5aba61422a370597b4b67d1362fecd1448c7444c0bc317a80e4d3d490

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 732.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.7

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5a5720ef0a2d4fa3eab749592864fb3683a7c9581c43d1e54d509289ae5d2873
MD5 6dacca0897b21ceb65c9c4bbe02c7090
BLAKE2b-256 ad97e4ee19b93691f29e87760d318a54d58279d94a7412429946c75af05221e3

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.4-cp36-cp36m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 204.3 kB
  • Tags: CPython 3.6m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.9

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b66310bae57108ac8509e7034642e701675eb2d95651a912989acf3cf6b1865a
MD5 9c57aab7bd0cf6dbe36aeee1697cd1ab
BLAKE2b-256 0ec9b1134948059b5a785d22215cf0087efb28f437ed44387e4d23759966775b

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.4-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 370.7 kB
  • Tags: CPython 3.6m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.1

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 fa1235c8b4dec83cb1c143cff27ab4de083e0d1c0703407c791c4140e53c2a3c
MD5 3a1cb1baf58266e6ccb2d8edc911a850
BLAKE2b-256 0b51c774c8b057d784eaa300caa2496196600dea536f85e1957885e08698c2ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 778.2 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.7

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f4f5a741fe3c98b67fc5731db0cbc6ffa7e59482213dc1b1ab4609feeec00051
MD5 c0f34a5db7a414fe536a808bfebf4be6
BLAKE2b-256 7d312e9319fe3764acf284872ba2a857c200901948c2c9951eb5f4ca9dbb5da6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 723.4 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.7

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 609f3b3edce93074a9af2d124763921eca99731af110a3a5c334bb68ebdd2104
MD5 98c15eca8a4e4809ed0371836882db75
BLAKE2b-256 25960a52467935e041d550bdf8ba2510f75f8c845572f19edef478e75611a5db

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.4-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: pyhacrf_datamade-0.2.4-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 364.8 kB
  • Tags: CPython 3.5m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.4

File hashes

Hashes for pyhacrf_datamade-0.2.4-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 1be6e08dbccba62aeb50991c971df7d740e529c632c0f61eae84ad2f7d4d8ded
MD5 54f25632d45fc7b1420a916c4b31f7e8
BLAKE2b-256 8d223da76f8b770bb2538d4e0cf0eddea749e8450245e2f3bf1d3b944b61d3e2

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