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

Uploaded Source

Built Distributions

pyhacrf_datamade-0.2.6-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (224.5 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyhacrf_datamade-0.2.6-cp310-cp310-win_amd64.whl (187.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyhacrf_datamade-0.2.6-cp310-cp310-win32.whl (155.3 kB view details)

Uploaded CPython 3.10 Windows x86

pyhacrf_datamade-0.2.6-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.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pyhacrf_datamade-0.2.6-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.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (966.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyhacrf_datamade-0.2.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (927.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

pyhacrf_datamade-0.2.6-cp310-cp310-macosx_11_0_arm64.whl (164.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyhacrf_datamade-0.2.6-cp310-cp310-macosx_10_9_x86_64.whl (196.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyhacrf_datamade-0.2.6-cp310-cp310-macosx_10_9_universal2.whl (350.1 kB view details)

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

pyhacrf_datamade-0.2.6-cp39-cp39-win_amd64.whl (184.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyhacrf_datamade-0.2.6-cp39-cp39-win32.whl (153.5 kB view details)

Uploaded CPython 3.9 Windows x86

pyhacrf_datamade-0.2.6-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.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pyhacrf_datamade-0.2.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyhacrf_datamade-0.2.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (955.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyhacrf_datamade-0.2.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (916.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

pyhacrf_datamade-0.2.6-cp39-cp39-macosx_11_0_arm64.whl (163.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyhacrf_datamade-0.2.6-cp39-cp39-macosx_10_9_x86_64.whl (193.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyhacrf_datamade-0.2.6-cp39-cp39-macosx_10_9_universal2.whl (346.3 kB view details)

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

pyhacrf_datamade-0.2.6-cp38-cp38-win_amd64.whl (184.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyhacrf_datamade-0.2.6-cp38-cp38-win32.whl (153.7 kB view details)

Uploaded CPython 3.8 Windows x86

pyhacrf_datamade-0.2.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyhacrf_datamade-0.2.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pyhacrf_datamade-0.2.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pyhacrf_datamade-0.2.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (982.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyhacrf_datamade-0.2.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (948.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

pyhacrf_datamade-0.2.6-cp38-cp38-macosx_11_0_arm64.whl (161.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pyhacrf_datamade-0.2.6-cp38-cp38-macosx_10_9_x86_64.whl (189.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyhacrf_datamade-0.2.6-cp38-cp38-macosx_10_9_universal2.whl (339.7 kB view details)

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

pyhacrf_datamade-0.2.6-cp37-cp37m-win_amd64.whl (181.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyhacrf_datamade-0.2.6-cp37-cp37m-win32.whl (150.8 kB view details)

Uploaded CPython 3.7m Windows x86

pyhacrf_datamade-0.2.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (972.3 kB view details)

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

pyhacrf_datamade-0.2.6-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (936.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

pyhacrf_datamade-0.2.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (980.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pyhacrf_datamade-0.2.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (880.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyhacrf_datamade-0.2.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (844.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

pyhacrf_datamade-0.2.6-cp37-cp37m-macosx_10_9_x86_64.whl (188.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyhacrf_datamade-0.2.6-cp36-cp36m-win_amd64.whl (181.2 kB view details)

Uploaded CPython 3.6m Windows x86-64

pyhacrf_datamade-0.2.6-cp36-cp36m-win32.whl (150.7 kB view details)

Uploaded CPython 3.6m Windows x86

pyhacrf_datamade-0.2.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (974.8 kB view details)

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

pyhacrf_datamade-0.2.6-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (933.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

pyhacrf_datamade-0.2.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (979.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pyhacrf_datamade-0.2.6-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (879.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyhacrf_datamade-0.2.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (845.4 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

pyhacrf_datamade-0.2.6-cp36-cp36m-macosx_10_9_x86_64.whl (188.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyhacrf-datamade-0.2.6.tar.gz
  • Upload date:
  • Size: 276.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf-datamade-0.2.6.tar.gz
Algorithm Hash digest
SHA256 cddbd89aad5849fb8fba6f93bfea177fd02dba1b81718fd215f57b48d3d6f5ed
MD5 a80b84eeefe63e21714fd7b8acdc05d9
BLAKE2b-256 2f47d2dea0847a98445d0faac8699f5727a747fb3a9cadb68eb8fbbcc5aa48be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e1933d8fb4a336a356f798ef30282d1c335b593fc0329f863eab9ca668599d5
MD5 5ed265ef1ae95494dacac4bb4c7b3baa
BLAKE2b-256 0ec0590e13d288d06093ac83e8c3405873f9fa29065dddbc186c67fa905f43a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fab680eb45905724b6f4da75b51528dc83ccf8ae33b37fbe4efad480856a0fbf
MD5 c649626942e841b7f4871e852aa29705
BLAKE2b-256 7cab2585ebd2746d79f122f4744ffb49ac673d1611ea19e343faf4cf2d0a7cd2

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.6-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f4af6cda0e2779f547a2035f0b400cce3ab8c26adc883b86ae164f3fdd246dcd
MD5 568cf8c343d9cf4a0dae9cb80356f57e
BLAKE2b-256 c1196a2d56dec837e2ba70645d1dbcb7da373c0d6423e1fa7ce4042256dee03d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 187.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 342dc4545a3669214ee8698260cca12b0ffa520c8b3c20c97c00b485e143e7d5
MD5 f99f105bf5bf5e207a88b9fe7fa4422c
BLAKE2b-256 cbe84fe94a33c6cf0b479b0b599889b2b2590853aa03b114bb8deaf68d7ae7ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 155.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b40219cf3bdf4a131d042822497b2ac3bfdf1e49ed9830606b55598772024f83
MD5 b8c62978759acb83c7e2848cef551de7
BLAKE2b-256 3c0b24ba22979a5f2ba926aaa32fe0fed59cd857beefb86f99a6eb6a6a78fdd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 102c7639ebf4c207a613d09f8829f0650c09b9e65ee7b1f885e4d4bfdf811911
MD5 638bf3e1f6e21db29b0ff2a6340b29da
BLAKE2b-256 07a69a5fbdbdbbd1a5ff6770b44f89f0fb4286d7a20927a2d6a9cd3173a8ef7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 039ba7cce48ba3cdca823364a911c085bf2a39d131ea5e98c274bcd1f61b4ad9
MD5 a93072c366119cbc30f8a72687068bd1
BLAKE2b-256 704b30919e54b2d8decb9f0b0452e6db9e43a0f42c40dd5971b8cf027c62861e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe475b9d98fe8d76f4852f260cbb94e485cab30beeb713ac8fdddd7a8066a49b
MD5 8e94ef8afb3a7d4a047890412bd6487c
BLAKE2b-256 a2a5e103d946d2a8d647f4af48bb4127c1fff7a841d4e250b3c84b6c1c6c585b

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4ffc93a67b6d28a6b641d15e3b2f3fcea55bd01517895fdab28c4e2efeb0307e
MD5 fc48ce762d7650997ca76575bc54a077
BLAKE2b-256 f8981bd5054892585deb6d07ed90df127eff257776b24c08d21966db39b0a3ae

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2bde5c8567be89a2d79dfa464e67f82b750fb1f8e0b93f30d8c7a774993197a6
MD5 572cad5bb5c125b1e4d75db5734db841
BLAKE2b-256 81616cace01ea0feac15f3df026b7adb2b29d941a8b9ac0f362de1c2dfd83861

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 164.6 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23d2c2792f7b6896d5b40a5312334d4f8c06a0639c6e1a323b6a179606a7a589
MD5 fa5f36afafc30dd195988f3ab360afde
BLAKE2b-256 051fa9c169119c37e1248622eb89d02ee0c71442004352139145439b2205d577

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 196.1 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd8edd1c513c76503111fc77f70dea3c9cbdf26d27fb79d17bfe7e7c123774ad
MD5 0c70de19bdf601e1f9e3f45c38d5dd34
BLAKE2b-256 1f9af7949c0d41cbbb8332309cee60e88d0488aa0330cd2e70de7d5e2ae33d92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 350.1 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b2a58031f2136bdaad93e051d2389e40a961e261c9eed67dd09b40fcbf023e35
MD5 c1f18eaa6d3315e5755e5fd58a48720a
BLAKE2b-256 32848e866036a747ef90721882a7c4f2a8e3c4065954253ee89ee7419e70c433

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 184.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1b07460799b45c5d51ef7eaa346cb0f030e76bdeee5d2217e097e627ec75fc8e
MD5 724e046888010c4e7179cc9c305032da
BLAKE2b-256 da334edd2d7bc0ea50af5beb06b3d5d7b9e4733c57f985133a2a33e28e763c25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 153.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f00685f908057e558e36ad92bd474ef65d7c41638e5eb3f0ba937a673a76949a
MD5 5c4cf28ce785520dfa21cf93ab4a1052
BLAKE2b-256 1f3ca9d2748184503c61abbb3d2b178834034893ff1038979da84ea29d737623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 626898bd6f883b396b0b93b9b2cf46907f9b5eeec6d79933ee5e75f4f598a96e
MD5 d15393c5d6de7c1af7061d492baa34c1
BLAKE2b-256 4edb4dbea41264e7979c80f3ad8a822531fee340d681fe6af44486648245a20e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7611c7ee922a64eec8bd4d8fc321366b69fab5b4e6df78fcb838e7fe12c2588
MD5 78cccae3c6db4853388303e3ff6e931f
BLAKE2b-256 fbeaacbb753bea7cb68fc890daa4f7e271027b416e433fe6ae6a017baf70c5d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a1409ca05250ef9ef609fcabb755b650a232c826bcac2604ed6944a1a770d38
MD5 7b9a879447e72687c12a893171f5e6c3
BLAKE2b-256 aa6fb6baccfff42933cbf6119bfa99c15ca72911a88c3696a81f660639fa94e0

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 863e0cea92e5b4450b8e7099c9dccb81952e18547f6fea114d29ee05cd888e54
MD5 bd08123429a86c244089fc70ebd97aa3
BLAKE2b-256 08aff95761b6c99e90ea433fb7dd46aba0df40f3f9538a60af88d1d7d32cc8c7

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 986fdfe5cc0c3d5ed2af4f122d295b16ff45ab0e313a127a856c532e4f5a0c75
MD5 2ed72e12222a5c9ea606b40b550a9eff
BLAKE2b-256 98c1eda2520a7309abcb8a52ac0cd0a82448cb9c3998c32a32f720332ffc7698

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 163.9 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 178d21ab11f8287bd0238cccc718392419caad307bafb091f44204fe928d4452
MD5 ac86c45c76c070555fdaa8e980980707
BLAKE2b-256 f845f1fccda886cba16cb327cd61e93d91ea8052889a422a8b34a7888ab7f132

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 193.1 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 29b6837ca6a520cb59f7489afe44435b8c629f01979df7e0f63a6974c25f59e1
MD5 827f3486129d2c65e11beca3064d441e
BLAKE2b-256 9a6a3a681ba7f46a576f3b0bfee05915e524a1c6702eb8d86e63714704d26285

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 346.3 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c84e7b8751bb69bb7e7ef019828bdfc8e0e0f646588a4d68b521151c82cb15f7
MD5 87d91260aa5949a6b597557c10195637
BLAKE2b-256 1c75f33e9c82a20e4649938894d8256b9750591bb6d388b3f6d059e944c4aa6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 184.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5862e17852f233d667fc27878b67dbd0c716dbe75e1d52ae48c86068700ff7b3
MD5 24eb6f57b015882cd357149e9626922e
BLAKE2b-256 ff875fd46167109d803654ee74984b8c9a9b8e6c6e80a2558998cfd59116fc3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 153.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4db69655f8e0b7ead0fe175950a3902c26f28eef92f1af550528bc92077a7088
MD5 e0c14b56a3fa4794c87ac02bd45d0f75
BLAKE2b-256 133ef288e0ae0dd1f92b81d30b1e650fd1d6ab3e48366af325976d1ee2c02d0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5b05b42e73b3c5483c87ef4f8782cee9cfd9c3be573fbd815d964645bddc5c6
MD5 21782c02217300ef4a3cc5d6d32c4757
BLAKE2b-256 2dc2f49e5315476f804643d2f434e7e431c96f9ebe81edb923a0ec2e240e566e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 35aa3db29ca45530b8d397a8db4c50763b234b02d84b772d7005e1c529abd9ac
MD5 c66f8c8ac1cf83e2903df6280e8ce425
BLAKE2b-256 984d838ba078d9f83d11c2c6e7d42aea57c67b764a973d23651b948486c1f010

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ddb08de07a9bb836b9d5bb348b7674ecea4dd2898d2666923bd0c4ba97dddb6
MD5 b20e5620bb0617a978637d21b974ebc7
BLAKE2b-256 6cb3a055b116279a963f3a76d07ded058c2b68fcbd9d47a44af78f978f4ddca8

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 92866fe9422665a56b745bba59e72d374d93b511e57e70aec95efef721a90119
MD5 1c54e1a7c375be8ec67877d44f98385d
BLAKE2b-256 9cfb98d2e413becdbc83d2ac91d3377719512affd0af92daf36ae35853c85211

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 23c75b7c278ff9b6105ab917ada0249d96620e6f2c7028f55f06508f999aa0f2
MD5 9e753456307a311f53d63a4b822e0150
BLAKE2b-256 98f54ee647f8d585e6087ba1fb5db26416dbd8cd9d0a4bd676fedfd955832472

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 161.3 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00925214fef2bb7caff3f776714092f95c399599efc910f7ef0e98ee2a68f18e
MD5 1411f9471b638ac02922a16627e009e0
BLAKE2b-256 54c4a09fa10c7183a7903b32c106cd8065ee3f45a513fcdb75417dcdf9727acb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 189.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d02bd38c403f151764986ae55827c7d2647f927df997b55203fd2a3d8e6b2b30
MD5 3645440b5b88809ae7aa9d0158ebe987
BLAKE2b-256 fbe34240e9f40fba0cbb1cfada2dff66bb5a9d6513e7b8b07dc18cebdcb8d0b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 339.7 kB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bab3a66c5a335daa23deede06473eb52557d1197ebe8cbca6e93b389c77ca0ec
MD5 c3740ee3d9f5089e742f7a6bf44d7739
BLAKE2b-256 536fc8527bce4847fa4b275caeec296c825a37647f55dae196c7dcb5bc671009

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 181.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8a2e99bbc2d5c75f305d167b79140d510cdafa8250b4ecd6d6e1bf6a6f4dbc1c
MD5 b19ac11899e2aa58a684757eb612f514
BLAKE2b-256 240609638f06c6941eb81f25a20480fab651ee459146bf4611ba48c2e6f2fc36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 150.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 77955e5415479c8c708e31281470770ee02b90cc848c63978cb3166eb96d35d4
MD5 8e802043c3ca68219de16ff77f0a620f
BLAKE2b-256 ac268ca4d6c9932a9831b72634ebbfa045c909d4fac675abe0400a4f9a5c325f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e38938634e83b4b68bea20c10f7c65ade75e63391cd6afe821375edc9b3e8d5f
MD5 c903bbf6d5f290aa4a14e22d9473781e
BLAKE2b-256 d60bd779c79b980c7f43e7aa3a0b5afe1c1d1daf155805004b437e4501f3958e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4d4ee1aa1e8cf9b900681787a5f3260fee7e5d1c288fb4e5c296740d5458796
MD5 1f46a6d5ebf2880a7d7ed593a1a85cd7
BLAKE2b-256 d7f322590e86e2d683ea13e02a619ac0ac64e12aaa00f9699ce9a9e6177088b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d896267e61fc6ace36e4fadd94ca04dcfcaebbb9cad9fa5012b6c14947f0fce7
MD5 97f07de0ac3ab9afcfcc3746563f1ae1
BLAKE2b-256 cafe9aeea8dcc9a2b02fdb211c5f5edbbee90cb7c80f3be7ec80aa0a6ad68b78

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3fec8d43cc93a9f39beb6e41864d60d045dc3abdf7f32dcdd38d3a53f7a2e29d
MD5 a6d443621f6b3321173ee7bf530bd873
BLAKE2b-256 bea6223878f7a5c00185f3a0b812ae4b1ed27680b9ba403f1c1dbe61ecb7b36c

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c62e93960e548954423cb456d12b4bd5be902cdca49f99fd9e69dfc4d7b9b0b7
MD5 5aa6f88513d760c6f0494b538c8c3a90
BLAKE2b-256 a26cad9005810d0928d044b3e66bffc2b7ceb56b65ce02c1c5cdda27d5ba0cc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 188.7 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 161bf9151a0160975c1eea4675d68cbc7c6494dd0b135054b64cf57b2e07298c
MD5 eab4861f554f766c1a52840be3b2f74f
BLAKE2b-256 86d1849df1f05c90643b507f58d70ae5a8d6a3f2c3abb1b0dd8ea61ea183301d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 181.2 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 72e26c1006498551f7dd82b5a3108afa5c2311f4a1468766a3f46f0347bdd54d
MD5 4c731efc17e42cfbf43e45e571bb20ab
BLAKE2b-256 14ba5be1f290ae67ce57a44da55139223bf71ffb43b2c12ff7eb6587158503b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 150.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2d9fab752da0272de58d97cd4bb9d2e250a87c5accda4d1f98dfe682f44a197e
MD5 4000ff7c35333bda065d0de288d395e7
BLAKE2b-256 657a528bc99c35ed0d3120e0963f004d8df43a3a547702a4f5c384d288d5fe4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 299f5b7c3216ab0887015518ef9353d1088742d9a1eb40b707bd5f6fdaa92f7e
MD5 ca52eee5f468b32333c5d61a3c42be35
BLAKE2b-256 99bc4edb0c8ef706027f6e37197cf6921c13b86f498028f95ad355b12cce2fe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 532065cca0ff5ac01aa3c52791922aeae2dd2a9c28117c4939c53d7382826531
MD5 8a0646073c1c127fdcddf4de67b0f758
BLAKE2b-256 11d6f91a5b3a4be834defe058e303ac93ccb673546fe6833dddea3e6f954c6b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 103126e4c17fb7b3432426a6f3cd98e39a8636ee4617ae6492cc99b301d224e2
MD5 fa59556038bd220a6c2151ba2d51c5c2
BLAKE2b-256 9fd8624963b91617bce892cef20885a3ff28f0ffffd020360e1e5989e75aa66f

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.6-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 88e7ef696017b73a9855ccbbbf8044e220a15e5be0349b14de4c54dfa86b18a4
MD5 1add8b8a73d6978483f5807bccf6f7b1
BLAKE2b-256 5bf0efd3fb16779e75929c6c64f61be92ae2eabd41de9bf32ff2622b7b5d52ca

See more details on using hashes here.

File details

Details for the file pyhacrf_datamade-0.2.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b5a31149babaf0b4810c6c51ea75aff40bc36b5e302c741a0e9f70bf868567a5
MD5 e61d620c5d64d31c7b8f5678833fcc1b
BLAKE2b-256 2709b617bd505cbad92d47ad718822221ca42a4d1009e9454a5789b5491ad44d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhacrf_datamade-0.2.6-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 188.5 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for pyhacrf_datamade-0.2.6-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f19781b0f253a21c929c8429b5fa198bbf64c2394f0a6912e9fc1ed30aa943d
MD5 e87c668d346872db14a2cb70609d88e1
BLAKE2b-256 85ca2b3a54d917c8b0cf392313257ceeaf0025aa527b631d343f0c81000db0f2

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