Skip to main content

A Python package for creating feature transformations in applications of machine learning to materials science.

Project description

Build status Coverage Status Ruff

DScribe is a Python package for transforming atomic structures into fixed-size numerical fingerprints. These fingerprints are often called "descriptors" and they can be used in various tasks, including machine learning, visualization, similarity analysis, etc.

Documentation

For more details and tutorials, visit our documentation at: https://singroup.github.io/dscribe/

You can find even more details in the following articles:

Quick Example

import numpy as np
from ase.build import molecule
from dscribe.descriptors import SOAP
from dscribe.descriptors import CoulombMatrix

# Define atomic structures
samples = [molecule("H2O"), molecule("NO2"), molecule("CO2")]

# Setup descriptors
cm_desc = CoulombMatrix(n_atoms_max=3, permutation="sorted_l2")
soap_desc = SOAP(species=["C", "H", "O", "N"], r_cut=5, n_max=8, l_max=6, crossover=True)

# Create descriptors as numpy arrays or sparse arrays
water = samples[0]
coulomb_matrix = cm_desc.create(water)
soap = soap_desc.create(water, centers=[0])

# Easy to use also on multiple systems, can be parallelized across processes
coulomb_matrices = cm_desc.create(samples)
coulomb_matrices = cm_desc.create(samples, n_jobs=3)
oxygen_indices = [np.where(x.get_atomic_numbers() == 8)[0] for x in samples]
oxygen_soap = soap_desc.create(samples, oxygen_indices, n_jobs=3)

# Descriptors also allow calculating derivatives with respect to atomic
# positions
der, des = soap_desc.derivatives(samples, return_descriptor=True)

Currently implemented descriptors

Descriptor Spectrum Derivatives
Coulomb matrix :heavy_check_mark: :heavy_check_mark:
Sine matrix :heavy_check_mark: :heavy_check_mark:
Ewald matrix :heavy_check_mark: :heavy_check_mark:
Atom-centered Symmetry Functions (ACSF) :heavy_check_mark: :heavy_check_mark:
Smooth Overlap of Atomic Positions (SOAP) :heavy_check_mark: :heavy_check_mark:
Many-body Tensor Representation (MBTR) :heavy_check_mark: :heavy_check_mark:
Local Many-body Tensor Representation (LMBTR) :heavy_check_mark: :heavy_check_mark:
Valle-Oganov descriptor :heavy_check_mark: :heavy_check_mark:

Installation

In-depth installation instructions can be found in the documentation, but in short:

pip

pip install dscribe

conda

conda install -c conda-forge dscribe

From source

git clone https://github.com/SINGROUP/dscribe.git
cd dscribe
git submodule update --init
pip install .

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

dscribe-2.1.1.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

dscribe-2.1.1-pp310-pypy310_pp73-win_amd64.whl (542.2 kB view details)

Uploaded PyPy Windows x86-64

dscribe-2.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (724.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dscribe-2.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (707.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

dscribe-2.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (669.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

dscribe-2.1.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (708.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

dscribe-2.1.1-pp39-pypy39_pp73-win_amd64.whl (542.5 kB view details)

Uploaded PyPy Windows x86-64

dscribe-2.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (724.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dscribe-2.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (707.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

dscribe-2.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (669.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

dscribe-2.1.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (708.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

dscribe-2.1.1-pp38-pypy38_pp73-win_amd64.whl (542.4 kB view details)

Uploaded PyPy Windows x86-64

dscribe-2.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (723.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dscribe-2.1.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (706.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

dscribe-2.1.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (669.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

dscribe-2.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (708.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

dscribe-2.1.1-cp312-cp312-win_amd64.whl (544.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

dscribe-2.1.1-cp312-cp312-win32.whl (508.1 kB view details)

Uploaded CPython 3.12 Windows x86

dscribe-2.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

dscribe-2.1.1-cp312-cp312-musllinux_1_2_i686.whl (13.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

dscribe-2.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

dscribe-2.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (12.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

dscribe-2.1.1-cp312-cp312-macosx_11_0_arm64.whl (690.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

dscribe-2.1.1-cp312-cp312-macosx_10_9_x86_64.whl (726.0 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

dscribe-2.1.1-cp311-cp311-win_amd64.whl (544.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

dscribe-2.1.1-cp311-cp311-win32.whl (507.5 kB view details)

Uploaded CPython 3.11 Windows x86

dscribe-2.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

dscribe-2.1.1-cp311-cp311-musllinux_1_2_i686.whl (13.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

dscribe-2.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

dscribe-2.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (12.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

dscribe-2.1.1-cp311-cp311-macosx_11_0_arm64.whl (691.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

dscribe-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl (726.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

dscribe-2.1.1-cp310-cp310-win_amd64.whl (543.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

dscribe-2.1.1-cp310-cp310-win32.whl (507.0 kB view details)

Uploaded CPython 3.10 Windows x86

dscribe-2.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

dscribe-2.1.1-cp310-cp310-musllinux_1_2_i686.whl (13.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

dscribe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

dscribe-2.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (12.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

dscribe-2.1.1-cp310-cp310-macosx_11_0_arm64.whl (690.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

dscribe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl (725.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

dscribe-2.1.1-cp39-cp39-win_amd64.whl (543.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

dscribe-2.1.1-cp39-cp39-win32.whl (507.1 kB view details)

Uploaded CPython 3.9 Windows x86

dscribe-2.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

dscribe-2.1.1-cp39-cp39-musllinux_1_2_i686.whl (13.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

dscribe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

dscribe-2.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (12.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

dscribe-2.1.1-cp39-cp39-macosx_11_0_arm64.whl (690.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

dscribe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl (725.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

dscribe-2.1.1-cp38-cp38-win_amd64.whl (543.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

dscribe-2.1.1-cp38-cp38-win32.whl (507.0 kB view details)

Uploaded CPython 3.8 Windows x86

dscribe-2.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

dscribe-2.1.1-cp38-cp38-musllinux_1_2_i686.whl (13.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

dscribe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

dscribe-2.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (12.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

dscribe-2.1.1-cp38-cp38-macosx_11_0_arm64.whl (690.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

dscribe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl (725.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file dscribe-2.1.1.tar.gz.

File metadata

  • Download URL: dscribe-2.1.1.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for dscribe-2.1.1.tar.gz
Algorithm Hash digest
SHA256 444484b7070255257383d191936f8bb5e4b11c1ba8eb4ac22c7273e82f9c8bdd
MD5 af58edcfd6bb49035e173580c44c6709
BLAKE2b-256 b7172e1725dedadd638768883b97db98c42e31febe56859dae2b5efc8ed93201

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 af0838f807d53944e71164490399d4a7f89931bda79782f19c51015fa6c83287
MD5 2ab4289cb0072ba9c6731fd97a576688
BLAKE2b-256 181195928b1d7ba063aa7f7c2b298d193a0a9c298b2487f9d8e4641829afb5bd

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d743901bead08e04dfd2c1bfca8649df57f8abdeccfb892ce350a9725ae39e7
MD5 b212bed6f68d92a270c231588d15ae2d
BLAKE2b-256 fd367b588fdf29100b88412d8fb2c64386b653ffee85609720512cdb2bdf779b

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d54357f2d71df2279ac2e3d9a398317d0eab6252a7d022dd0d0545dc009362f
MD5 5822a5ba429dfae2d0518badb70ac0f8
BLAKE2b-256 554b6321fa4427eec5d3e935179f17f6d69659f2b507f356b71639422c5eed4d

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b0e4b6acccea2e23bb21c1660c257cc154f644be8208fa08785abda0c71be09
MD5 c97fe501ac6383510317ccb47cc8f8cb
BLAKE2b-256 0263fce93e9124abb3f6d62ce60820a3d13971260383943b3864dcb8079ca48b

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71d7b2add779422af5df8fdaf8bf68405019ea6e4c5a858b3cb62dae4a46ad4e
MD5 9b518d74730245b34a4bfab916f51195
BLAKE2b-256 bd42e80502082c8883a6856187a91c066f6446746b1c4ea08cd100749aec7964

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2fd9b2876c13a0bc50e3160a91586bb5aaa669562b6b741a551fc0dda71fe9d0
MD5 e27df836cdb32b234b32fe1ac81f347b
BLAKE2b-256 74016ed367f5d1d6f106d346db55af11bd1bbac6553d3342789e361be2d40dbe

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e642be53124b5934c3c69f142af8fd203c433295fce284f866ce7211b83ae407
MD5 a5de5f23fc55d4a8399655c19a6ee89d
BLAKE2b-256 f4efed1dda9e1973edbd68b9353c127cdcb91e5073e86abd8e82ba38fe0a1201

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fec1ca6dcc0f02dee120b19125d54469b4b5254e0338f01465f9f615df58fac1
MD5 40db6455a367cb206492af04a21cad4a
BLAKE2b-256 2ce46534f2081c879d8f69bb84c3c89cbaabfcbaf2693fcac6e39f16d0bb6d07

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c74b3885715732c44dace518f0aac04bc2ad1f2f392ace13e6d8217129d52d32
MD5 68b9b4aefefa408f3e30a600c238efba
BLAKE2b-256 8d490bae5fe1bbab99056d573e389d6282dbd6c9a7cafd80411a65125874fa15

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 693d47de257197ca6bc937dc4ba9680a2984093061bffcc9c4a4b0db325adeb7
MD5 3a6c6032b0e484af7f42a90b9436a14c
BLAKE2b-256 9d2cfa0c16ebda85d9b264b9372887d09c19d52ab148b99508265343d6f2d568

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0327be822c79c924ce2edb0077206252856266ebd627943508ac78c292b2e25d
MD5 072884d85d2f582761a886c9fbdc3134
BLAKE2b-256 8ebcbf2aa2d10a33f293bbddfe55aebe3572ecfbfb88c2e7c273f76803aa37ab

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b88001a7e8d17e79fd62d5cff873a803e8dc034dac0f6f999f3539b8fa90ddf6
MD5 0bf67dc99996b2b67fe2302ebd0eecf0
BLAKE2b-256 af2bda8199569c2afc329861811791b26cafbfe1ba44535935270d97bb2e657c

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 75023a547cb0f719cbc61266fc7150057804d6acede17151b8f33e4c48573d75
MD5 3dd1ae6fba5ed1f200d2d252477a8867
BLAKE2b-256 e8a15477a9b0ba733e22f3db25d9193ecb1591d20bb4a0487dd0360ff4c3d2e5

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24fa5a380763487c28725881b234299972aa6a290d00cd5b1372fdb880d0bcee
MD5 5be012f874974a22c07e0bf978dc78c4
BLAKE2b-256 3e3b65eb8398bb7021d467dd58970369ac2ebf408fc0e5190f5b6f14ec221da4

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c13ce8e749975de66ecd1df85597b39744c1bc035c12456e4cc2686967f404f
MD5 6518c168c739bce571a97ef64614ad4c
BLAKE2b-256 a1a28b2b96a6f6bfffa25e1c342a8229397902c39f21e7c3717235c405f7aefc

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dscribe-2.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 544.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for dscribe-2.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 78dd0a7922825a10995b8e3412fc6cf699a6e9ba78d873f60edd17c45d577ebf
MD5 8a4913a02494dcd6637923064dd39889
BLAKE2b-256 c2a8ef1abf8b1cb9749b8619f595d2d5c45a77ea51040b7668a8d8d289c11fdd

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: dscribe-2.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 508.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for dscribe-2.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 aefe40e0a0e72757638b1dd16076f9800dafbec1e3fb4fe790eb8c90d7ff5072
MD5 fe2690ff8a49229e7a1dec45a73694c3
BLAKE2b-256 28ff1cd6bfd181eee5ab12bd62dc4f5c7364f76b835d9613f4bebd9d9c3fd401

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7f0e7b040f602eb89446c287069267566bba2d223737392ed852e69b7ec9245
MD5 3fc484eb829d5cfd53b4a6462c0034be
BLAKE2b-256 0697488db9107af07f07c20d7ff9b5d8a3473de026a4a813b57f3c6900e837fb

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 14b1decc3e0f9cd04ece0865053c8786e1547a55757f183381ebe416946a10d6
MD5 b1e12876fba3b900bef32e035c74a6bf
BLAKE2b-256 d9cc37c84679c62088b416637c0476009c5ce0d79ea9825f7f71beb08bd50cf0

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ccef04c8dc23004dc358020709bdd02aaad5d2276ba80afbc3c424330afd4f1
MD5 e317e742bd9932925230b17c0fe98cb6
BLAKE2b-256 63f03b2511ec7940c4b321f484970fa19abc3dee07101a2205aa63ef810897c9

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc9dafe5e45cc313360199c71e40ff050d37abb3cf5e2cfed1fc93e037c45fd6
MD5 a27db82398ef7a54f1a70849a700cce9
BLAKE2b-256 31be6ab1eafd959b43ca8a41f0c810465a1a4f970615187b2d9685001559509d

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 107f71f3f18e51cdf3d389caa1e5aef82589896c1c840b574d094a435dd0820b
MD5 7195d2a6fd9fcb83be753642386c157b
BLAKE2b-256 ee84983c61099fa81d04b71b8497fbf41af5f6339bd86f740ad38cd8f99b21be

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c2d96fa26ff16988183de0af664c671ba155866baff09885bd57e58bd03d8f2
MD5 9aced52fa944d5582d6b4df73f7b55f3
BLAKE2b-256 b78a010baee807b56ce10231cd5a18938831eb7a2e692fc73cc32ec07b2e1c70

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dscribe-2.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 544.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for dscribe-2.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d8c9e9b6ee9d9b84aa64e9950e3f4ee6ccdacc88000c40fc6c7c2f01f964adc5
MD5 dc55bffad5e2011ae388bd4114736fce
BLAKE2b-256 8821fa812e58e627d7a1adaaf0ca0a98503e4c837b946eeb5103c7c4fe4d80ab

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: dscribe-2.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 507.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for dscribe-2.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0bfaadf330c339b6c46f159eeb601ac1d3781933ee3fa5ff5c9ab7d986447ecc
MD5 c359c1064bd373e5dad66413afdde28b
BLAKE2b-256 7c64f50456dd336e062152ad50dedf95ff6ad93d92e499702c2ba17ad283745b

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b64711052bffd5005ca532864284abcbc9a19b84461fb2aca936952c9e3a96ab
MD5 ba3f92996835dbea0e0bd39378cdb793
BLAKE2b-256 4ed46d0b3588fe95726e3b735883fb8be04bc6f019efbf1744ff727579baac1a

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc4cea0da6a1520f313e11cff30141146d27aa6217dff33c9fb88c223addc8f2
MD5 1a1c46b27233f89f13f4ac9df9036070
BLAKE2b-256 ee6c75dcd86b9e1a0d17ec5e0dd4118d7a4c7f06b074f58926c1cd8f957003db

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ded7aa8b69ae4d4950b970010d57fe899cd41167e2c0aa0cf4512de0ee9d3ef
MD5 1a6d867b7b30f463ada38f97f017187c
BLAKE2b-256 5e280e4277a7a038ce34c6a2c115b7a6f7466e1c84d0be1706d621b103c45a9b

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 225f34d53c6da68d05f405bc0096b1a017a937c86dbbb0aa4719b315714211a2
MD5 58575224aecca76aeff7bd188bbe59d0
BLAKE2b-256 198210a3731504a36d61761421644653ef17cf40e046af8f3b72868e1e22e162

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c18560090e6960e4bbc76adbca579d397b6c2977895f1af6676cb30909223c16
MD5 52b937a5400c699577248d5e61c9d4a6
BLAKE2b-256 183ccb0da78dd7424bad3bce41d9c11022352f2859a0fc96395f64cb0a96c265

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a542196f0ff3fedb0123d64661ff682043972c4c389782c6f18a470d63214718
MD5 d480a98f81a1c9b0f5230e47b8edfeef
BLAKE2b-256 e21f4804c41bcbabf7523abe29edbaff68cd4b4269d1b176c4ef987634aece3a

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dscribe-2.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 543.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for dscribe-2.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 59666703ad5c941e9584e7f0902f5ba1ed27a8b1d244450f89ee22c6f364ccf2
MD5 477835a7eb07579dfd4b24d351f4b1bf
BLAKE2b-256 56a096626e9c9102d5f667b2cd25525ae1512f1d28fb7065ede818c766b5be8a

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: dscribe-2.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 507.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for dscribe-2.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 178107cf9d563785e01c0d6ecde548fd79dd38e2df2bf4d8f68205c1da9f1fcb
MD5 a8796f5cbbe78aaf6d2c707e7adc266c
BLAKE2b-256 7a58659345639b9a89f656b46f4be16f167e0fd58890aeb7bcc9c4960820af4b

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3616b7fd3fe91eed88dacf02590f2a4d962ff3d9ec200cbf267c42238e299098
MD5 512d5c5936d495c2f21588f5f1aa8aa2
BLAKE2b-256 3e9dada127d0adc6c5270e16f0970520f7de124f320d49beb9e38f9a099c3470

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2ed4664b51f3392ecdf716456b62fcb250262cb64a85b06d0fe8867f8763dfa
MD5 9821262d60c69d7ba839dd11d39bc58b
BLAKE2b-256 cea88ffc19add97d92832859f0c95401fbd78a28d42be27a4c7b4f496f5f6fd8

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 675a7adbd4e2737e6447b6cd6d12f70219f5cf1f3e13d423905b66c9859a402e
MD5 d5eee39e51ce241e794904fff2ea9a87
BLAKE2b-256 b560af20d3d8a3b494b95e2eb59646806d91092d130ebb6646674989a11fc4b4

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09a1a63338288745888132c3c184824615172c587c934b3d7201e023fcea3279
MD5 1460b4ae03bcd20221304745f1335423
BLAKE2b-256 39c157f856112ab5792d4cb11f86bb8755852e27167f924297da1bcc00a1d50b

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ac03162625e065f862748fa98ec80096e261c3540079eec7eb6fdff7c23ca8d
MD5 c702dafde195a99eab01ed9387c00991
BLAKE2b-256 b9b3472a24b904bb67711cae1e3fb1d7d82d0ee699e616491d59020cc5cb8996

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d2fee4825a47209caeb22f6e2b3fc67a8838be15957d3b4032bc98960d1893d
MD5 c6e0e7ef9fbf1ec3d8051c8b7762a191
BLAKE2b-256 34fa06d8c69fe23ae71f9d088efc8f420016916186c68a9eaf8ffc8fdb3be585

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dscribe-2.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 543.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for dscribe-2.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6ee66c28774c239665d056636a8ba25d9e4b3c97ba9c1e4a21fc3ccfc6928531
MD5 0c6a38c8fda68844b53ce64ec13e0eeb
BLAKE2b-256 f949dfbb7ec084f072cb892e0a16983f76574ed8f905f891ecc4ac4fdb6977e9

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: dscribe-2.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 507.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for dscribe-2.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7a34bee826070aa7a1bbd857d11b3b62f0a16a87ff0b89bc5b5e7b41c7a0d97e
MD5 5ab65f4ca418937b5902ea87eda76399
BLAKE2b-256 04c920cc945b41bdbe0cb856f21dc8cd596e1ef25a6c1d3a7c3e153e1b24fdbb

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 271c563ee6fd69d5e76e6c5a23dfb425da67352813dec1b7a29d8367779e2252
MD5 d277289ed7fe708c0a508d1a015bc420
BLAKE2b-256 826d517c8f4f1b6a03df95e9b40847e7d2465a221baead5dadd8bc590aac7dcd

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c6f922069bbb575d0fda9c16e75c05a7f46e4887441838e3d283f86e33f69cb3
MD5 f8898a551331a721d6b26763e3b1ff11
BLAKE2b-256 2e98725f12ef34f79e637558e85f0d1ddd3fb67a36ab3c95bfa9b24a51136c6d

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d8cb4285fa24c4da519162ab5ce88994cabfbc742a554bd9750e1f90897da7f
MD5 58c7a1f65dac1bab0aab1c0337e45197
BLAKE2b-256 f8b898cca729cf23c65491000b6a7b4bf4793278923377dcf99c61ebdf109616

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 78cce55b3563a0433c081ee3b7b8e4261bedec52399de948ac1320f6b5812f51
MD5 0d87b45d09efae96c61274903e43ddf6
BLAKE2b-256 b7cada325445a7792c2bd6b2e6801cd8d6562eaabca92e6a40f0dfb72f86821f

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9c313361984b68ecb2a990b3356fc4564a45b5b8d8807e6991c5897aefc21c4
MD5 907e417708f8402fb4c5503cae60fc1b
BLAKE2b-256 b23e56e80bf4e0266eebd3c74bfcb8cc6a7c808005beed0c10d487db6ed433a1

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7076ab1e2670af98f885ef25db0dd383734daf57f699693e10c048f4c5155953
MD5 22e5d5f875ac1b7625c25ffe8793b004
BLAKE2b-256 b46a4c10d5d3950450ae516202537f2fe014cebda3f62cc169528bbec12e65e9

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: dscribe-2.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 543.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for dscribe-2.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 01486d24a4162f132f16c9229dd0069ef8f0bd7fb02c4838de941bc9d32e4d44
MD5 b6501c97da05a1a2d90f5d7f3a8777fa
BLAKE2b-256 d1e5abd6718d7ee4dd120b988f07f720e0da3192fd91b7e8508f008889c0d20d

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: dscribe-2.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 507.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for dscribe-2.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6dcb4f543eb532baeb3e5a913ca00ee782e2c3592e7d075f56ab3d044e7eeaa6
MD5 11fb52886044668781c0fba5878097d4
BLAKE2b-256 dafdd1c96a03ec5606df21e3f573871b09af822c371131c843d33acebdfe63fa

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 faef6ba837ffd0f7ff8124648dac3fc24322cb69ea8d7c798805e0b68f3dd0e0
MD5 33a0a6d433ec7a639e0bee9ab8e39ddf
BLAKE2b-256 2316354625eaedc1e8e5d3a2c6c278b5a1ce0365dfa30ca1cd53fb4a37dd5eb9

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f4c2e91b29655e0711f059f30753215a47faece826ab0b8c0e3f59daad0fa07f
MD5 358cf0ed71558b031535f72ad4d54354
BLAKE2b-256 ddf63d28b96e5c066d73c56110217dafe81cffbb41cea7d5f0808b9a9d836330

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da7b1a78285a434ea6deb2a0a1b48fda419be276cbd83ea26f077de278b9b004
MD5 2470dfb7ac7980ece598ef77b43f1ee7
BLAKE2b-256 0c2efdb2af594d949cdc5ab240c74ea3fb2929781fcb130d0a0a2043add69de3

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd8a9b3733145cb0ac4cd5f6fe09a1d3b7137c435daca32246d7caf36bcd5415
MD5 733acecf5f02187662d75a06e924fcec
BLAKE2b-256 e67dc511daf6678e8006e8e91d11dcf390fa6a34b43f596eb8ab530a7f579c9a

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebe78e1df912be759a865c95a3793ecbc94dd5cefca2410e808fdab4b8d113a8
MD5 0950f974ea9a46f4a670692074a2b559
BLAKE2b-256 9c35666aecf068900293f51ccce9be460331ac4525610e9ccb4790c7bd9a2886

See more details on using hashes here.

File details

Details for the file dscribe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dscribe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d541de7362b0c69e65bee80bddc773af64c71bc1c9f515031a0bdaf5fbf21502
MD5 79c4d892935431f7b347f1c191ef7ad6
BLAKE2b-256 8002d7f959da8257160740f614bc48f1ffc157736343a5e1c06e2a98f1fe951b

See more details on using hashes here.

Supported by

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