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.

Part of the Dedupe.io cloud service and open source toolset for de-duplicating and finding fuzzy matches in your data: https://dedupe.io

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

Uploaded Source

Built Distributions

pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (249.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl (179.0 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (193.4 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-win_amd64.whl (184.5 kB view details)

Uploaded PyPy Windows x86-64

pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (249.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (242.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-macosx_11_0_arm64.whl (178.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (193.1 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

pyhacrf_datamade-0.2.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (252.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyhacrf_datamade-0.2.8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (254.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyhacrf_datamade-0.2.8-cp312-cp312-win_amd64.whl (192.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyhacrf_datamade-0.2.8-cp312-cp312-win32.whl (162.9 kB view details)

Uploaded CPython 3.12 Windows x86

pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pyhacrf_datamade-0.2.8-cp312-cp312-macosx_11_0_arm64.whl (202.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_9_x86_64.whl (213.4 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_9_universal2.whl (404.2 kB view details)

Uploaded CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)

pyhacrf_datamade-0.2.8-cp311-cp311-win_amd64.whl (190.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyhacrf_datamade-0.2.8-cp311-cp311-win32.whl (160.4 kB view details)

Uploaded CPython 3.11 Windows x86

pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyhacrf_datamade-0.2.8-cp311-cp311-macosx_11_0_arm64.whl (198.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyhacrf_datamade-0.2.8-cp311-cp311-macosx_10_9_x86_64.whl (209.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyhacrf_datamade-0.2.8-cp311-cp311-macosx_10_9_universal2.whl (396.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

pyhacrf_datamade-0.2.8-cp310-cp310-win_amd64.whl (190.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyhacrf_datamade-0.2.8-cp310-cp310-win32.whl (161.9 kB view details)

Uploaded CPython 3.10 Windows x86

pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyhacrf_datamade-0.2.8-cp310-cp310-macosx_11_0_arm64.whl (198.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyhacrf_datamade-0.2.8-cp310-cp310-macosx_10_9_x86_64.whl (208.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyhacrf_datamade-0.2.8-cp310-cp310-macosx_10_9_universal2.whl (396.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

pyhacrf_datamade-0.2.8-cp39-cp39-win_amd64.whl (191.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyhacrf_datamade-0.2.8-cp39-cp39-win32.whl (163.2 kB view details)

Uploaded CPython 3.9 Windows x86

pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyhacrf_datamade-0.2.8-cp39-cp39-macosx_11_0_arm64.whl (199.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyhacrf_datamade-0.2.8-cp39-cp39-macosx_10_9_x86_64.whl (210.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyhacrf_datamade-0.2.8-cp39-cp39-macosx_10_9_universal2.whl (398.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

pyhacrf_datamade-0.2.8-cp38-cp38-win_amd64.whl (193.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyhacrf_datamade-0.2.8-cp38-cp38-win32.whl (165.9 kB view details)

Uploaded CPython 3.8 Windows x86

pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pyhacrf_datamade-0.2.8-cp38-cp38-macosx_11_0_arm64.whl (195.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pyhacrf_datamade-0.2.8-cp38-cp38-macosx_10_9_x86_64.whl (217.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyhacrf_datamade-0.2.8-cp38-cp38-macosx_10_9_universal2.whl (401.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

pyhacrf_datamade-0.2.8-cp37-cp37m-win_amd64.whl (192.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyhacrf_datamade-0.2.8-cp37-cp37m-win32.whl (163.8 kB view details)

Uploaded CPython 3.7m Windows x86

pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

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

pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pyhacrf_datamade-0.2.8-cp37-cp37m-macosx_10_9_x86_64.whl (215.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

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

pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pyhacrf_datamade-0.2.8-cp36-cp36m-macosx_10_9_x86_64.whl (209.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file pyhacrf_datamade-0.2.8.tar.gz.

File metadata

  • Download URL: pyhacrf_datamade-0.2.8.tar.gz
  • Upload date:
  • Size: 355.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pyhacrf_datamade-0.2.8.tar.gz
Algorithm Hash digest
SHA256 bbbee0ea756d6118d62de3731c9f713106ba49b14eafb01b88e87aa5b962f201
MD5 fd7cd3b5f636a210a9d6c1f1f805e111
BLAKE2b-256 ed15fce370fc2e493e3c847420d4b7c9fb54efe5ba5f7decae9fdcca6bbdf2e5

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2c4f8ed105f0efa71ed6189ac40f4ce123d8c20c69861b91c0444f5e0602632
MD5 183194c6a7a21832264f266547a9181f
BLAKE2b-256 c8d72925cb41b3c29144830306cf1a91eed4b507c8b88f5e12c25f77bb30ee23

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9838b9b886d039f982916442a06172ffdf623bc284e4f9c9a39eb3934af5e0a2
MD5 fa7f33b64b6a6d6954f44c81db30ed44
BLAKE2b-256 d7cd726c282edea020569f3064c36d345e20e0358f24383114a0f05771ac5d71

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 576029ef98f405c0fab9631906d9ab59c7ca3170429f7aa4fae8dd08a0a7b096
MD5 ad2e554d591dee45752d975ab315c065
BLAKE2b-256 a887117879ead91775d9bde6b8c885c158486aac39e17dbe097475780ec016b2

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 24d97f2f8065e812755957c73cc1550ee17b542bfd175b7ec863df5f565fedc2
MD5 7dfc93a420a32cd51eebf0a9384da2aa
BLAKE2b-256 ca8d28def1dfef664a9c9828982fe1e804249682e545fc9f31722d6d5db87c62

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c932d12b1c747ea198a94ae1a8f8270b46a884dff712477942d8f1fae245d0e0
MD5 1595a0090cc71631fe972081a1bf72a3
BLAKE2b-256 e15ac59a5762ae38acd7669cdea99559283c3dc87de942b4856a26fe7e098df0

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20238b9f65c087934da7a21550f6d60668f5870b9c8b13152dc6c17133459254
MD5 1338a497f480aa6a76b758b8480da6d3
BLAKE2b-256 0ef39eeb2a98d21ab195cd3ec5fb3e1241e709264d4a4233154cb5f09a3ce08f

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1617f8a2ce127030be919b02364305dd91fefabf55fde0a07731d1f3fdb832d5
MD5 3065bde34203bc21b33035e8d73e5469
BLAKE2b-256 615d2493f4d98b3e885451b983e97c7a826b0f76b534fefcca85e87be982ef61

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7334d0e96c0cbac97207ca32db075b8e08ddda3acb05e663c445cb280b4ae168
MD5 cb159aa5f401c68c05089fca00752e48
BLAKE2b-256 9f91cf9a1f127c2c24648ad17e50ac5464557ef9e8b67e5b2b814935217cf76e

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 522e726bc2a41c26ac8d48cd73aacca5d0752b316a29c2d53cde3117ebae2d6c
MD5 f017dc9daec5535e47c46e1406654bfd
BLAKE2b-256 6d8f1c9633e10c4d42200c80bf1ab3e917329d2ea82b3157e09b3bce57d129de

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7044d2acdea0fd219bc17fcb19191ad2c2237643b3e94d208efb65ef804c8ab4
MD5 702964cedfca8a07bc970782e0882a76
BLAKE2b-256 06eb3052610f890df4c385b337ff20d4c623f17f49fbbaf0ebd03ad6c79c3c87

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68b1e62ea62b7033bccf4f0d46141f67ecb8f1a02285ba2edd9bfc252643e572
MD5 a9e5dc0b296f501e00b80bc01c6d6416
BLAKE2b-256 6e54fda3a8586a057875109edc05f115fbda9826b205b77b8460719d33a6afd5

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b9e982a9ed8ea3645b5fff199b28959386c885acd1155a5a15dfa0b4a8f100ce
MD5 984bf7f75063df044b01062657dc6bcd
BLAKE2b-256 3061d42b960a902ec12290ec46d68709e05b88daacec6950aeec9660dfb08c6c

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c027fd9cb1d5088428c43052c2f4d94454401b1b1e8849ce8795175f6f8a4417
MD5 bbc9cc2e16cb5258dbe762d32b40e4a0
BLAKE2b-256 221ec9d8c47f0234faac2c304f4a75f6906ec104821fedfa0df11e8d74ef2e6c

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f1e0a02d6dc3060fa23ca52149a8b72a22b90871c2999b1dd52c9d3dd65c383
MD5 6db04e233137d73c91979d590c5f1947
BLAKE2b-256 bda34c2fbe34aefcd9c6bfec200fe4eb7692c3629aa573ff1b8ff47b57dbe6e2

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 532505f9b845d92ace5e9567bc9b18b232ebc67f2db7335db07654a182b23ed0
MD5 500027a48ef6d7802bad6441944068a3
BLAKE2b-256 bd0587ff3feb85253bc45c892ee0ce07bffa994eeafe3733aa27a48de53e5a65

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26537f4ed7f2b9705b639aefd5e558a925b8c67440e44d551aa89216608a29b2
MD5 33a1f2ae9c88ba2895e2a208ebc3bcb9
BLAKE2b-256 c8ab2d0c4c6df61bc81d14f4ea228b80a7f787ac36bc1e9daa011efc2e4cf709

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abe91b20d995d2d66ac35cce367b624aa5be1ded986042e8e618243cadf87f6a
MD5 87151de00e1c051a16d72d188ca4a915
BLAKE2b-256 4dad15634e60bc247045d30a06ad48badd177eb949575954392de4aed0be6e53

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c68fd5639530a830729489bad42a8d843ed0361d23937acf21ee1b0864aa71e
MD5 ffc19df2a06921844ca0db025e6f6a5d
BLAKE2b-256 e23a4274e15d957fdc06821634b1ac42e25aac7048643572d9cac0b800ea067a

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8cab1d26ae8ee9f83bfd45caada99ffb325ed9c73d347162329ec01d5bcc7fbe
MD5 936849ada0325779407df18e32b214ac
BLAKE2b-256 91d12705ede62cd2ce3b58f1920fade3728989e0358796f86b9be531e54dd521

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e0f94b9e197b69d51966aadef0c27b70a4eba59d55cd5f97e3f5d6a2265ce5b7
MD5 2d7d57556900262940d99a9009c7999c
BLAKE2b-256 3a619740b1022dd46445fa964af115a52bfde4a30da09c7710d2c71e246f44b8

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 eec9b107adb1fc8845ada076f71f146a4307dc241f9222ef7e56ba91231ffa83
MD5 0e5f69d1b9d891eaea7f26083f7992c6
BLAKE2b-256 050439843ddd4a9f5aa0a69967e8e0760e90ecbc7f5c8802943d15906f902e70

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2ad35d3cc07b36f96700a1a48f738e8e0eabfd1a89222a75e1ac7e1ca8feaa4
MD5 899c2880c807f17a34a6b32bed18bcdb
BLAKE2b-256 b97f9ce637c220eb18ee1b392f1a42c2a409e4eb0ec7b977963ac56a9ffd2b47

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f0678de1b7fb34dc30b155a417ae3927455f67493633b4d1b29c0158ba0d49d
MD5 2f2a40653ca58ddd0e1a72fad1b72473
BLAKE2b-256 e0d85879e63f7667f69dd474212538d610bb1bc1c4fca73221f3fe449a7b6080

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19d91a7beade5a2db5432b9272c9740d4a3f90d3864e267a6274cf646497494d
MD5 c97a9a87090435f4f0eeb3175ac90001
BLAKE2b-256 a19a68c60190b16c4ce2e832836aaa29adc2dee14ba8e229eed52855cf0f55c0

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 559dddb35889c5a1c852e36c2f677d1d0ba01737bee532b2b50eef545c6febf4
MD5 0bf50bb59143dbf820d5b2123d515803
BLAKE2b-256 5eba261c9ebca0df53e1e3ee861c360dff2126ff60eae574e279e565ef3778d9

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 43fcd235a042e049036994d8d5b4f326990d62329c859daf0ad74ead3136af21
MD5 a3167af12093039841f5668fe1c99940
BLAKE2b-256 27198d46d091a5e1872fc1c4aaa1940e1eba2b9a3e9170cbf3ad6baf12c4bd0d

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 13b3080b6613a1a4c131f354a28a91978f22c8dcbd3695fc35b009a6101e1b9c
MD5 ba644bbff8bc1dbc95825a0469ff0df6
BLAKE2b-256 d650ab170594bc12604cae7be71ceed492c8df7667492f62e10c90b5089c0a28

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3e8dc8419d58c9c486efc1a1d31608c2b8ebc0e3c587b2b38ade504a1077e0fc
MD5 3aeae2f3ebe1ced6fc22e92925723338
BLAKE2b-256 8e52858173a9fcffc952c431a76cb1f0fef4c4891bdcf0aa9cb5135a01d90f00

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2b92e3c53393cbc994a04d99d3689a814531bf3f237c25595539203d399d194c
MD5 4d28d088ffc00e7d90967bfb37e248e5
BLAKE2b-256 3f720f0148454f0aca66fcbdc0922a5b3c04d01ec70d0d5714db8cf836bef953

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17a5248ee1b7db83d420c77472104c950ef5d2a98ce811ff751679a0a77f31a8
MD5 4432c3f08a9fc64e5ffe75ce0954fc1b
BLAKE2b-256 60407baa77aef65b8a1442dc68216b664636a6b668970cca5581251338a483c4

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 997e91a3353d94651d7e46f02b349fdf5cbd85a86e50f976c17780bd04166700
MD5 984d99d6f1e80c3afdc9883f87931e69
BLAKE2b-256 2f586e97691280a673f0ebca7d81616ebb2fde61fd0b629141e49167b785613c

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36c6ade92e7d3e8fdc449e86faabc894589ab262d2d946b7c46aa7334766787d
MD5 9f8dac1d89d1102cbb05480df5f57fa2
BLAKE2b-256 9cb3095d4e5b562f860e12b82cbf4fd30bedcf41bae42a6c7a776419ec6f1fd8

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa6f2a9fb4fb1dc114b23554a4d6dfa0b3af5bf630341bd1eb0d2594f637fe98
MD5 8537e671e169da2ec48dc710e5bcaaeb
BLAKE2b-256 0b9bd7c02ce54672c845f5456b81f398feedad07a63b708057b22f2fc71fee4b

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ac07e4d37ab126a0c06fcbabe3888f8c35ffcfc9808bfc8411ae6c40eb374de
MD5 8991f57e50ce2f320d3bac1dd6c890a3
BLAKE2b-256 7462077097d98b040f4f7a95f5685e9b71c11fc08b9738fa017b9c34ca5e4fc5

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 101ff3a19498619122439b85fc6ebe5631ef25bfd1ef3eecea437dd66e0a6892
MD5 218a1c0eafc7dc8192952fb2d4e8275b
BLAKE2b-256 82d66586690fcce384370ef3cbe5f7748aae1e622105db8b4cecc42b9e4a1271

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 af1849ed213cd2fb6db4d5ba640d8d6b83488233b08bbb732303fcce39dcae27
MD5 4d8668edb532a055d150f61fa86e5300
BLAKE2b-256 8499eb235835b44381ad42883e78853af50fd252e0d723af63db9e72481943dd

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f8e05fd11b1d5255374dbd2c84f57419c3361094f823d3f7ac9bfbbaf020cd21
MD5 4fcba8d2665356664aac8d74efb8f761
BLAKE2b-256 e7b70654e9f4127c510ffeddfbdd81d14f839bd7660dde572cb8a404e00a2a9e

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e963a34d021a75ca17facc6fb26a663e4ed091e34b733a25586b94fe24cb7c1
MD5 eb211c09b30211cc6c44112ea7b03fe8
BLAKE2b-256 a9767b6c1bcf1dc767cab6fce52b013dca199cd64cf106c94687671e5bb301e0

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 947faeaf7cfcf7b98b5142ccb4e452537d7cff059236de94eecca323401a3894
MD5 f0bffbc37b2bc273a4c142813389a42d
BLAKE2b-256 651e7245d75fd9a74f0e6a230fda141190bdd3f6819651877f4b65fedf41d7ce

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff4978a0b263e6bccc919fab1198d43eb0b858f713e19c0ac91227471ccb0195
MD5 657d75aca3d84a987b59325ef70cb7ab
BLAKE2b-256 c85baabee15aa0e35ac240b246c94e66c69df501e1c1a4b7ac2a023f623a23df

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfff024413841fae29455731ab3e5581cf7a6835abd2c320834747348863f62c
MD5 74b4f7c78c358e5331e9f88cee10597c
BLAKE2b-256 adeaf55c5466d9209ea451cf6fb6b0fc5b360bbab3bba0353ed7d41c4c27cb95

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5bf52ad38a7dfa6c57a9dec01a13059cfe80c7ec16b2a1ce1f01c4cdb0bde729
MD5 a9d914526e4dd87dda9f4f9b19ef57bd
BLAKE2b-256 05c0b99c7c77b75a24a514b6292da04bd44a328346ac2e6eb240e58856b6a9df

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 924a481c450b7ca49ccadee60d65879d66b05d2ff2096775b966be3310ed2939
MD5 3054767bfaef2d143ce4122023abe74a
BLAKE2b-256 c93f5923b85c354150750cc3080eecb65dd4f903068e6380095a526293507506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b3c968ac302103a23a2d41ec52eebfaca7f81a49cb21298d8e24797beafae6ce
MD5 0d78978310dd2c91f08b72379a592914
BLAKE2b-256 9a4744de9276e2317fb1bd762bbc31a299b6dd46cd8b8ca201f9b893235e334c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7b5953bc5393d8da5c2d23745305ce48e55d4aa84f13434b7fd3f96be789edb2
MD5 5edd48e799c7e75c6f6ea93b2f68b9c2
BLAKE2b-256 6d620d9523820cb87bcd0bb35e144f62506a9ac78ec2b17751138bc6b3ed0e6e

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e743fc57ad959c4d6c7800c1c61585a6dd5b535378100e4cadd827d5b7321499
MD5 8af7cf24658e7f367bec2e56a1883e00
BLAKE2b-256 a224867887862c5b4a00a9f71ce676b209c5cffd578a849d3092fc5ee364aacb

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38a92d14592521cbdf696cdecc189f37aa36044161dce0b6d772e27b7104cada
MD5 6ad049feda49af8e9cd17cc5bbd4c469
BLAKE2b-256 6cafb7ade7a0e20c3a598ce9005caa1b8f5d00fa5f136956eaf6d48135cc7c1d

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92e0033199e6570c112ee90b7768d89fb8ce3c1b96880a096bb2b1f3c6982437
MD5 20a42acc580c2833d38ba7b9095881b4
BLAKE2b-256 bea3e16cf68fe87c264430abcc2535fe634920b977e172e28d2d67b31893e9f1

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 072263123ec42797633717dc4147fa1da91e692743328c69681c448081d57ff6
MD5 7967d7af90af3318701f1595cb8a2d86
BLAKE2b-256 40ea521c3f2a8d54c7bd8b23bce800e871fee4c6679769814ed6709986c059b6

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4bb2e762ba9bcf4a26a4efc6b3aa1c7563688e7b7cee3eb6af0f8fcf1ddd2ac7
MD5 c7e10836c2685b11fcf071eb4094a21b
BLAKE2b-256 24c4bb0e49c78f8d3192d57c7f053ba7e1c9ee81aa8d1f9a91ec21fd8d052d6c

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7a2688301d045c5bfd34da58d957044102f56de12e1bde346d54a6811ddb1de3
MD5 ff217d679c8d0bde5bafa2e212d7cf2b
BLAKE2b-256 a7c63c6d2156b0a325389e2c4569f96f2afbfacf0b679020528c1d3e22dd1102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ab785fd43b882ba978af0aca4234287123aac518d4db073b52f909ca66d3a197
MD5 b268e8330fb5226d3242fee26580b807
BLAKE2b-256 362e32cc87fb82164c62736ac78a665097eee74dc262615fcb311252309a6d0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8e6d9b3a2d8f5e6fc15a1a73fff642c8c54581e4e63533afa39238b041484374
MD5 89861e96394b26154388d5d62ef4701b
BLAKE2b-256 7724cb76a9ab13e2edccd10d830e399acedbed50b76a315cc939c3d7fe71d922

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46cffbfe68d30ca71c7da6113a818b7d79914a2aabaf803a920e5773a928dd36
MD5 12651993fdf1cd42afa3a8a9bd600e7c
BLAKE2b-256 f38e63fbb77724443a52aa1b929ba7abd3db9f054c0e5aa8033f3107256ba68f

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 05f3fd115232043f9939b92b991117fcaebb5adacd8be6b1a85283d112886990
MD5 a650517ed42f11d3efa3c68e731581b4
BLAKE2b-256 2276451220a8cd5dfce29a431304df96f64497ac25691a15d75b1792307a04e4

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e199f45aa630e7926a0be2efebf8605661ffa6af706d8c43e27d70ff201704f
MD5 9c99eb7379b5de033ca204d71327156f
BLAKE2b-256 51dd0c1f579df7dddf5b5032b4efc2cb8ba3e2728c7560a0ec72a6fad959417d

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b8aad9b682550587b7af332212f01d7705b0ea8e9658e83da3fdfd706435611
MD5 786abb054ce9235756624e2382b1e8de
BLAKE2b-256 d5f624ec3addb8230fd9e36e65f62458a2741d6b5f15d23a68888c612acfa3e1

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 214ca6e5bd722afb0d76a2642d726329b732577f5be65e502e062c3ba2ea70b6
MD5 27f5c8db6e2d9fccf28add6a62d59c46
BLAKE2b-256 c4f085b62694896a0a690ad6d46531ebb46093fff72a084fca6f95266d6b3ac7

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eccfb3898440baa28abd5dc77134962c91d667ce9c9d67403a6f32e6197022f6
MD5 05a9ea488df787593203519a7785cf88
BLAKE2b-256 86d3afecc28e2115ad6d80571d1b33dfefb1b78bb814c511c17bbc0aca87139e

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4f3c5cd8a380c6053bf66ab23aada853b77caddda4ea2ab63e4d402271df3ad
MD5 6677bc3acc4049feeda2dcf8b430a44a
BLAKE2b-256 356cf43a293bb2ddd021564c06f37cd2c2154d62b4e83bd3c98b7e59e1eb3947

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.8-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.8-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa9f6cd5ff1a0b05386f5d18c6fd5cfb5da544f813969318749bd4e67e1528c0
MD5 3b6d370b03221f7af04840c4543b8b55
BLAKE2b-256 f3e825e74b47a88cde8ec9de001abf0ac9b24a9b02a5abcd76ba238f3bcfd0ff

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