Skip to main content

Speedy library to detect file type from initial part of file content

Project description

image love image pypi Documentation Status

Speedy Python library to determine MIME type of file.

logo

Defity (Detect file type) is a library for Python application to guess file type in a reliable way, not based on filename extension ( *.png, *.pdf), but on actual file content. It is like what file command and libmagic library do, but with different strategy.

📕 Documentation: defity.readthedocs.io

Install

$ pip install defity

Usage

>>> import defity
>>> defity.from_file('path/to/landscape.png')
'image/png'
>>> with open('path/to/landscape.png', 'rb') as f:
...     defity.from_file(f)
...
'image/png'

>>> defity.from_bytes(b'some-binary-content')
'image/png'

How different with libmagic-based ones?

There are many Python libraries also do the same thing, most of them are based on wellknown libmagic. Defity is based on Rust tree_magic_mini library, which in turn is a fork of tree_magic , another Rust library. Quote from tree_magic to see how it differs from libmagic:

Unlike the typical approach that libmagic and file(1) uses, this loads all the file types in a tree based on subclasses. (EX: application/vnd.openxmlformats-officedocument.wordprocessingml.document (MS Office 2007) subclasses application/zip which subclasses application/octet-stream) Then, instead of checking the file against every file type, it can traverse down the tree and only check the file types that make sense to check. (After all, the fastest check is the check that never gets run.)

This library also provides the ability to check if a file is a certain type without going through the process of checking it against every file type.

And what tree_magic_mini has improved over tree_magic:

Reduced copying and memory allocation, for a slight increase in speed and decrease in memory use.

So, Defity should have better performance than other libraries for the same purpose.

Another advantage is that, Defity is static linked to the underlying Rust library, not depend on discrete libmagic.so. It will be easier to deploy to cloud function platforms, where you don’t have control over what system libraries is present there.

License

In general, Defity is licensed under Apache-2.0 if it is built without tree_magic_mini embedded MIME database, and is licensed under GPL-3.0 otherwise. Concretely:

  • On Linux, it is licensed under Apache-2.0.

  • On Windows and MacOS, it is licensed under GPL-3.0.

It is because, Linux boxes already come with FreeDesktop’s MIME database, Defity just uses it. Windows and MacOS don’t have this database and Defity has to embed with it.

Credit

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

defity-0.7.0.tar.gz (45.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

defity-0.7.0-cp314-cp314t-win_amd64.whl (165.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

defity-0.7.0-cp314-cp314t-win32.whl (161.1 kB view details)

Uploaded CPython 3.14tWindows x86

defity-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl (423.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

defity-0.7.0-cp314-cp314t-musllinux_1_2_i686.whl (453.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

defity-0.7.0-cp314-cp314t-musllinux_1_2_armv7l.whl (512.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

defity-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl (418.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

defity-0.7.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (254.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

defity-0.7.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (284.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

defity-0.7.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (376.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

defity-0.7.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (248.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

defity-0.7.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (237.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

defity-0.7.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (276.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

defity-0.7.0-cp314-cp314t-macosx_11_0_arm64.whl (217.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

defity-0.7.0-cp314-cp314t-macosx_10_12_x86_64.whl (229.3 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

defity-0.7.0-cp314-cp314-win_amd64.whl (165.9 kB view details)

Uploaded CPython 3.14Windows x86-64

defity-0.7.0-cp314-cp314-win32.whl (161.7 kB view details)

Uploaded CPython 3.14Windows x86

defity-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl (423.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

defity-0.7.0-cp314-cp314-musllinux_1_2_i686.whl (453.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

defity-0.7.0-cp314-cp314-musllinux_1_2_armv7l.whl (513.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

defity-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl (418.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

defity-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (254.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

defity-0.7.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (284.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

defity-0.7.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (375.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

defity-0.7.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (248.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

defity-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (237.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

defity-0.7.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (276.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

defity-0.7.0-cp314-cp314-macosx_11_0_arm64.whl (218.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

defity-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl (230.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

defity-0.7.0-cp313-cp313-win_amd64.whl (166.0 kB view details)

Uploaded CPython 3.13Windows x86-64

defity-0.7.0-cp313-cp313-win32.whl (161.7 kB view details)

Uploaded CPython 3.13Windows x86

defity-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (423.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

defity-0.7.0-cp313-cp313-musllinux_1_2_i686.whl (453.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

defity-0.7.0-cp313-cp313-musllinux_1_2_armv7l.whl (513.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

defity-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (418.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

defity-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (255.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

defity-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (284.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

defity-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (377.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

defity-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (248.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

defity-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (237.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

defity-0.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (277.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

defity-0.7.0-cp313-cp313-macosx_11_0_arm64.whl (218.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

defity-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl (230.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

defity-0.7.0-cp312-cp312-win_amd64.whl (165.8 kB view details)

Uploaded CPython 3.12Windows x86-64

defity-0.7.0-cp312-cp312-win32.whl (161.5 kB view details)

Uploaded CPython 3.12Windows x86

defity-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (423.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

defity-0.7.0-cp312-cp312-musllinux_1_2_i686.whl (454.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

defity-0.7.0-cp312-cp312-musllinux_1_2_armv7l.whl (513.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

defity-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (418.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

defity-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (255.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

defity-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (284.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

defity-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (375.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

defity-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (248.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

defity-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (237.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

defity-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (277.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

defity-0.7.0-cp312-cp312-macosx_11_0_arm64.whl (218.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

defity-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl (230.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

defity-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (255.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

defity-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (284.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

defity-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (377.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

defity-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (249.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

defity-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (238.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

defity-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (277.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

defity-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (255.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

defity-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (284.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

defity-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (377.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

defity-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (249.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

defity-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (238.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

defity-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (277.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

Details for the file defity-0.7.0.tar.gz.

File metadata

  • Download URL: defity-0.7.0.tar.gz
  • Upload date:
  • Size: 45.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for defity-0.7.0.tar.gz
Algorithm Hash digest
SHA256 3b540773750ce75aa1240fcbcf35c4a06c432d4c9b35b71fa06e9c0fb6cb2964
MD5 ec88263658211c75bfefc81e2638318c
BLAKE2b-256 a3c509e6f6cd21b391bb38d4b58d8d57a46043081f89f47c7c2a63a3b7e26296

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: defity-0.7.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 165.6 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for defity-0.7.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4dcb8fe960445f5d0137075e4786d2d8989e6de74f4c9603caae6e19fe12ef94
MD5 be338052c8ead5c7a27f6687ce19651d
BLAKE2b-256 4f9871486003325a9db60b4490c3132d4d6cd8bab94ef4caddc4e940df331500

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: defity-0.7.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 161.1 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for defity-0.7.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 38d539e2c2ecc226cff11884ce365657451b878478bfee8be665835f9b1babc9
MD5 117993f11ea425b48f6bd3548f4a982e
BLAKE2b-256 114ee2312ec88617e320e500bed8383016f91edc4a8a6eddc54224d369aade14

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f05709c869fa1a778098a2b0c4c828a9351f515b6e24ed866183b0ca81b081b9
MD5 eae429404c0db2ce7f99c7aa26c4c520
BLAKE2b-256 c6570e61c30a189fd423487203f615d44bf39d489ec3a14af18f15be072b3137

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e7383026c433fd0cfa36257fc9d7ad73bfa134b72bd6cfec88914c816705fb53
MD5 5dce4d3a1abaa6e6a5e8db2ecb0bec7a
BLAKE2b-256 879696501842350fe1e7b59dd059d5fbf2d73b629f95fddfb2511d58bf40ac5e

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 35126faa9643669e17bc5df719f5826b3615b53e6d97697cda828f63d5b8b002
MD5 2985c961a52b878567826b2ce5acc690
BLAKE2b-256 2170d393b720834b07244813ab5e06c1127838c95be6abe9b486de9dec4968b0

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f8f6d024c62a3c461def197baafc0faec84b768bed348716f2ad7bccfeabf5e
MD5 e657a3138edfaaf586a5554613974cff
BLAKE2b-256 1dbd74ea129494f6799b301779c0ad4336c32d145ecdd98a27e67b85f05d2547

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39d17aea5a425e529d7b8164adebb09edc7bdc49add4175bff5a1103af7c7f6d
MD5 42d50ef89047a4dc01661b2f0b4f1a2f
BLAKE2b-256 fb57d3e14a0c4944c86c12bd2992c7499264f6f993ba2d7597233589203db92a

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 29a79617c6a8927e22dfdc84eb8de0f591f1de682eb1e7ca0e1e35b257896b71
MD5 2a51ffabd8d39efbcf9a3431fda3093a
BLAKE2b-256 95d45dbea63b3735a7e8e8128405c5d938f011a689064afc610aa0f03ce7aa27

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 172f1171fe5552a99d3f227d029cb553defb35e484fde5f2ee33878a41c50f2d
MD5 bdd68f02dcb3a8be4218b1cd48f689f2
BLAKE2b-256 e68dd76507a8ee182eb136566eca91dd3ce8b178a22356e005b9458a40e57457

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7599020953158686d6780071655ef1b603334bf0508503d61aa8a481a9ee3dee
MD5 79343d1addad0660d706c500bce86ad1
BLAKE2b-256 d48e2d893d806e74e86b2b00401dd0b7ac165e311a6c2f8c40fc1f3f8189880e

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5e99600c07f41a2b77b9be09babcbcfd02a96f9a73053784f5cf256888a2251
MD5 71a07803c2447c25b2c07c934c859edb
BLAKE2b-256 f1efaef0c6744670edaab6cadc7f52ea0a9d065784ecf66e125d8c51702ba6ed

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c053ea1537b4408893ae21d28c0cd8175217d0f4581425a1193119a579835a5d
MD5 812b8b3d503a3b051eb25dd169f11df0
BLAKE2b-256 f050001b771d1a6394d0133302c6177fd2efb97a065bb2adf72cf3f79c03b706

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cfc1a09aebb1066df2bc01911302722f06c22e04f107257f44b65b9f73ea9a0
MD5 27c312132615057e5076bf87be525bd2
BLAKE2b-256 ef9468c9ba7fa3b4d0d4394f7b6472b2be7142dcb4b01670b2133630b9883604

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 30b8b62d270b85177261bb9a0131d55179cd4c344461d42f8cc97e9512886fec
MD5 887cf0d60a4730742b035fd7beeda10a
BLAKE2b-256 5947d2c9a2a4d0687305f0c63c3c8c0502f131f1b90d392fdd514ebd1d324c1f

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: defity-0.7.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 165.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for defity-0.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1f99a7b5b278b660abe0b3da89d4744893d0e8caf09be1c5fbe96802c18e2653
MD5 51f4c198c2f863ac9dddbf6ee16a5eb6
BLAKE2b-256 d25506a2296c923457854df1789e14fa596a42eb893d7f7c4c7b9774ecc3f878

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: defity-0.7.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 161.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for defity-0.7.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 36301a15d080344d29daaceea0cf63d0d383f939aed4ea62303b9c9c21daf0c2
MD5 169e71d3bd59d96d13e9704589109ce8
BLAKE2b-256 ae8fe3743bb4c1b744aafd6a3100da96d674a7aced73340894d73b959ece8829

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b591ca8d0e7e47618267395c8d5176b8f84e4bd87d7d1cddd4e7ab711bec7c3
MD5 8b8c987791737c794ab1a3f65940b468
BLAKE2b-256 629873efd86bbd38a1bd17e51406d98c49b81bc7be5481a9b8e93f1916fc9159

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d081bb7ac2e63e5c7cc2ac53537bddbc426346b1de17212ff815a876e6b06a3
MD5 a79c624611f972fdcb1e8102ce2b65ad
BLAKE2b-256 09bf4db0d226e3809b94a58384b75e836688af4e0b13c7925df74d2f6618a576

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee5d04ca6e209d0dd9d4e2e042a4edee17689f007cc8725a5a70437b19b1d767
MD5 cd3351d3b06d18f18cd92b5e72c7a459
BLAKE2b-256 c3e52aaf25bb7b7d279dcabc8785b526040e14db5c9f6948f37729c23ade153f

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0bc96ead1cd6f3ed156d1c9ed5ce17077bf4618ea7eeadd522bbd2d1998eb050
MD5 2a4873e276612da02ad7f97c25a3e4b4
BLAKE2b-256 c6dd9a4500d52f9d003dd32889b4885c55bdcf63e7c3ebfee12f548d58f26abb

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08bcde23ef2473c383d2e4e28314d11f61d0cf174e7f10024fdf6b4e7beaa275
MD5 c99b983a8258a119051640c3b236e8db
BLAKE2b-256 6a32474750cb376471b7b69cdb2c5a7210c2eb50a9fd69539eb54f8b636b5ff0

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c04bc04bb1bafe19b90a89b9cd9566d62fc7b9529e60925859e45b888df2d78
MD5 98ab02dba553b43c97a3307671e02787
BLAKE2b-256 27116bec44c02a2802fa3591827dd46cc6f6950c8047dc06d079f6dcf9a7806f

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d56c0583c8232ba8e1d5f111717674633d655e2b4d3aa3a0beb956e6443ca236
MD5 68539b7592a652f6947f4671a3da4469
BLAKE2b-256 86aceab6c161d533b2a742bd6125531552babe65dacb58a6c65a86b7fed77535

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6f3aa2bb15a08dc4bd125ac7629f15940cef056fc9580d00a86f370103ec0344
MD5 bfd4ca9fb32e2505d540fb4e9d62315d
BLAKE2b-256 d628da8464de27919a1863039c7e398f65f299d275f0b6a97a07c135f777bb07

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2fd31ae20bc559a6f70350809901d3090c37478d3855339f6e4e9bd3fcc65ac
MD5 2534813b4c4f55143dd0d3bacc990162
BLAKE2b-256 1ff52899d3d68981f963f027cdeb014024f16d245b6b19f48558a34ea53175d8

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3331cd19664ae476e1f3632f01180b1fedbb16d3f2755916e57231bc61626c6e
MD5 c2f48f8ad8f8b505f22dabbcf3e37bc6
BLAKE2b-256 ad7ecd60c1904d23521baeb4e8fffa708b45af9fb3b716cad1e550dcb09a022a

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c9559fc6dcaf169d57511236c73a7babd054b01f82ff733c64048a8d1fe9ebc
MD5 97b9383b043ffcc5b4a58a2a6d6dbad5
BLAKE2b-256 5c541f107269eaf7714fc88f2802eba939b45a6dedb77e1ee3b409bc5925bd81

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 62344826fb2f8b001110a0852e0932a0cf1325e61e0b7dae63cda604e9d11350
MD5 01ccf7dff225547fabf1feeb3259e4e4
BLAKE2b-256 12aa5c6c5e5bbbf78a67a150ffd5127f30a710d448f6489869bf9bb391ea925c

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: defity-0.7.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 166.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for defity-0.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 59efb0a4589a9e5bd66f3fae624b35aa265e46ed12d449e28a46dfcb47f8d144
MD5 1d42a501e6981fa703d53da0c734c373
BLAKE2b-256 b350f725abaea90197d25430b29ce337f34082392067919276ae8d6924bd4406

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: defity-0.7.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 161.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for defity-0.7.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 60c8b1735243dee3dca7999b8ad822a13d338150dee5137e8ad6d0684e8ad814
MD5 99978c0469cfb0bbe10268d741336abd
BLAKE2b-256 a2136d05352fff1c9e98c2a12f562d70810a69e4ce1bd4e9efb805ec3cd66201

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50210e21e81cbbf10135807dc92255ee53836f4d66a18a6d849081c7cce7115c
MD5 03ac8f289c48e9cc77b55d07682da769
BLAKE2b-256 a8a3f73aa0e59fda330ccf3da7ee7175ae82cf65daaa3dad11bde3d18b10b15e

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f18748a874f80f6830adab63f5d18483a29f40e217737666afd825850f18554a
MD5 24bfebb2673a93edbc3fc5691927603a
BLAKE2b-256 0fb4b5f0bd6f0e05a688b236bebab0cd4f9fc29f3e198cf6aeda08e1be79e0da

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ed0be96253c33178b9f2d92301e1959da77f78680d6b3ffc7e05cda340379dc
MD5 7f0336ddf7d0b6dece555a59daae1a05
BLAKE2b-256 0730996e097f645e00a991b47b77885525feab4ac72127e3edfa835fb2a4c471

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f2ed606078917e89f08ed6f9f3ea3b4a43abf5b4b6d617e3589fada4208d629
MD5 d8e725094d32954933c3e853a4a4f6ff
BLAKE2b-256 94a7974bb8925c541fddd6ffffc95a2ab8b54b0b65bc9e4cc9562d115dfbec29

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06e48f7b13dd152a2ee5b14df9fd17c1809ed5dcf180d8c53f735421b273e43c
MD5 f7788bf566708c67ac36915973aa5791
BLAKE2b-256 6bac40a58b51044c7817b5e9a5354e04a1a19cf9fa20752e9cb09476105892b8

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d4a96049d7d3e53a88a06bc416cdabd75a41109aeaabedbbcf5e253df900a84e
MD5 0e3b402d9496f0a80c4267be47fb2f70
BLAKE2b-256 af3a29fc833f0f509411f00fa5cdac89d00eb217a3b92a1cd8d310242a3230e0

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4910ccfb095d25552ea625c5d93b7f7287e99744a9c4b4a0707b8be03bc71a09
MD5 1eaa8940af2cdc854bc924b867a6ee54
BLAKE2b-256 57735ca702520e368d0d95ae0d48b6fc8114d61ed0ce5c1e8debc2cf9a03c8cc

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93be244b0d66f0344570d6f6d258127ea39e33c7e72b3fc061dfa9a11c91e4dc
MD5 25c49acd294bde07023570ba7ca84199
BLAKE2b-256 7769ab1852f042751265d5582dd83b65fc972ba336762e7eafaa434016b8be20

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c27626acf732324cabc8fb4505cf955d3612d62b3be7f6b6891a1197ea99f0d6
MD5 a7122377e78f6de3c87b1b558183563e
BLAKE2b-256 79ca2a6d08254a838dab7c2936fd1c05c8368ce26a1317799b781a0aa37f29c4

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9a413ffe790668861388c4f704da4ccd531092f7889c62a3c295cde0be7d7be1
MD5 dd51b22f97c509c9ed280aeedf8eef3c
BLAKE2b-256 45302f60b824e9f6aee6d7988df32a9def4472abfd8a2d9831e561b73ad3fb25

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fedb3c48938f8d8b6524b1a0069f4b91fce22c35acbe10c9d9c3f77b9a8f1019
MD5 94d946358c4721d5097112c66a295c74
BLAKE2b-256 cbd831ef374324779fb227ea8bd78f90560c8eb41c9268a9426445c67fb572f2

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d6559ed5ab114d807fc6f1a1e1803043216e4536ec3056ad37b14ddbd5d407c8
MD5 010a8780988dad8bfaeb660a7f828708
BLAKE2b-256 7c832af18f1fa50cbcaae3bf8046aecbb5e5d0409e576815c071fecb1caa8d06

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: defity-0.7.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 165.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for defity-0.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2a377e66907d1595574e1ef0108a92fc9b896dea8f90a60defbb2287b4406c83
MD5 e13f41e7c5963c411100bae5227394a1
BLAKE2b-256 25a9f8d4425582651c1cffc40102b5aee99e9ff9554b8ffaea163bf8a45db661

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: defity-0.7.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 161.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for defity-0.7.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4edab15297330f747a77bcc75822eb21aaa5063f84afb3dc449ddabbf9e2f121
MD5 f14821a66215f71aa151c3161c68a695
BLAKE2b-256 a6418276a42c713ed2e9cab034ba19b0c77af5f6cbfdb198f5366d44c8cd6b70

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbc0b1ef78b198d4c6ebbce68cfadd4429b269e3425d9efa661be14f3d2de943
MD5 6e0cadc5d3c5c542d1a6f847ccf2c933
BLAKE2b-256 053d00f5e7038e14aa4f5e97103921707432a3ff924b1a31097643e5d7c3ea3c

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b9afaeca6f245f4706f72dec7e1ee1eb58795ce032c498072f1a9c24d02c9ffb
MD5 7e0b40a63d4f246af06bc357ca81a591
BLAKE2b-256 cd765a1722295831430ac4aaeb43f85465b32e066ac74ba90028a5a6f9d63517

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d425c3d968f05a7789045d0a0073cd32a64829af06f91f59ea44dda100da962
MD5 e91a35063db5e5f0493a7f868c3f6a8b
BLAKE2b-256 1edcb80216b39b904416e18784f534a4634b15da43e16f10563d0194d2c5c50b

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df7a6a6452e1ff1bf65bb7141ab28d59f43976dc154c004b363ee894f8709057
MD5 fa45572593e67423f3182b5034b886ff
BLAKE2b-256 dcecae02bb29375abe990126053a157ae2443980429d37ae755701437ed65950

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c27ff5a0fbdf707ba4af6fb3278b0a493282f334030df46a9c58897d7e340202
MD5 25e0261903a1856df2e95a8da6defb8f
BLAKE2b-256 7126f26d6ec4a364ba0203c190535f520eb1adc6af261af5a02c10376e7ea380

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3cc2c994542978e7e0a2f90320633532e65c241ab5932a3bacbd9cf1d9ee435c
MD5 61eb5350bf9844fdab9b57063a9ce0db
BLAKE2b-256 f053f7c2294a1dc6d5060e50eb78adb051c79a923fb9f4ff968e621d7cc4eab2

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cdef8070bd074b84804a947a6969bf504d583fbbcee45bae3643c17df9ce678e
MD5 77a568046b818527b3b7cc614c725550
BLAKE2b-256 4061fbb50a33ebf6ad07f5d6bb8c34ea30ee5428634a35dfd564ba24f7196eb6

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ed2614e966026c5c80bf17f26bce677992b1fd5d07d4c6d030c71e81d41d0558
MD5 e2e264a845f34aaa5b7fcc2276b680b2
BLAKE2b-256 47bd378a28e3115c043cd5b59f36c63e122aa5349acaf9649294636bc2a0d3be

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea83ffdb6d5bff810b0566e61a194884852271197ea18f26c678535aa979f048
MD5 088a859e7e49819b5197320597a9dbf6
BLAKE2b-256 eafe4a395a2a4e6ca60f4c6ab923a4d3a8397537028c4e497f27c95734a30597

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ef0dda5dee1a5410ddfccbb609f8e4d3a3a595ff18f9fba427e78a9701150f2
MD5 d1311c769333af6eb885fbd1905f383e
BLAKE2b-256 1499ef8958c8c36fc1e92080edace6a76fc2740b3586759cef7bceb35c84d8af

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e7d0b80b249cc325d5fdecd3d49fb5233deda330b51bd848e3e9368db5d69a2
MD5 49934744563b7fa8869c3514811ef476
BLAKE2b-256 6744362c9d77dcda0fb0358fa91bccd41e68acb4e5dabeb33b94bef524e62d89

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 81b9398afbbc1ae069f5377640dbe5029c2aa8c3f8c947976736965abff1db31
MD5 926c32ed47d25b99e04f5e02d1463efb
BLAKE2b-256 c24c138353c63bbbbcb215f16d18972e177f48b3d4db5150a9a4adb67fa36f22

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e2856b54a922b861f5e87a8d9c3428a3ef961331d4f54e2622ee4b68b15f84e
MD5 c58f9604b61496fbcdc3d9fe1d2ccf79
BLAKE2b-256 d00ab94bd641683084ea1b627954c6a0235bbbf9cf0c09c9a3ca25462810ceaf

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cdbc52c92c44a6bf387f3443b3967a8d3b69406fb6f16886b8af1f478ef6aaa4
MD5 7c6984dd649bdd0001a9f12b8a585a77
BLAKE2b-256 6c505ca740a4f2e28ef7ef9f05770a9acd8a4da30ca8957e6a6666db82153708

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2df996cc651ff9bee573c7ed53715613fdf91425cc0defa642fe31712b61d5be
MD5 d7892d77d3218db98f591265943b75cb
BLAKE2b-256 8cffe97a784a2d736dca748d364c97a5a34691afb46decbf140d5824b15f87db

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 db4b7d5a3d7302701cf9fdb37b6fd7878204783d2d87236221b114413b329693
MD5 9eaa2600715a4bdd57a50082fa173299
BLAKE2b-256 4398f9ed3a38d2624e5d16268b2190b2b9d70fb6b852e8122eb69c0983b17d18

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b6837a2ba377b81015d8aac6a4e180f5adc0b33c8109b3c1368b985cb88fea1
MD5 6a5869c4e96c4c3665c7711a57aeb742
BLAKE2b-256 bb898273c4a4bca882d7c9a3b8dd5ddd4dec3b446b0f08558d27eae09dbea265

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f5e70914516fb740b0b610d2196b8987acc12ca7f27161d167887f13a8c0634b
MD5 f5f69d6204a9e698e4e9eee4bdd9d6ad
BLAKE2b-256 ec2b57bbf4a5bcaf5d89f942958402479c445a49e50fab3b1942768982c43230

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ffe9b90b2ddde31dbae72d7a8f97428ac7cc0c1b4134029620cbc552b46086f
MD5 1f4b7eb01587c4ad8ad1b09456fa3d78
BLAKE2b-256 807554cc936d763d01c177d3f22b59abd00a2fbd54d7202f48cc89bad82e6688

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1597855ca55699233409e432911d4b4a9ec071dd89a29373e73ba6f0a0789eea
MD5 834d2fb452e91275fdbf587edbcb8c5d
BLAKE2b-256 dd93be92f5425447b9431fab04d5fcb0ed239bf858e58e8b1bbf4bb472991f8d

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19a3024cc53e6c69178d469a229eade4ee4227c545b138d256ba4a57454b634f
MD5 48c80574a07e87227139e81f438766ca
BLAKE2b-256 dd76e9bea4d4e72510759fc53270aab83c67bd8683001344c7afec9bcafce03c

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b3c289515de03fd0d0e1de846bffd628f4833658ff660e7248c64f32fc7256e3
MD5 2696f2fdec9b11b58f37a883fa4fc93a
BLAKE2b-256 7bb6c30aec0f3197e3d7ed49ab24954426485855e19083ac66235d7be170c87c

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d414ef08d77514654c5f9c357f69f6fc6f283a38353d089c57c220155a6ce7e
MD5 38c6703f00b3bfbdadd1e400a4d11c5d
BLAKE2b-256 11db352424d36e6c8d62756d421b5eba19465139043669bf96542125442e7c54

See more details on using hashes here.

File details

Details for the file defity-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for defity-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d663433f44c5dafb9d0702f5df6b639c85b00306d5690f172c176fb392569b7b
MD5 71daef2d9c6f1730764c10a47f6e7440
BLAKE2b-256 cdab051a1785d034f08d91115814b1f24c49f169ded7468e5e93c44e4efe1b00

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page