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

Uploaded Source

Built Distributions

pyhacrf_datamade-0.2.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (255.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyhacrf_datamade-0.2.7-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (261.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy macOS 11.0+ ARM64

pyhacrf_datamade-0.2.7-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.7-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (194.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyhacrf_datamade-0.2.7-pp39-pypy39_pp73-win_amd64.whl (183.9 kB view details)

Uploaded PyPy Windows x86-64

pyhacrf_datamade-0.2.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (249.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyhacrf_datamade-0.2.7-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (255.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyhacrf_datamade-0.2.7-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.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl (178.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pyhacrf_datamade-0.2.7-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.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (191.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyhacrf_datamade-0.2.7-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.7-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.7-cp312-cp312-win_amd64.whl (192.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyhacrf_datamade-0.2.7-cp312-cp312-win32.whl (162.3 kB view details)

Uploaded CPython 3.12 Windows x86

pyhacrf_datamade-0.2.7-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.7-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.7-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.7-cp312-cp312-macosx_11_0_arm64.whl (199.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyhacrf_datamade-0.2.7-cp312-cp312-macosx_10_9_x86_64.whl (221.9 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pyhacrf_datamade-0.2.7-cp312-cp312-macosx_10_9_universal2.whl (410.0 kB view details)

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

pyhacrf_datamade-0.2.7-cp311-cp311-win_amd64.whl (189.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

pyhacrf_datamade-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyhacrf_datamade-0.2.7-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.7-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.7-cp311-cp311-macosx_11_0_arm64.whl (196.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyhacrf_datamade-0.2.7-cp311-cp311-macosx_10_9_x86_64.whl (221.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyhacrf_datamade-0.2.7-cp311-cp311-macosx_10_9_universal2.whl (406.3 kB view details)

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

pyhacrf_datamade-0.2.7-cp310-cp310-win_amd64.whl (194.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyhacrf_datamade-0.2.7-cp310-cp310-win32.whl (166.1 kB view details)

Uploaded CPython 3.10 Windows x86

pyhacrf_datamade-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyhacrf_datamade-0.2.7-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.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyhacrf_datamade-0.2.7-cp310-cp310-macosx_11_0_arm64.whl (196.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyhacrf_datamade-0.2.7-cp310-cp310-macosx_10_9_x86_64.whl (222.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyhacrf_datamade-0.2.7-cp310-cp310-macosx_10_9_universal2.whl (407.7 kB view details)

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

pyhacrf_datamade-0.2.7-cp39-cp39-win_amd64.whl (192.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyhacrf_datamade-0.2.7-cp39-cp39-win32.whl (165.3 kB view details)

Uploaded CPython 3.9 Windows x86

pyhacrf_datamade-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyhacrf_datamade-0.2.7-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.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyhacrf_datamade-0.2.7-cp39-cp39-macosx_11_0_arm64.whl (197.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyhacrf_datamade-0.2.7-cp39-cp39-macosx_10_9_x86_64.whl (220.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyhacrf_datamade-0.2.7-cp39-cp39-macosx_10_9_universal2.whl (406.7 kB view details)

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

pyhacrf_datamade-0.2.7-cp38-cp38-win_amd64.whl (193.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyhacrf_datamade-0.2.7-cp38-cp38-win32.whl (165.5 kB view details)

Uploaded CPython 3.8 Windows x86

pyhacrf_datamade-0.2.7-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.7-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.7-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.7-cp38-cp38-macosx_11_0_arm64.whl (196.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pyhacrf_datamade-0.2.7-cp38-cp38-macosx_10_9_x86_64.whl (219.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyhacrf_datamade-0.2.7-cp38-cp38-macosx_10_9_universal2.whl (404.6 kB view details)

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

pyhacrf_datamade-0.2.7-cp37-cp37m-win_amd64.whl (192.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyhacrf_datamade-0.2.7-cp37-cp37m-win32.whl (163.4 kB view details)

Uploaded CPython 3.7m Windows x86

pyhacrf_datamade-0.2.7-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.7-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.7-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.7-cp37-cp37m-macosx_10_9_x86_64.whl (220.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyhacrf_datamade-0.2.7-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.7-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.7-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.7-cp36-cp36m-macosx_10_9_x86_64.whl (214.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyhacrf-datamade-0.2.7.tar.gz
  • Upload date:
  • Size: 352.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for pyhacrf-datamade-0.2.7.tar.gz
Algorithm Hash digest
SHA256 6e898ab725af37337773fc2076d617255f64db018f2dd486b9e4f8ecda15cfed
MD5 4598bfd32d04ab9ac49eb87840d6dd28
BLAKE2b-256 8c153efcd6dee878126355033f039168defd597678ea7e3db4a69d8e632138d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5c82beeb5d8a0afbb06d900193077688c8448d35ac53c5a33736cacc5dbf9df
MD5 ebe30f963951a1aef10a8a5a97ac1e10
BLAKE2b-256 46e22834fc858a82698ce37f15316f1f5c60377ddb0f1ce8457ff4bc1d5da6a0

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.7-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 75ba61fb054d5ed7dea8e084e5a265267fa1d28fd5689c76cacd15637549d369
MD5 7bbd8e4edac116b8268f816dd736d5ca
BLAKE2b-256 d637da1f75fc8dbe3fdb0ffa542190bd9ff81c74ef49bb58d0ec81cc1d197cf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30410fe3c3594ee5eddd5e287dac0ccaf1841964e757c57de0bc0ee49191f1d7
MD5 d97e689e01a795c9b5c2e567c1cecc48
BLAKE2b-256 b14b427621fc013605bfd05b0944472307241d524556841b6723d60fabea9684

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f57a0f53155e5556d3f7454f80e952f70ce35306bac701ebc7aac8e936c70c63
MD5 9e8f6efd3651027f61de4b8b92f7bbd6
BLAKE2b-256 e0a017bc5c7555c794d86d2420449c72d8a3091779145c94594d8d887ba4dd50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ff18adba4dd2687354b68c6e561bf28f376fcae4780190c451acfc9fb9ff2cda
MD5 625e29b075f1e74f06fb84da4e760568
BLAKE2b-256 d3515558702e3e3da53a17ba4eda8929eb323b3566132d4fc68969996f5010bf

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.7-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f009d6cee4e0db70a0ec38d92da7fdbcb2f4809ec9219bab73ce87736a49e2a1
MD5 0972c050560f1a28072cc2b12be948d5
BLAKE2b-256 7557815077486af558c5f7b07424d99062e7526fc0bb2367bd4d1ac450191e62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 343307cf93ea790993e87bf817405468c36d91c54be3797c80ba258595f29413
MD5 327ae4ebc509fdf6cc644f1d77ec7ceb
BLAKE2b-256 3892192a5bb9dbcd5347882c4a062d7b616f2ac90ae260fb0df86f9c191cd57e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7351cd6c6f681724c73645e862f9d294efa6be425f717aed55382962a8141acf
MD5 b1146d16d9b6af84b8b804972a5f51d0
BLAKE2b-256 d88b32f6161345d29b1aca8cd6add5f4d17a12875d071fefbde5fd815fdac7d8

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.7-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3b6f4dd66de8f67c606c3befe7a0f7469da50223b03fcb553ed10533d8eff5d5
MD5 f8aed369c9b2dc403f0c92d347fd0b1c
BLAKE2b-256 182fd647dcff7416a8bb5367f5a83a3d3ae48789c041dff1763cbfc017e765d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8f8c3881c88b6e9e1a123e1c6e1413c3735aa40a68b68fc0824326cf1d062f3
MD5 dfbb294e32e42369e691bb46e0e12d6c
BLAKE2b-256 ae018a7c5605d6ae79f381fa908e2e6f25f1a347482227d75d0573b711031477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6b59a5fa4d6f54528263705e3752946f93d9dbd38738268b5e14a4b11e289b8
MD5 fcbb4f99f209ab90ab44960d8d7a2494
BLAKE2b-256 f5b9c1758ccb24b0a32b4a4a6dde698dc97b86d1d9c048dc2573b70c4140afb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9e318ef83875a9995b024753e09f838fe8ff5e81fd348a854c93f463134abeb2
MD5 03f68e30195303b5d2ea4a7521ebf3b9
BLAKE2b-256 48530c8a0ec5d2ec8d90f715b329a933829a198616b8a8d5f7edca5f9726a46c

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0043840f2195770ecd6c0244b5d69156eac39dce22aa512e1c73f318c00ace10
MD5 e7cde004bfbfeeb85d9f8fc526f9b9fc
BLAKE2b-256 3aed142c7757dcf1a0ba9e48a4a12f752f67f1f46044bacacf90de0d89cf999e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a94e5984b58adbbb073b13bc26a79722f9c51ff1f8b74d424fbe97fd167ebec1
MD5 8e3851bd4150e40a36480f9f59c81d4f
BLAKE2b-256 73bbd98f2eb8ec0d066e432fbd3ab20c83dc2fb6fdaa66a5d79f1b92031ea3ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9215ac4dedeb8d695da7560dfb0ed9889890659d7922b72c0a1dd6ee8880e006
MD5 f9b96b9b0c9f6a6b8cea6895c86af02f
BLAKE2b-256 0ada037ebe82f3131d6edf4a71fa75c46ee845239d138eb2c80c386accdb7a8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ecd94a6d9d9a5d7ba99e18da894a7544b12a944eeb26e8ebdc6762d38ec16e78
MD5 c3c6451b516d16b118a4993507ae6d5a
BLAKE2b-256 383f8ba4858c5144ba89085d8a8bf3c7815d69815ffb3a655cdb1b47e8755a6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4943bb51bdb1447edfc88b7e99a5db1f6115a9360b9ccf85cbb3ff9a6b9c0957
MD5 db0ccbac0a20da0e7e961288019feb87
BLAKE2b-256 51146490cf62630decb7e54da8804af6c9aaea13beaaff57e2a95bec4cf68b2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a17615069c034a4500dd1724f4b0ea8a3bd2a589fd6bea5f60f1e7caa6d4d63b
MD5 c26250545d93cd9b43c3061ddf8ec286
BLAKE2b-256 3707b2c9ba880dcb89870765f1e906a48aa66c1b009253c03ec5980110c41259

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 684e925bd50050de8c82a05e0337259c19fa9bde6aa6632c32e0a5e55ac92694
MD5 351e77f71d818c94130c079a1b158d47
BLAKE2b-256 434c0fd3501dba9dfde13921f19fa8a72f53a388f039fbfd21afff562752d5fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d32fefa64ac6263315ead46f521186f77510ae262d3dac6cb7c598940fa73518
MD5 9920b2205d29aafb334854d37f4d3201
BLAKE2b-256 4c92ff8d0fc9180931562efd2d914b3ced5aadedd79939bfc22fb74278f756d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00bf427558805d74d88c41308e5550ae4434dba7fd7979c7b64adcbebd7a090f
MD5 2982c1ae0388455cc52c8f855a8c0dae
BLAKE2b-256 f1eeda09ae2fadc72e9a82e67382e784fa92d0dfa545a63b81869fdd50b8badc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 afa5718653af19a53649c8ac6c6ee4c50fe40324543d1c098df23a0f195c76d5
MD5 2e02c041ee5886b4d6324166342ba1f6
BLAKE2b-256 d61b8739a6417bc0c85aa1a9754568db80f2debd2ba5d686e55bb03b15e3da72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d544af4504a1d61d706cef83dbd91899da29d91de043cadb758377e68db01774
MD5 00119912ff3f62fa412221bf2ae6e99c
BLAKE2b-256 3eade7d8c584c7c50ad13322f32db275efd57e8dd6555b2224aec5a356f034ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3ef8def9fca0c0f46849ed9e3de867dca1ad1138979e1d95b9dd4cdd86a8a6cf
MD5 790e40a0b85f287f609244c1109d8178
BLAKE2b-256 978814d94ed8133a1a8dcd2de73115fa58fa2a4436eb3d212d2e6e8bbce62961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c504ae8466d38aba79710515afa378f86b6e6914687e5c62db93e72f8b74926b
MD5 bf4be4ac6c5e4fa8cde69872660076dc
BLAKE2b-256 3456d18ebbbdf0823d5a2d0f58583fa69e68db001a0b0d4b9cf7a7c96df9d55f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34622506de137fcaa8b7e14cbb13816c4b4666624659dbf8509a6d4b88060b13
MD5 4aee74c5e130a07ff4da35031498a143
BLAKE2b-256 f55b15a756a403def35593d5817d0e30d7bcd2e307cdb997877d5c690cdb8342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 87f11fb28714a76244782d7b70e75d89a3a203b7c6751c3b78e634107f4dd25c
MD5 2d324cc7adc00725a53c79782ed90161
BLAKE2b-256 d889f189e56609be922d9b90c5944a1a9845a44999735f9e93738c1bc3d92e14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7dd70147b25bbbc3cf7de840020ebb09e1e85dbc06bba81be3dcffb3346bcee8
MD5 f4413d7c5f128ec4b4d93f4ee28fcdae
BLAKE2b-256 f040b4a82f63eb42dd0640d5f5ab19ebcec17d7622200442e690d469a4736446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d764bffdb1900db39cd1e755be7fa37b97af78510263c9d4591a3c05556959d0
MD5 368a532f64562d1d14ee6b45ab35bb2f
BLAKE2b-256 e8fd4b75b9bb6d4d1b596ebf7798ce3b27a355e1c1a6298cf89c708d187c1a17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0c8fdf324e7b462469d0ff6fed4feb7c4d1a7ddd2924bf46405fd0c82126719e
MD5 079fd2d052abc1a2102a0786b67741f9
BLAKE2b-256 419f92a14e4e42467256c9ad3ea8e4b03ec2ee989e249b30eabc304135820f9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 141a77c3f214603e5792e2df03693cdf544bd4184f372db1133ca7f7be443be0
MD5 16c16f5e8ea4b5afd017c33e11554975
BLAKE2b-256 100af9619d0ee20dd525807c9de8724621724f25a1a276557e82f523e7c97268

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9fa380c0923e22baa35a3636cf5bd86e5fcd67ed0553f74567557d33a891aa6b
MD5 4c807c1385c8d62255c97116d0e05b2a
BLAKE2b-256 275414cd947adf68e60f9839890d6bd37ae3ae9fb65a230e56c4dcc7c7dc3034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d6f09e34d60892f0b4b2d3f69b997fa516fc351c5d1b89c87f43d05001d2d51e
MD5 a81951f0249fd11028b87049a3148bd0
BLAKE2b-256 ad52a362dc61c670bc023a9261f5b5095ca5f2d9568eb989f5317773ea51b9f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67237b1f8a1e9e40c93a7b3fbfebb0ab63a8b022738049d275a14cc671eca347
MD5 f2bc132f4d06afaa749916b6e5ac0816
BLAKE2b-256 9206104762e12bfc3cb81f65131228c109acd229421e93a802707a9dcfd93490

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 303a8ee95171bb3a1696097910a92eb9f80245e658b81620e6e5e36193ade705
MD5 b525c58de75fe388235fdf651f993ac6
BLAKE2b-256 511cb498db2f8e067954574f1cdc79ae3431bd284f9dffca56ee3015c9d36a8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3c28eb4ac540ae7fb29c2799fdd31c8c41dacc7c09a3696a6a7e2a40157f0ff
MD5 39ee9948b66a8a55c22c39efedbf8ff2
BLAKE2b-256 d03ee4ddc822bc82a140a6cad04503ebad80171cf07e72d2dc6caadc476599ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b1d7459041dcbf92742adf450a62bf22ac70034fc703dfb55b1807c8aff176a
MD5 a563b091c5a820eb2712e9394f9bae2a
BLAKE2b-256 90c125381c9397a483f4bc05453a98395b31a87b284b390eb739b525396987a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25aa887d25ab823b35edfa6db6c49488351121991944dea3c3151ff686aae3fc
MD5 3c47e2d519988d174cfc09ca84ff8722
BLAKE2b-256 9d6cf7d44201b7acb2db96e07c72435b37264433f3963b608d275933c136f461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2720a989eae33145522400b38376963360c87dad6095ce5caf720c789877a2a8
MD5 2dba8049fc45557b1d0f052d22d20efd
BLAKE2b-256 b4f923339a4ec9b989e7c6a456bf512e4cf95e984ff4864f5f02d7c901b1ac2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 faf7d8fe5814138323d69022c2605151249600f1a75cb7f4b7576d2dbd6a351e
MD5 6b747619818f295d948ca7fb0238cd69
BLAKE2b-256 1bcd4ab093003fd66bec87e2c52faea890b6218ef69a560947624b6d69fcfdd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5623b6b9b6820f6fc821ab4b48804852ed9f4fcc9244ea606471bfdcb7d45e41
MD5 2bf89e303d3fa9c9b44f87295fa61226
BLAKE2b-256 64bd8a2517aa873cfe7c51c27fd777288e53b5775277f42998c9a1e7a4cc39d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c87d06c86639e9d74d3d830f6a20c267b1e23a553d5631dba671bf10e8ef2656
MD5 dc3f05e39fd1ea5dda716084ec06aec7
BLAKE2b-256 f4265739ce18a9a9e7fc90ce5f880ae74da30793f7e455e754f34eea8634213b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33b50e90e564815505945dc21fd6285b250551ca690fe9bea2076e93f4c2cd6d
MD5 3db0b2674c2d97eb2c390cc2894a922b
BLAKE2b-256 8bf2e38eab7a0a4d795b649e3129b9876f294cacdbfbbaee1f3210669ac36240

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9728a710e373be4a09703083b949b85864f946433bcae6555ae5c372b48effc
MD5 6637ff97fbbb3f65800ba0eafc650dca
BLAKE2b-256 b8911be521cc7e30604587b7b10c6c421a688f625fe152b331c815c52d8676c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa3b6455dd65ba9b5b86f0ee4682283a753725fc589c4d46fbee2a5f5e919fad
MD5 e749ee9f5fbcee8d03103135740d9919
BLAKE2b-256 d06c67f3003e47a2632871e3a402e7ac1a38d6f7b443e006d2d42f87c56ac3a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dfd7e7c8fc3293456105589e79387b362186f04b4a2601c0a7ceb4dbc050f969
MD5 8842019a3f7d717cc73dd8df6d7afdb7
BLAKE2b-256 0f0f109ce9b835e7cee68cd28e892d08a326d3dd72f2a70cc71f09aa69065b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 31ed43167fa65447a367048b8c95c2f5617beec156776844cf7027e80cf8cf88
MD5 9708f72eec7f3724b6ef1891759372cb
BLAKE2b-256 3075d8ef07efbc7dfa9d04ce4b11eef90e409b57d1664bf543fb5a5283c6d0fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 54046405bfad4190d3c26107014cbf1316094e15712405448bf5ce100544e268
MD5 aa8585e72df710755af72abdfe67500b
BLAKE2b-256 1f8288f1d0cdae54072a4a57db5b3979d5a1070bec7c09392780841ceb1412e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0ec391240fa1347ccb9e390baa6c01fa3cd2e1c74c98808fe457167f3e5ac5c3
MD5 73a8977dec95e1b3973c96b18d8435c3
BLAKE2b-256 62443db35e5c0e60659beb9962b606433f27deceb62cb4792a56755dc2e82792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0df832322553dd51acf54048989a558c7968790653447b07e0be2cd6d02d30d6
MD5 44e5edaff48bfbb5b87180d2c1a58865
BLAKE2b-256 0eecea79091c67fb5a5bcd210de3f20ef02ad3e7b28e89fc853c013260ea51c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7b38220782312a43309ebef27e90314e32ba98b3dc40e820185e263d3e737fe0
MD5 0abcc1c958973a6bb0cf2c947349b718
BLAKE2b-256 86257afca19e9ae93824a37fd5c4fdca13e137f3b0a82916b4c3d5497017f197

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66367ea7b4b1eeb26f19fa2fb1e449bd2fabe734f265124b14b13165cd6e9edd
MD5 67ad2c244a54a589864c992d7916ac03
BLAKE2b-256 b1f970ec83a6134ab228785473d533b38be2d85ef75465c4eb8f5c816bcc61ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c54822540804092ae9ffe4d94e9ef0aafe02b533f6283201b27caa53280e148
MD5 8c703c58f1b91490c00a0cea879e90f9
BLAKE2b-256 3ccf4eb3fe7091918fab66da034c6b15bb9ae9e97ff0bd003585f20ffc89c1ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3eb0747a89cefed634f162013bdf0beacc11ce5aa171742e460cbe927c3fe53
MD5 a99adea8a5c2a2dc16ef2db29e5e40ef
BLAKE2b-256 cacae6010bfe4470ab528893379ce28b2d6b71859d1c5b5ead287b7ac6693d8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 59652ab9054b3bad23fb87d3cb18f7fde2b09bf90e2cbab1cdbaa7a0a4d488d9
MD5 975c1a3f4326fa98d043c0a889537e8f
BLAKE2b-256 716d37696c2120c2d8f20abc7971177f08c3786a2d27c0c96142a6f5ccafb313

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d22fef98a60c4e63af91c44675d4746f71ad9fdab51f692892a5568f48d17fb0
MD5 89e6532d8da1bfb301540b7c81f0712e
BLAKE2b-256 fc83e359165c2644de98e5f726ab342a9176c7dfdffdf39957f2b65cdce9d600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b28be11deb8d5a36f52181c58c31513e66b687a303b92bb103a243e155e7fd96
MD5 af2d27de269c4d7a47e0fb26f95dc565
BLAKE2b-256 de07e797d143f451b335527f4eb9ef984fe10886ae3f5d15e87efb7e6ea99163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 659ff40c9924592bab6237f398417b4a4481e5eed477bc2776fbd40fb6471cb6
MD5 5ca4eb74de182728ff236e7ad025833a
BLAKE2b-256 1bd443efd13ae0e332a5455d77e603b47d172d57ed0ae3426f2df8577a4e7ad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3c8f66281f3c2bede355c8d1260efbbc9982d9513624e696de06af73fa507010
MD5 cc0d32f6843bb0800ce64d26b4baf7bd
BLAKE2b-256 1d074585241c362dd9deae4edbeffdea27b21704c28c0aad6118c6b25f9e9e84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 285d822b563457632433a4d99c7f72d04154f67f0f1e4439196b1dfd74c6fe66
MD5 24d20620a73a11ce97f1892441bd5bf9
BLAKE2b-256 93bc44442d4b7981622d8634158f8491fdca8b92ad8cb3090141ff2d4e14016c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e5f553227c0833f0e9256e32e386eb7e2c72025e054ab6aac8b0c20face005b
MD5 7f98976e42bd52172dfd824f9683ac50
BLAKE2b-256 76d6997e85cd0160d625b84c07f48d701a55b0287c643fadefd3dd3a360876a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d923f592532969f59adba8b13d5d34d793f94e5bab8fedc71a0db24ea106907e
MD5 0b7f9e57c45277afa46f7ffb075241aa
BLAKE2b-256 a5c16f5b784c81a87f96d0563b76266f44910063c9511118a9c0a51cbb7a0b02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 59cf4ab5cd3f2af1bd64757f3aa9a3e511c455cac14a2b634c2d4e8f823cd93f
MD5 a18679c66bc07a749afeb597d45994f4
BLAKE2b-256 6b6e5f3070aa90e2c9f06dcfaa92531ae94ce795c935d8c8fea5fd29e8a407b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e22409ba3c5377cdde09396a6dc2169f2838915b45d5078fae11dd49751819f9
MD5 7bb5e2574a7e08fc82caa9c8c2fadc20
BLAKE2b-256 842be261f2f87cf2a1b4b48771907e009a28a63a836883cedf6d176393d34956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.7-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 397a163eed935b41f4eb46e587eeb497a74fb7ad3a2662dd504b4ef122d4aa3c
MD5 ddbe554e61a5010b9a7ad85459c9361d
BLAKE2b-256 ef3e10c10e41989b1a900c4d4d39cf912f4eb0c2cfc8cabb9faa0ca9872f6bc9

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