Skip to main content
Files added late

14 files were added to this release more than 14 days after its initial publication. Inspect the release files before installing.

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

Release files for pyhacrf-datamade 0.2.8

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Files added late

14 files were uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release files before installing.

Source distribution (sdist)

Source distribution for pyhacrf-datamade 0.2.8
File Size Uploaded
pyhacrf_datamade-0.2.8.tar.gz 355.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pyhacrf-datamade 0.2.8
File
pyhacrf_datamade-0.2.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
pyhacrf_datamade-0.2.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64 Details
pyhacrf_datamade-0.2.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl PyPy 3.11 PyPy 3.11 7.3 macOS 11.0+ ARM64 Details
pyhacrf_datamade-0.2.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 macOS 10.15+ x86-64 Details
pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ x86-64 Details
pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARM64 Details
pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64 Details
pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 10.15+ x86-64 Details
pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-win_amd64.whl PyPy 3.9 PyPy 3.9 7.3 Windows x86-64 Details
pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ x86-64 Details
pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64 Details
pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-macosx_11_0_arm64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 11.0+ ARM64 Details
pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-macosx_10_15_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 10.15+ x86-64 Details
pyhacrf_datamade-0.2.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ x86-64 Details
pyhacrf_datamade-0.2.8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ x86-64 Details
pyhacrf_datamade-0.2.8-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
pyhacrf_datamade-0.2.8-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
pyhacrf_datamade-0.2.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
pyhacrf_datamade-0.2.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-32 Details
pyhacrf_datamade-0.2.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
pyhacrf_datamade-0.2.8-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
pyhacrf_datamade-0.2.8-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
pyhacrf_datamade-0.2.8-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
pyhacrf_datamade-0.2.8-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pyhacrf_datamade-0.2.8-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
pyhacrf_datamade-0.2.8-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_9_universal2.whl CPython 3.12 CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64) Details
pyhacrf_datamade-0.2.8-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pyhacrf_datamade-0.2.8-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
pyhacrf_datamade-0.2.8-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
pyhacrf_datamade-0.2.8-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
pyhacrf_datamade-0.2.8-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
pyhacrf_datamade-0.2.8-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pyhacrf_datamade-0.2.8-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
pyhacrf_datamade-0.2.8-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
pyhacrf_datamade-0.2.8-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
pyhacrf_datamade-0.2.8-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
pyhacrf_datamade-0.2.8-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pyhacrf_datamade-0.2.8-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
pyhacrf_datamade-0.2.8-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
pyhacrf_datamade-0.2.8-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
pyhacrf_datamade-0.2.8-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
pyhacrf_datamade-0.2.8-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
pyhacrf_datamade-0.2.8-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
pyhacrf_datamade-0.2.8-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
pyhacrf_datamade-0.2.8-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
pyhacrf_datamade-0.2.8-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details
pyhacrf_datamade-0.2.8-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
pyhacrf_datamade-0.2.8-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
pyhacrf_datamade-0.2.8-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Details
pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
pyhacrf_datamade-0.2.8-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 39.4 MB

Release files / pyhacrf_datamade-0.2.8.tar.gz

Download URL pyhacrf_datamade-0.2.8.tar.gz
Size 355.7 kB
Tags Source
SHA-256 checksum
How to use checksums
bbbee0ea756d6118d62de3731c9f713106ba49b14eafb01b88e87aa5b962f201
BLAKE2b-256 checksum
How to use checksums
ed15fce370fc2e493e3c847420d4b7c9fb54efe5ba5f7decae9fdcca6bbdf2e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pyhacrf_datamade-0.2.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 232.3 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
1419c3b061a1ade1ccc10e9e15aa847670c6d66473fabc79c64c3231e83d050d
BLAKE2b-256 checksum
How to use checksums
b6f65474aa1c282993bd2558ff0951453c7f1bbc1ecd88ea51f3b07513fc50f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.10

Release files / pyhacrf_datamade-0.2.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pyhacrf_datamade-0.2.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 221.5 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
040e6546652184b04f70a3142421af801a68395597beabb39089492071470053
BLAKE2b-256 checksum
How to use checksums
4bdc4ebe2df536b229e48b6ca6b86735f30928f27eff7d9ee033d60fce5ce37e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.10

Release files / pyhacrf_datamade-0.2.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pyhacrf_datamade-0.2.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Size 165.8 kB
Tags PyPy 3.11 PyPy 3.11 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
dcaa4c561a6ebc360fb05b7b477f21506fd4df2ef2f67d2086ba969c7d77881c
BLAKE2b-256 checksum
How to use checksums
283e0c8da24d37cab8cfeb30396450b8b23c9a5d9febdea1aa821678a40056a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.10

Release files / pyhacrf_datamade-0.2.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pyhacrf_datamade-0.2.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Size 179.8 kB
Tags PyPy 3.11 PyPy 3.11 7.3 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
be9b0df52d40a5c4a3a560993e3297f958d6696d5e7173ad0ce108c270aa77b9
BLAKE2b-256 checksum
How to use checksums
7de33528a77dfe94d2980637bd8f4b8417e193468c49a328e4475bde0fb80c24
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.10

Release files / pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 249.9 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
c2c4f8ed105f0efa71ed6189ac40f4ce123d8c20c69861b91c0444f5e0602632
BLAKE2b-256 checksum
How to use checksums
c8d72925cb41b3c29144830306cf1a91eed4b507c8b88f5e12c25f77bb30ee23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 243.1 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
9838b9b886d039f982916442a06172ffdf623bc284e4f9c9a39eb3934af5e0a2
BLAKE2b-256 checksum
How to use checksums
d7cd726c282edea020569f3064c36d345e20e0358f24383114a0f05771ac5d71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl

Download URL pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Size 179.0 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
576029ef98f405c0fab9631906d9ab59c7ca3170429f7aa4fae8dd08a0a7b096
BLAKE2b-256 checksum
How to use checksums
a887117879ead91775d9bde6b8c885c158486aac39e17dbe097475780ec016b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Size 193.4 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
24d97f2f8065e812755957c73cc1550ee17b542bfd175b7ec863df5f565fedc2
BLAKE2b-256 checksum
How to use checksums
ca8d28def1dfef664a9c9828982fe1e804249682e545fc9f31722d6d5db87c62
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-win_amd64.whl

Download URL pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-win_amd64.whl
Size 184.5 kB
Tags PyPy 3.9 PyPy 3.9 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
c932d12b1c747ea198a94ae1a8f8270b46a884dff712477942d8f1fae245d0e0
BLAKE2b-256 checksum
How to use checksums
e15ac59a5762ae38acd7669cdea99559283c3dc87de942b4856a26fe7e098df0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 249.7 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
20238b9f65c087934da7a21550f6d60668f5870b9c8b13152dc6c17133459254
BLAKE2b-256 checksum
How to use checksums
0ef39eeb2a98d21ab195cd3ec5fb3e1241e709264d4a4233154cb5f09a3ce08f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 242.9 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
1617f8a2ce127030be919b02364305dd91fefabf55fde0a07731d1f3fdb832d5
BLAKE2b-256 checksum
How to use checksums
615d2493f4d98b3e885451b983e97c7a826b0f76b534fefcca85e87be982ef61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-macosx_11_0_arm64.whl

Download URL pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Size 178.7 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7334d0e96c0cbac97207ca32db075b8e08ddda3acb05e663c445cb280b4ae168
BLAKE2b-256 checksum
How to use checksums
9f91cf9a1f127c2c24648ad17e50ac5464557ef9e8b67e5b2b814935217cf76e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-macosx_10_15_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Size 193.1 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
522e726bc2a41c26ac8d48cd73aacca5d0752b316a29c2d53cde3117ebae2d6c
BLAKE2b-256 checksum
How to use checksums
6d8f1c9633e10c4d42200c80bf1ab3e917329d2ea82b3157e09b3bce57d129de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 252.0 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
7044d2acdea0fd219bc17fcb19191ad2c2237643b3e94d208efb65ef804c8ab4
BLAKE2b-256 checksum
How to use checksums
06eb3052610f890df4c385b337ff20d4c623f17f49fbbaf0ebd03ad6c79c3c87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 254.0 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
68b1e62ea62b7033bccf4f0d46141f67ecb8f1a02285ba2edd9bfc252643e572
BLAKE2b-256 checksum
How to use checksums
6e54fda3a8586a057875109edc05f115fbda9826b205b77b8460719d33a6afd5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp313-cp313-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pyhacrf_datamade-0.2.8-cp313-cp313-win_amd64.whl
Size 179.2 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
16ca1a85a264f22deb21e571e14eed0f1070b3347e209ced5c0e70666653e358
BLAKE2b-256 checksum
How to use checksums
7acca3700e7abdc1919e53d2a511510bf947f0dfcdc24c5eefca27d066036221
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.10

Release files / pyhacrf_datamade-0.2.8-cp313-cp313-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pyhacrf_datamade-0.2.8-cp313-cp313-win32.whl
Size 150.4 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
e17a1a67eb9334bb99f821e4665a8c5cadb63257d6c0a7219a93a6e2ec80c168
BLAKE2b-256 checksum
How to use checksums
f581bdd053bdf4e51e4b663c56b20471ef94e7100267ffb3add8a211f237a2d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.10

Release files / pyhacrf_datamade-0.2.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pyhacrf_datamade-0.2.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
da5adbaffc2a9178eeaee9aff2a820625ef27d8b822446ad0130428530514370
BLAKE2b-256 checksum
How to use checksums
8ca80b2c7bbd966e182765a831377d380ebe44520cab69aab11b0c1c90bce527
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.10

Release files / pyhacrf_datamade-0.2.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pyhacrf_datamade-0.2.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.2 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
1fc803e573d116136dee01a9d3689bf772fc8202c33b1c9a89a063ebfed9f1bb
BLAKE2b-256 checksum
How to use checksums
b5e2c402aa7218a3f5050eb443fccd5ea35eeb85168cc3b871522c62938674fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.10

Release files / pyhacrf_datamade-0.2.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pyhacrf_datamade-0.2.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a58182a0304ff89d54a5f8d53c0f40283b8c08e8dd51ebe26fa90c8d0ad38d7c
BLAKE2b-256 checksum
How to use checksums
5e32aa72df9a87327b9fc3a4c4555921bf7d6e6d959e5b1dd98721e166098db2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.10

Release files / pyhacrf_datamade-0.2.8-cp313-cp313-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pyhacrf_datamade-0.2.8-cp313-cp313-macosx_11_0_arm64.whl
Size 184.6 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7abc6f8d05a8f980a5ad7cb4897d4936003bdd3f8053bbf345e6522580cea94d
BLAKE2b-256 checksum
How to use checksums
4bf620ec83b465b86b8ac40f560961d039a8a34d02514909abd5027391eaa2ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.10

Release files / pyhacrf_datamade-0.2.8-cp313-cp313-macosx_10_13_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pyhacrf_datamade-0.2.8-cp313-cp313-macosx_10_13_x86_64.whl
Size 203.8 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
32e3e4c585c46fcb75ee72ee103b285e7bd16b27f5577be3de408105bd8ca6be
BLAKE2b-256 checksum
How to use checksums
bbc46caef3f65039523b17961b1b415ec9b4c84a03c2cf2db3161d6984640b1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.10

Release files / pyhacrf_datamade-0.2.8-cp313-cp313-macosx_10_13_universal2.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pyhacrf_datamade-0.2.8-cp313-cp313-macosx_10_13_universal2.whl
Size 376.8 kB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
f265a93392c1245b10ccea41ec0185ed88626d38a6dcdf6ed6b1cb6f23311a93
BLAKE2b-256 checksum
How to use checksums
a4570e7059512614569b14371c2cc63b4abd8de9cf89c561f1927d09cfd66e89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.10

Release files / pyhacrf_datamade-0.2.8-cp312-cp312-win_amd64.whl

Download URL pyhacrf_datamade-0.2.8-cp312-cp312-win_amd64.whl
Size 192.7 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
b9e982a9ed8ea3645b5fff199b28959386c885acd1155a5a15dfa0b4a8f100ce
BLAKE2b-256 checksum
How to use checksums
3061d42b960a902ec12290ec46d68709e05b88daacec6950aeec9660dfb08c6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp312-cp312-win32.whl

Download URL pyhacrf_datamade-0.2.8-cp312-cp312-win32.whl
Size 162.9 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
c027fd9cb1d5088428c43052c2f4d94454401b1b1e8849ce8795175f6f8a4417
BLAKE2b-256 checksum
How to use checksums
221ec9d8c47f0234faac2c304f4a75f6906ec104821fedfa0df11e8d74ef2e6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9f1e0a02d6dc3060fa23ca52149a8b72a22b90871c2999b1dd52c9d3dd65c383
BLAKE2b-256 checksum
How to use checksums
bda34c2fbe34aefcd9c6bfec200fe4eb7692c3629aa573ff1b8ff47b57dbe6e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.2 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
532505f9b845d92ace5e9567bc9b18b232ebc67f2db7335db07654a182b23ed0
BLAKE2b-256 checksum
How to use checksums
bd0587ff3feb85253bc45c892ee0ce07bffa994eeafe3733aa27a48de53e5a65
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyhacrf_datamade-0.2.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
26537f4ed7f2b9705b639aefd5e558a925b8c67440e44d551aa89216608a29b2
BLAKE2b-256 checksum
How to use checksums
c8ab2d0c4c6df61bc81d14f4ea228b80a7f787ac36bc1e9daa011efc2e4cf709
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp312-cp312-macosx_11_0_arm64.whl

Download URL pyhacrf_datamade-0.2.8-cp312-cp312-macosx_11_0_arm64.whl
Size 202.1 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
abe91b20d995d2d66ac35cce367b624aa5be1ded986042e8e618243cadf87f6a
BLAKE2b-256 checksum
How to use checksums
4dad15634e60bc247045d30a06ad48badd177eb949575954392de4aed0be6e53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_13_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_13_x86_64.whl
Size 205.9 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
0f26fa04528dc921b3dfce34cb749a518c60f35f787337fef2e705630dbcbc7f
BLAKE2b-256 checksum
How to use checksums
dd4da6eda24e0b064d501de5f62172ef379e29c02dd6a9bff0ff009183b8a7a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.10

Release files / pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_13_universal2.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_13_universal2.whl
Size 380.7 kB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
ea1974c94326ecd394f8d4022e9447731739f137e4b01201de521febc95f3484
BLAKE2b-256 checksum
How to use checksums
17d4aae3d5f55609487c08730e65a8d8a0b913d1705f23b8b5ec928046e604bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.10

Release files / pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_9_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_9_x86_64.whl
Size 213.4 kB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
3c68fd5639530a830729489bad42a8d843ed0361d23937acf21ee1b0864aa71e
BLAKE2b-256 checksum
How to use checksums
e23a4274e15d957fdc06821634b1ac42e25aac7048643572d9cac0b800ea067a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_9_universal2.whl

Download URL pyhacrf_datamade-0.2.8-cp312-cp312-macosx_10_9_universal2.whl
Size 404.2 kB
Tags CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
8cab1d26ae8ee9f83bfd45caada99ffb325ed9c73d347162329ec01d5bcc7fbe
BLAKE2b-256 checksum
How to use checksums
91d12705ede62cd2ce3b58f1920fade3728989e0358796f86b9be531e54dd521
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp311-cp311-win_amd64.whl

Download URL pyhacrf_datamade-0.2.8-cp311-cp311-win_amd64.whl
Size 190.5 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
e0f94b9e197b69d51966aadef0c27b70a4eba59d55cd5f97e3f5d6a2265ce5b7
BLAKE2b-256 checksum
How to use checksums
3a619740b1022dd46445fa964af115a52bfde4a30da09c7710d2c71e246f44b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp311-cp311-win32.whl

Download URL pyhacrf_datamade-0.2.8-cp311-cp311-win32.whl
Size 160.4 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
eec9b107adb1fc8845ada076f71f146a4307dc241f9222ef7e56ba91231ffa83
BLAKE2b-256 checksum
How to use checksums
050439843ddd4a9f5aa0a69967e8e0760e90ecbc7f5c8802943d15906f902e70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c2ad35d3cc07b36f96700a1a48f738e8e0eabfd1a89222a75e1ac7e1ca8feaa4
BLAKE2b-256 checksum
How to use checksums
b97f9ce637c220eb18ee1b392f1a42c2a409e4eb0ec7b977963ac56a9ffd2b47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.2 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
0f0678de1b7fb34dc30b155a417ae3927455f67493633b4d1b29c0158ba0d49d
BLAKE2b-256 checksum
How to use checksums
e0d85879e63f7667f69dd474212538d610bb1bc1c4fca73221f3fe449a7b6080
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyhacrf_datamade-0.2.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
19d91a7beade5a2db5432b9272c9740d4a3f90d3864e267a6274cf646497494d
BLAKE2b-256 checksum
How to use checksums
a19a68c60190b16c4ce2e832836aaa29adc2dee14ba8e229eed52855cf0f55c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp311-cp311-macosx_11_0_arm64.whl

Download URL pyhacrf_datamade-0.2.8-cp311-cp311-macosx_11_0_arm64.whl
Size 198.8 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
559dddb35889c5a1c852e36c2f677d1d0ba01737bee532b2b50eef545c6febf4
BLAKE2b-256 checksum
How to use checksums
5eba261c9ebca0df53e1e3ee861c360dff2126ff60eae574e279e565ef3778d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp311-cp311-macosx_10_9_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-cp311-cp311-macosx_10_9_x86_64.whl
Size 209.4 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
43fcd235a042e049036994d8d5b4f326990d62329c859daf0ad74ead3136af21
BLAKE2b-256 checksum
How to use checksums
27198d46d091a5e1872fc1c4aaa1940e1eba2b9a3e9170cbf3ad6baf12c4bd0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp311-cp311-macosx_10_9_universal2.whl

Download URL pyhacrf_datamade-0.2.8-cp311-cp311-macosx_10_9_universal2.whl
Size 396.8 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
13b3080b6613a1a4c131f354a28a91978f22c8dcbd3695fc35b009a6101e1b9c
BLAKE2b-256 checksum
How to use checksums
d650ab170594bc12604cae7be71ceed492c8df7667492f62e10c90b5089c0a28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp310-cp310-win_amd64.whl

Download URL pyhacrf_datamade-0.2.8-cp310-cp310-win_amd64.whl
Size 190.6 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
3e8dc8419d58c9c486efc1a1d31608c2b8ebc0e3c587b2b38ade504a1077e0fc
BLAKE2b-256 checksum
How to use checksums
8e52858173a9fcffc952c431a76cb1f0fef4c4891bdcf0aa9cb5135a01d90f00
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp310-cp310-win32.whl

Download URL pyhacrf_datamade-0.2.8-cp310-cp310-win32.whl
Size 161.9 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
2b92e3c53393cbc994a04d99d3689a814531bf3f237c25595539203d399d194c
BLAKE2b-256 checksum
How to use checksums
3f720f0148454f0aca66fcbdc0922a5b3c04d01ec70d0d5714db8cf836bef953
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.1 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
17a5248ee1b7db83d420c77472104c950ef5d2a98ce811ff751679a0a77f31a8
BLAKE2b-256 checksum
How to use checksums
60407baa77aef65b8a1442dc68216b664636a6b668970cca5581251338a483c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.1 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
997e91a3353d94651d7e46f02b349fdf5cbd85a86e50f976c17780bd04166700
BLAKE2b-256 checksum
How to use checksums
2f586e97691280a673f0ebca7d81616ebb2fde61fd0b629141e49167b785613c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyhacrf_datamade-0.2.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.1 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
36c6ade92e7d3e8fdc449e86faabc894589ab262d2d946b7c46aa7334766787d
BLAKE2b-256 checksum
How to use checksums
9cb3095d4e5b562f860e12b82cbf4fd30bedcf41bae42a6c7a776419ec6f1fd8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp310-cp310-macosx_11_0_arm64.whl

Download URL pyhacrf_datamade-0.2.8-cp310-cp310-macosx_11_0_arm64.whl
Size 198.7 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
aa6f2a9fb4fb1dc114b23554a4d6dfa0b3af5bf630341bd1eb0d2594f637fe98
BLAKE2b-256 checksum
How to use checksums
0b9bd7c02ce54672c845f5456b81f398feedad07a63b708057b22f2fc71fee4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp310-cp310-macosx_10_9_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-cp310-cp310-macosx_10_9_x86_64.whl
Size 208.9 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
6ac07e4d37ab126a0c06fcbabe3888f8c35ffcfc9808bfc8411ae6c40eb374de
BLAKE2b-256 checksum
How to use checksums
7462077097d98b040f4f7a95f5685e9b71c11fc08b9738fa017b9c34ca5e4fc5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp310-cp310-macosx_10_9_universal2.whl

Download URL pyhacrf_datamade-0.2.8-cp310-cp310-macosx_10_9_universal2.whl
Size 396.3 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
101ff3a19498619122439b85fc6ebe5631ef25bfd1ef3eecea437dd66e0a6892
BLAKE2b-256 checksum
How to use checksums
82d66586690fcce384370ef3cbe5f7748aae1e622105db8b4cecc42b9e4a1271
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp39-cp39-win_amd64.whl

Download URL pyhacrf_datamade-0.2.8-cp39-cp39-win_amd64.whl
Size 191.8 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
af1849ed213cd2fb6db4d5ba640d8d6b83488233b08bbb732303fcce39dcae27
BLAKE2b-256 checksum
How to use checksums
8499eb235835b44381ad42883e78853af50fd252e0d723af63db9e72481943dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp39-cp39-win32.whl

Download URL pyhacrf_datamade-0.2.8-cp39-cp39-win32.whl
Size 163.2 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
f8e05fd11b1d5255374dbd2c84f57419c3361094f823d3f7ac9bfbbaf020cd21
BLAKE2b-256 checksum
How to use checksums
e7b70654e9f4127c510ffeddfbdd81d14f839bd7660dde572cb8a404e00a2a9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.1 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4e963a34d021a75ca17facc6fb26a663e4ed091e34b733a25586b94fe24cb7c1
BLAKE2b-256 checksum
How to use checksums
a9767b6c1bcf1dc767cab6fce52b013dca199cd64cf106c94687671e5bb301e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.1 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
947faeaf7cfcf7b98b5142ccb4e452537d7cff059236de94eecca323401a3894
BLAKE2b-256 checksum
How to use checksums
651e7245d75fd9a74f0e6a230fda141190bdd3f6819651877f4b65fedf41d7ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyhacrf_datamade-0.2.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.1 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ff4978a0b263e6bccc919fab1198d43eb0b858f713e19c0ac91227471ccb0195
BLAKE2b-256 checksum
How to use checksums
c85baabee15aa0e35ac240b246c94e66c69df501e1c1a4b7ac2a023f623a23df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp39-cp39-macosx_11_0_arm64.whl

Download URL pyhacrf_datamade-0.2.8-cp39-cp39-macosx_11_0_arm64.whl
Size 199.8 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
dfff024413841fae29455731ab3e5581cf7a6835abd2c320834747348863f62c
BLAKE2b-256 checksum
How to use checksums
adeaf55c5466d9209ea451cf6fb6b0fc5b360bbab3bba0353ed7d41c4c27cb95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp39-cp39-macosx_10_9_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-cp39-cp39-macosx_10_9_x86_64.whl
Size 210.2 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
5bf52ad38a7dfa6c57a9dec01a13059cfe80c7ec16b2a1ce1f01c4cdb0bde729
BLAKE2b-256 checksum
How to use checksums
05c0b99c7c77b75a24a514b6292da04bd44a328346ac2e6eb240e58856b6a9df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp39-cp39-macosx_10_9_universal2.whl

Download URL pyhacrf_datamade-0.2.8-cp39-cp39-macosx_10_9_universal2.whl
Size 398.6 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
924a481c450b7ca49ccadee60d65879d66b05d2ff2096775b966be3310ed2939
BLAKE2b-256 checksum
How to use checksums
c93f5923b85c354150750cc3080eecb65dd4f903068e6380095a526293507506
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp38-cp38-win_amd64.whl

Download URL pyhacrf_datamade-0.2.8-cp38-cp38-win_amd64.whl
Size 193.9 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
b3c968ac302103a23a2d41ec52eebfaca7f81a49cb21298d8e24797beafae6ce
BLAKE2b-256 checksum
How to use checksums
9a4744de9276e2317fb1bd762bbc31a299b6dd46cd8b8ca201f9b893235e334c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp38-cp38-win32.whl

Download URL pyhacrf_datamade-0.2.8-cp38-cp38-win32.whl
Size 165.9 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
7b5953bc5393d8da5c2d23745305ce48e55d4aa84f13434b7fd3f96be789edb2
BLAKE2b-256 checksum
How to use checksums
6d620d9523820cb87bcd0bb35e144f62506a9ac78ec2b17751138bc6b3ed0e6e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e743fc57ad959c4d6c7800c1c61585a6dd5b535378100e4cadd827d5b7321499
BLAKE2b-256 checksum
How to use checksums
a224867887862c5b4a00a9f71ce676b209c5cffd578a849d3092fc5ee364aacb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.1 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
38a92d14592521cbdf696cdecc189f37aa36044161dce0b6d772e27b7104cada
BLAKE2b-256 checksum
How to use checksums
6cafb7ade7a0e20c3a598ce9005caa1b8f5d00fa5f136956eaf6d48135cc7c1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyhacrf_datamade-0.2.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
92e0033199e6570c112ee90b7768d89fb8ce3c1b96880a096bb2b1f3c6982437
BLAKE2b-256 checksum
How to use checksums
bea3e16cf68fe87c264430abcc2535fe634920b977e172e28d2d67b31893e9f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp38-cp38-macosx_11_0_arm64.whl

Download URL pyhacrf_datamade-0.2.8-cp38-cp38-macosx_11_0_arm64.whl
Size 195.1 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
072263123ec42797633717dc4147fa1da91e692743328c69681c448081d57ff6
BLAKE2b-256 checksum
How to use checksums
40ea521c3f2a8d54c7bd8b23bce800e871fee4c6679769814ed6709986c059b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp38-cp38-macosx_10_9_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-cp38-cp38-macosx_10_9_x86_64.whl
Size 217.7 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
4bb2e762ba9bcf4a26a4efc6b3aa1c7563688e7b7cee3eb6af0f8fcf1ddd2ac7
BLAKE2b-256 checksum
How to use checksums
24c4bb0e49c78f8d3192d57c7f053ba7e1c9ee81aa8d1f9a91ec21fd8d052d6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp38-cp38-macosx_10_9_universal2.whl

Download URL pyhacrf_datamade-0.2.8-cp38-cp38-macosx_10_9_universal2.whl
Size 401.1 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
7a2688301d045c5bfd34da58d957044102f56de12e1bde346d54a6811ddb1de3
BLAKE2b-256 checksum
How to use checksums
a7c63c6d2156b0a325389e2c4569f96f2afbfacf0b679020528c1d3e22dd1102
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp37-cp37m-win_amd64.whl

Download URL pyhacrf_datamade-0.2.8-cp37-cp37m-win_amd64.whl
Size 192.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
ab785fd43b882ba978af0aca4234287123aac518d4db073b52f909ca66d3a197
BLAKE2b-256 checksum
How to use checksums
362e32cc87fb82164c62736ac78a665097eee74dc262615fcb311252309a6d0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp37-cp37m-win32.whl

Download URL pyhacrf_datamade-0.2.8-cp37-cp37m-win32.whl
Size 163.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
8e6d9b3a2d8f5e6fc15a1a73fff642c8c54581e4e63533afa39238b041484374
BLAKE2b-256 checksum
How to use checksums
7724cb76a9ab13e2edccd10d830e399acedbed50b76a315cc939c3d7fe71d922
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
46cffbfe68d30ca71c7da6113a818b7d79914a2aabaf803a920e5773a928dd36
BLAKE2b-256 checksum
How to use checksums
f38e63fbb77724443a52aa1b929ba7abd3db9f054c0e5aa8033f3107256ba68f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
05f3fd115232043f9939b92b991117fcaebb5adacd8be6b1a85283d112886990
BLAKE2b-256 checksum
How to use checksums
2276451220a8cd5dfce29a431304df96f64497ac25691a15d75b1792307a04e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyhacrf_datamade-0.2.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1e199f45aa630e7926a0be2efebf8605661ffa6af706d8c43e27d70ff201704f
BLAKE2b-256 checksum
How to use checksums
51dd0c1f579df7dddf5b5032b4efc2cb8ba3e2728c7560a0ec72a6fad959417d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-cp37-cp37m-macosx_10_9_x86_64.whl
Size 215.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
4b8aad9b682550587b7af332212f01d7705b0ea8e9658e83da3fdfd706435611
BLAKE2b-256 checksum
How to use checksums
d5f624ec3addb8230fd9e36e65f62458a2741d6b5f15d23a68888c612acfa3e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
214ca6e5bd722afb0d76a2642d726329b732577f5be65e502e062c3ba2ea70b6
BLAKE2b-256 checksum
How to use checksums
c4f085b62694896a0a690ad6d46531ebb46093fff72a084fca6f95266d6b3ac7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.0 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
eccfb3898440baa28abd5dc77134962c91d667ce9c9d67403a6f32e6197022f6
BLAKE2b-256 checksum
How to use checksums
86d3afecc28e2115ad6d80571d1b33dfefb1b78bb814c511c17bbc0aca87139e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyhacrf_datamade-0.2.8-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d4f3c5cd8a380c6053bf66ab23aada853b77caddda4ea2ab63e4d402271df3ad
BLAKE2b-256 checksum
How to use checksums
356cf43a293bb2ddd021564c06f37cd2c2154d62b4e83bd3c98b7e59e1eb3947
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / pyhacrf_datamade-0.2.8-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL pyhacrf_datamade-0.2.8-cp36-cp36m-macosx_10_9_x86_64.whl
Size 209.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
fa9f6cd5ff1a0b05386f5d18c6fd5cfb5da544f813969318749bd4e67e1528c0
BLAKE2b-256 checksum
How to use checksums
f3e825e74b47a88cde8ec9de001abf0ac9b24a9b02a5abcd76ba238f3bcfd0ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release history Release notifications | RSS feed

This release

0.2.8 This release

76 release files

0.2.7

66 release files

0.2.6

50 release files

0.2.5

10 release files

0.2.1

21 release files

0.1.2

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page