Skip to main content

A fast and light-weighted DICOM software development library

Project description

DICOMSDL

Build status

A fast and light-weighted DICOM software development library.

Introduction

Digital Imaging and Communications in Medicine (DICOM) is a standard for managing informations in medical imaging developed by American College of Radiology (ACR) and National Electrical Manufacturers Association (NEMA). It defines a file format and a communication protocol over network.

DICOM Software Development Library (DICOM SDL) is a software developed libraries for easy and quick development of an application managing DICOM formatted files. DICOM SDL allows to make programs that read DICOM formatted files without in depth knowledge of DICOM.

DICOM SDL is intended to process a huge bunch of DICOM formatted image in high speed. For example, processing 1M+ dicom files for deep learning, speed really matters. To achieve the processing speed, DICOM SDL use an extension written in C++. DICOM SDL works much faster than pure DICOM implementation(see tutorials/timeit_test.ipynb). If your job is simple such as image extraction or get study date, DICOM SDL may be what you want.

DICOM SDL can

  • read DICOM formatted files.
  • read medical images in DICOM file, if file encodes in raw/jpeg/jpeg2000/RLE/JPEG-LS format.
  • modify and save into DICOM formatted files.

DICOM SDL is especially optimized for reading lots of DICOM formatted files quickly, and would be very useful for scanning and processing huge numbers of DICOM files.

DICOM SDL cannot

  • send/receive DICOM over network.

Install

To install on python,

$ pip install -U dicomsdl

To get code and compile,

$ git clone --recursive https://github.com/tsangel/dicomsdl
$ python setup.py install

If you want to use AVX2, then set environment USE_AVX2.

$ set USER_AVX=ON
$ python setup.py install

DICOMSDL was successfully compiled and ran on following environments

  • Microsoft Windows 7/10/11 (x86, x64), Python 3.6-3.12
  • Linux x86/x64 (Ubuntu), Python 2.7, 3.5-3.12
  • MacOS 10.9+ (x86_64, arm64), Python 3.6-3.12 (No more support python 2.7-3.5 on Windows and MacOS since 0.108.5.)

If you have ImportError in Microsoft Windows, install Microsoft Visual C++ Redistributable.

Some examples

Please look ipynb files in tutorial folder for detailed explanations.

>>> import dicomsdl as dicom

>>> dset = dicom.open("somefile.dcm")

>>> print (dset.Rows, dset.Columns)
512 512 

>>> dset.getPixelDataInfo()
{'Rows': 512, 'Cols': 512, 'NumberOfFrames': 1, 'SamplesPerPixel': 1, 'PlanarConfiguration': None, 'BitsAllocated': 16, 'BytesAllocated': 2, 'BitsStored': 16, 'PixelRepresentation': True, 'dtype': 'h', 'PhotometricInterpretation': 'MONOCHROME2', 'WindowCenter': None, 'WindowWidth': None, 'RescaleIntercept': -1024.0, 'RescaleSlope': 1.0}

>>> dset.pixelData()
array([[-3024., -3024., -3024., ..., -3024., -3024., -3024.],
       [-3024., -3024., -3024., ..., -3024., -3024., -3024.],
       [-3024., -3024., -3024., ..., -3024., -3024., -3024.],
       ...,
       [-3024., -3024., -3024., ..., -3024., -3024., -3024.],
       [-3024., -3024., -3024., ..., -3024., -3024., -3024.],
       [-3024., -3024., -3024., ..., -3024., -3024., -3024.]],
      dtype=float32)

>>> dset.pixelData(storedvalue=True)
array([[-2000, -2000, -2000, ..., -2000, -2000, -2000],
       [-2000, -2000, -2000, ..., -2000, -2000, -2000],
       [-2000, -2000, -2000, ..., -2000, -2000, -2000],
       ...,
       [-2000, -2000, -2000, ..., -2000, -2000, -2000],
       [-2000, -2000, -2000, ..., -2000, -2000, -2000],
       [-2000, -2000, -2000, ..., -2000, -2000, -2000]], dtype=int16)

>>> dset.RescaleIntercept
-1024.0
>>> dset['RescaleIntercept']  # another way to get value
-1024.0
>>> dset[0x00281052]  # yet another way to get value
-1024.0
>>> dset.getDataElement('RescaleSlope')
<dicomsdl._dicomsdl.DataElement object at 0x10ff5d0f0>
>>> dset.getDataElement('RescaleIntercept').toDouble() # yet yet another
-1024.0
>>> dset.getDataElement('RescaleIntercept').value() # yet yet yet another
-1024.0

>>> print(dset['00540016.0.00180031'])  # from another example
FDG -- fluorodeoxyglucose

>>> print(dset.WindowCenter)  # return None if dicom file doesn't have value.
None

>>> dset.toPilImage().show()
 ... pop up image ...

>>> print(dset.dump())
TAG	VR	LEN	VM	OFFSET	KEYWORD
'00020000'	UL	4	1	0x8c	212	# FileMetaInformationGroupLength
'00020001'	OB	2	1	0x9c	'\x00\x01'	# FileMetaInformationVersion
'00020002'	UI	26	1	0xa6	'1.2.840.10008.5.1.4.1.1.2' = CT Image Storage	# MediaStorageSOPClassUID
...

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

dicomsdl-0.109.3-cp312-cp312-win_amd64.whl (924.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

dicomsdl-0.109.3-cp312-cp312-win32.whl (831.4 kB view details)

Uploaded CPython 3.12 Windows x86

dicomsdl-0.109.3-cp312-cp312-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

dicomsdl-0.109.3-cp312-cp312-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

dicomsdl-0.109.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

dicomsdl-0.109.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

dicomsdl-0.109.3-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

dicomsdl-0.109.3-cp312-cp312-macosx_10_9_universal2.whl (2.3 MB view details)

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

dicomsdl-0.109.3-cp311-cp311-win_amd64.whl (926.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

dicomsdl-0.109.3-cp311-cp311-win32.whl (831.9 kB view details)

Uploaded CPython 3.11 Windows x86

dicomsdl-0.109.3-cp311-cp311-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

dicomsdl-0.109.3-cp311-cp311-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

dicomsdl-0.109.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

dicomsdl-0.109.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

dicomsdl-0.109.3-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

dicomsdl-0.109.3-cp311-cp311-macosx_10_9_universal2.whl (2.3 MB view details)

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

dicomsdl-0.109.3-cp310-cp310-win_amd64.whl (923.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

dicomsdl-0.109.3-cp310-cp310-win32.whl (829.2 kB view details)

Uploaded CPython 3.10 Windows x86

dicomsdl-0.109.3-cp310-cp310-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

dicomsdl-0.109.3-cp310-cp310-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

dicomsdl-0.109.3-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64

dicomsdl-0.109.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

dicomsdl-0.109.3-cp310-cp310-macosx_10_9_universal2.whl (2.3 MB view details)

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

dicomsdl-0.109.3-cp39-cp39-win_amd64.whl (924.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

dicomsdl-0.109.3-cp39-cp39-win32.whl (829.0 kB view details)

Uploaded CPython 3.9 Windows x86

dicomsdl-0.109.3-cp39-cp39-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

dicomsdl-0.109.3-cp39-cp39-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

dicomsdl-0.109.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

dicomsdl-0.109.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

dicomsdl-0.109.3-cp39-cp39-macosx_10_9_universal2.whl (2.3 MB view details)

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

dicomsdl-0.109.3-cp38-cp38-win_amd64.whl (923.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

dicomsdl-0.109.3-cp38-cp38-win32.whl (828.7 kB view details)

Uploaded CPython 3.8 Windows x86

dicomsdl-0.109.3-cp38-cp38-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

dicomsdl-0.109.3-cp38-cp38-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

dicomsdl-0.109.3-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

dicomsdl-0.109.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

dicomsdl-0.109.3-cp38-cp38-macosx_10_9_universal2.whl (2.3 MB view details)

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

dicomsdl-0.109.3-cp37-cp37m-win_amd64.whl (927.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

dicomsdl-0.109.3-cp37-cp37m-win32.whl (832.9 kB view details)

Uploaded CPython 3.7m Windows x86

dicomsdl-0.109.3-cp37-cp37m-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

dicomsdl-0.109.3-cp37-cp37m-musllinux_1_1_i686.whl (1.9 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

dicomsdl-0.109.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.4 MB view details)

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

dicomsdl-0.109.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

dicomsdl-0.109.3-cp37-cp37m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

dicomsdl-0.109.3-cp36-cp36m-win_amd64.whl (927.2 kB view details)

Uploaded CPython 3.6m Windows x86-64

dicomsdl-0.109.3-cp36-cp36m-win32.whl (832.9 kB view details)

Uploaded CPython 3.6m Windows x86

dicomsdl-0.109.3-cp36-cp36m-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

dicomsdl-0.109.3-cp36-cp36m-musllinux_1_1_i686.whl (1.9 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

dicomsdl-0.109.3-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.4 MB view details)

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

dicomsdl-0.109.3-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

dicomsdl-0.109.3-cp36-cp36m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

dicomsdl-0.109.3-cp35-cp35m-manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

dicomsdl-0.109.3-cp35-cp35m-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

dicomsdl-0.109.3-cp27-cp27mu-manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

dicomsdl-0.109.3-cp27-cp27mu-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

dicomsdl-0.109.3-cp27-cp27m-manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

dicomsdl-0.109.3-cp27-cp27m-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

File details

Details for the file dicomsdl-0.109.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 334c818378dfa918b584accfb8ab35d08688799efefa8b089d57c4cd494f1ded
MD5 85e75e04cf678879059bc5b1d6db3990
BLAKE2b-256 0be164452ea12f42744a446a186022b007ae456dfca1c8af9b7965255bc33785

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: dicomsdl-0.109.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 831.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.7

File hashes

Hashes for dicomsdl-0.109.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ff6acd2c4ab4f31fd2d3bf9bcca4438e72f0bf82bc3242872baaaa9f2c72d388
MD5 0593be33a897b43b10b67f64cae5957c
BLAKE2b-256 2e415c29281aabb479e3a39e1afe942f655e869afde43cb2df23015645a32a2b

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1157f9d48a86ead884d2da81214ebcdd55f5a146fb88e8263cb0bc980ead53e6
MD5 6d0271c713409d34172047b82aad5b8e
BLAKE2b-256 cd65913d655c4c8f753029c6f16670a34da15350efef02de4f1bd80e1caabbef

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5a74777a2ee84ccb543a075aaffb718341eab554a1a2919eacfc88dcdfeed6be
MD5 d892be13e8f8d344192c15bbaecd3465
BLAKE2b-256 43f69236cc25063ffe3dc8c72eab3d1d0a48f265f7917a2a326e4bfe77de9d08

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea47aaa959a1692970a925c20b674403f10d42ae2a658ec6395334d17095cfc5
MD5 84ac75b4d4ec3a7e3690ad24c97cd0ea
BLAKE2b-256 e230959c3d52b748b06e6ea2a785651c6235caab44599b5e32e4a9e9e3cc7603

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e439cfde73c9790e2a85149ddf97d0a842444b9d8f3d0ca23a34570de07035f
MD5 7e85088d71db7bf222c39f7b6c8c1052
BLAKE2b-256 69b8474b6f5430cbd0b3dc935d0248cb2e86ac3b012d8aeef3bfb45ffa75f662

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87bf7cb75d27f167679a87540f3171f1e4ee49b07ebfcbac05cbaf192f502948
MD5 5ec7fba94f34c2b30057929a66f09b6c
BLAKE2b-256 9efd26f30864bf74fea3d3e66ebebb77441bf6d65846c3ddf723ce700b8ca84f

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cb3c17c8a52c03a353b4676281ced2209c7871b822a8b06e0afb58b99d98e714
MD5 0c131235dd7cd1accb1405c23f05f9d6
BLAKE2b-256 0741438f11b8e2a4339d9e5711eff28446dd486178cd3aff40ddd3dc8e66bc93

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5a102fe869cbece7c61f8f8fe62a8b0b27b24d4232af6408949bb28824fc1649
MD5 163f6108ba56bbd969e95d3785f3485d
BLAKE2b-256 ec07c08a31aa66780c2c43bc6a26d42e7cc6aafb556bf5f4e5a3843268948057

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: dicomsdl-0.109.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 831.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.7

File hashes

Hashes for dicomsdl-0.109.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 69b2d4ffe340cca350edddb94ad5e1d8b54c2754fccc2331eac0ee7f11f9ba51
MD5 47ede940312d18f1de4aa14ef8954f34
BLAKE2b-256 50cd25020761e97bd69dd9e6cda4c2de037df148661f9935029503f569fd85d9

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b63339147cc9caf00320edf608d0b2aa082d11ff4944ae380ba8d3aa2dbfd9c6
MD5 ac5e679d111ee203e0517a35472e345b
BLAKE2b-256 6d229181133832dc7a21686d37f50ab7653ac54ce0b937cdc88b88dd94711824

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5481b4a4a0aad7b95db5e257fe263f2b8aba6ddf5bd06c145d259414d99dcba3
MD5 f9555505de90cd3ccb7692b3cf319c39
BLAKE2b-256 c73386ac04807ab8f96ec2a0ce905642b2c366c2f6caf9292b6c116be44201c3

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04b7db5c41a3cdb58d043d062902742a39adc86b803a723515d40852a0603ade
MD5 b536665b752f0cbe8b251d7d01409844
BLAKE2b-256 a4e438ff9c2ac28698b3679cb2025d932500554cf7d7b39ebce154db1b536d0b

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9d933acd343a55325ee28df395a7a3c3f6de2e62c70493a1d0d7b2097ce93dc
MD5 283ed0585230ed419fdd24da062b37b6
BLAKE2b-256 20efbbbe67ae33e2d23624b666607f6189691a55d95faf5ea44f733a08600ddd

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7dbf98d801e455423681d8f8a733f842020427988089e1b27c83dc0ac2caba6
MD5 a500a24dbafc106e4697263541fd195d
BLAKE2b-256 dfc61b7bd0e4f55b18288ff09653fb7369ef7036e69aea4ce3d7f6b0ccad5180

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2a40a5858d1ef187b840d57a476dd8fa00aacea1605fb69e010cf3091027989e
MD5 afe7358a6c38e79209b4eb2dd5839d29
BLAKE2b-256 c1fd02dbde43b377eef46df0768abfb33c02d15010cec21cc0f452bd34029361

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cfc5e4ecb47a993e740dc1d181f812965304148cc8d1538896c52f8d332dacbd
MD5 12f66580a221702059ef61e1589569b1
BLAKE2b-256 216bc42daee0f6282e5968c74958bd53268c903cf04e74a0b80dff357f7634ce

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: dicomsdl-0.109.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 829.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.7

File hashes

Hashes for dicomsdl-0.109.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d49c621096f99aa1c1594877a16da755b6883271bc86e4462184b8f9d7664e06
MD5 1aa979607900251e258e56e2f5321183
BLAKE2b-256 3f80cee346e4b7a93d3ac848aa798598fb610de5f561fdc7f9a3734b0002d605

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 708ccf81b0f5cfad66c791627f25a2ca1979c9920fb8ab4ae1e52cd661d0701b
MD5 35eb71b682579563c232163526e7042f
BLAKE2b-256 ac50c531747d1fac06f607d45cfd75d103ed3ad1620ab4828af7370e61d4e860

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 cdb5e19bc1c4521f7e38b471bf1c8e2b77b78c2cdffa82bd0b0e0ffda53cb98a
MD5 29ab89915592f0dbbe4d07be49ab7cb7
BLAKE2b-256 319e12d6d1b99de68b8fce712f22c904bc15456dd4c325247ecee6cca27d5980

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c8808369ba5adaf5db44b72d86a95590d3d52ab09d90a6278c47668f220866c2
MD5 18c1dd54cd05e93457f7f51e55455727
BLAKE2b-256 5723411d6e0509768f9a46a283b26163c404180b3e269b07acb9292bee188ea6

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 693459cfa49e44ea0abf6649b44e522fee8da18f6d5ef0aaf54315aa9ebe5072
MD5 1217162e500ac3d37c4a7b5c3d92feac
BLAKE2b-256 52654a3ac38e60fe0b5b4172f60db9d5709f1b35ddf3d1b73d319d9bdb83a1eb

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7064fc4e55fe2f4fd8a9cd1267b273e01107bc8cb7a77c5a34ac08f7f66a9fbf
MD5 751a444e452badc466ef24207cacbc19
BLAKE2b-256 4e6a6a7406422a326b87e3b855e7cfeb07fff756ea2945a0d6316107ac068989

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dicomsdl-0.109.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 924.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.7

File hashes

Hashes for dicomsdl-0.109.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bb8486258f28ce556cb7fd3324264419183d57dc5516a915475471002e94b290
MD5 96705dcd63583cf62f7683c8afa11e92
BLAKE2b-256 6ba29f07f673b674ec1235f8fa52151969821c214b91345439057ed0aa9ea0a8

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: dicomsdl-0.109.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 829.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.7

File hashes

Hashes for dicomsdl-0.109.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 882fa3456a5a98a0db2738a21263adfc4717cf4117682e68ed7e6508b30919ad
MD5 aced33ad2d7624daf07cbeb0263658e9
BLAKE2b-256 148474aa9e93a3bf2b01bc75282c4697522fc71f3f3ad31e7a28e9f2e32739cc

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ab4a811f674ef5913961eeed1d4c6799f997252310a15a42b919f16bb8b39c4f
MD5 478e1249d44e2c0c87442a006037d540
BLAKE2b-256 a08d5d0ea5441641f8895d41f94794405fc0d475558e712bc057c1bcef521919

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a7e00ae460d5ec3a80c6be70b76c31485f7eb3162b33585ec64948abaaaa52ba
MD5 c112907c7a12471b4d761426ea067d3a
BLAKE2b-256 a5677da9095cc67850ca2de1b1ada2d0b2e9e396fd0299a3cca9cbad90c9831c

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9b7af3a0fcddda4b250bede48b7b5bd8cd206fceaf912659cfc3dd80b4b7c8a3
MD5 7b42dcd7a14ba620c75bcad7d363335a
BLAKE2b-256 6bc7ed71cb909326edfccf404c41e7137ba30411d204b491ac2839c2c077cef5

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 13afb0092726be93d8d307779e270c8876d8db6e277fef23f9214165a631b672
MD5 ffe61f57dbab635f3a429f862ac920a5
BLAKE2b-256 a5535841a0eab02b4cfbd25d0a0d7979778397921df1470a62a747075a631a72

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3e06a67cc2b92b8f1f73119ffef0d5f02ad32ef5755e3cc24def98d76d52a689
MD5 6ff5caad551be16c80cef886f6596412
BLAKE2b-256 4578c3d2da3f0cec5fb2ee147ab5ce567e55a21b0a4a1a8b494bb64c4431c215

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: dicomsdl-0.109.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 923.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.7

File hashes

Hashes for dicomsdl-0.109.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d64c9bf33919020f85d22167a90d03a66affd284a252ac205ff19172c142a70d
MD5 f6eeefbfbac12e4c55265fe60c59603c
BLAKE2b-256 128651cea7d03da47bc8d1a176023edcb2a2b15c766287b7627449c679df8608

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: dicomsdl-0.109.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 828.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.7

File hashes

Hashes for dicomsdl-0.109.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b15098bbd3a61cbebc785c9814f9dccbc4e0a113328d24fe31d689d30777f729
MD5 0039c95a477355e7c57b3adecb2e4019
BLAKE2b-256 66cd72f039c01009435a133fa2c10e59de17fcbf42a2540dbb826cffe1710a0d

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b9cc7a73bb16701b3dc1e21c0d247fa5b6575ea094069861cfba67db6ca76ca0
MD5 f11176f5f55d186e71a00a72863639ad
BLAKE2b-256 469b37e2b97b0f883c9e5f57284ab6aa71889d7eb467bbd2f67e2516f4effd9b

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2e227498fddf1aca5e6321f6228e4edaafa08024864867a47b4097bb34b356e6
MD5 50bc838d1e72ce1dadabaa16c95d4f4e
BLAKE2b-256 eda87c9178091b3c75e4fe1e03fe52052b99e6ac4a564319ee87c4e95cc2768f

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7eb131cd1f0f68b60a22fcc1bf6eb48f2220fa3eb0ac5b1d822c5e2fb4d2c158
MD5 ea5efeabf42f0bfd59495dfcd1c5aed2
BLAKE2b-256 ba828ba7dc0082398e5e93dad174836aac52b8f6fce6c9e7b868d762639a43ac

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f85331287c19f7796ee8762d30cb517c77bfdea693e3df0ba3805baf44f6a0fc
MD5 a9813f9357143136e0ef108f88115e05
BLAKE2b-256 79129e8e15c40f69601a1d6cfeff0d65bdced75fea0bd969f88e24017bad6128

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4de0165ae5fb5888617552da5a42cf8b4c721d5abc983643cc91a6834838fb4a
MD5 00323ff837a24e2d98298e7ccba8ecd1
BLAKE2b-256 d20e45cb89f2c5011e77af91965642586002eb170d5e54bd3c62786254f24b49

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 22df806a2005526487d4745ee082f9667807d252826c8dd99458964a4be6321d
MD5 c6a57a43a2583b5ced00ba8c8e893567
BLAKE2b-256 cadddb432ac47dc6eab68647580997b0102e950968c964fb13215f08bde0b233

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp37-cp37m-win32.whl.

File metadata

  • Download URL: dicomsdl-0.109.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 832.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.7

File hashes

Hashes for dicomsdl-0.109.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fb093bebd4c6da9334b32dbeb5142f4398f095acaacf0a08f2a5f6a884e3f1a0
MD5 a963038893135e0b843fc5e4df515d86
BLAKE2b-256 bbe29083e07209ebd62e266f3011a3fc9c1d0834257e98c66ee51fea088ae29e

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ed7ea825c4e80ac612f89079a159eee35416e960d6ca85dd4f455ad2144d27c7
MD5 617c5b127bfb4994b07f24d9130ddf9d
BLAKE2b-256 0527ba2b08007ec074118a974be04f549b3a177dc4459d87f97f635b0fb9a69c

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 cc2220675d8e859c450a1b913c13c8b4a6f290cf63e37acbd90c9d1152414bae
MD5 c7f1595897eefdf4f09bf9a7575fd8a3
BLAKE2b-256 59d6803c439a9a776d5f259d875eaf39f6c5823a33c4f1e00e015645775f590a

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0a7156f193dc7723735cce244a9cf67911f94adba90ee27e6b31b027ef9c0260
MD5 75f7fa3d996b2eacb3547a78fc1d60e8
BLAKE2b-256 ff1fa34fd7f1a17b463d5348c60231c1abc363b5af2f21985152f9122da09994

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2c7e6442acdba5d1bf5aa56b1f081d0adffc41f16fe4ee4a77862146c1bb5600
MD5 8c2ba7febe45e3ae51dfc0ea65384e87
BLAKE2b-256 22e37478f468e60dcc67bd0c8234f7243e6e2e5ea9ff74fd6800c882406400ad

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ddf7a4e93aec9441f101dfa7dcfc371c2073c20d643c872e7f24a43a4556a4bf
MD5 49dfb26a2a43cefa7bd06151af7de622
BLAKE2b-256 3f33f1469a7ce4cc0f167639baf35b3165f6bc76eb38c4b45844659bf144ac60

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ec527642a7d399eba70a23fe75a72986ac496d52f0a46cd8075fa37ec8c65918
MD5 2f80ef5636a314d539ce8ddad1ff9922
BLAKE2b-256 a7d2e81cfbe17cf991ece8ad4e3bc61e9ca002b89d456c1070316a505d2a8724

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp36-cp36m-win32.whl.

File metadata

  • Download URL: dicomsdl-0.109.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 832.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.7

File hashes

Hashes for dicomsdl-0.109.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 522bd5d50fe74ccdb2aa3beee646c696120064cded2e6f7f50b9fa3f4d81d56c
MD5 1aae6d99fd02a05bc6337531593c6410
BLAKE2b-256 243f8a471fde508543cbe6c84696158f9e89f72874e0f2b9164b77ba74d29b6e

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4ba3609786357a2e58148c8aa5958152210620d62452b6bc716168534b1470f6
MD5 5beeef9c73a20757f4d41dab1bd91e89
BLAKE2b-256 eb3f54fef92e06bd8d00d0387a3fb61996e5c320b1f9cfa5f7cbcfddb35106c9

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e4b640308562b00a03fb213dc0a38b234020de728816b5626201252488e68b9d
MD5 0b1262d750eaca0378f8ba19b113035d
BLAKE2b-256 61247ce0adce1a7f54302dc3b24137032cf6eb6f2611fa69039f11879303a1cd

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3960d6bd0e73b05be75084efe3772e8b30b9e68bc21e7f49fe7d3ffd71a2a2e1
MD5 b535349f60d8778c52a8fca2e9b463d5
BLAKE2b-256 135460423173bff50549a5e5b13e793129fe4b6b03664fd4400b155e02380183

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3ae3cd3270e48aaa294efca8ac31ed9058d43551725beb04a4d90703ef468fa1
MD5 f01180839be6c383b7d71d143eb1f42e
BLAKE2b-256 2b2f451d3c9318984a1a3db61732dd8c4fa6a042abe34b52a37478db9abd7692

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 389965ebd189a50e0986251cfd227bcdfcf94fbc8fb9f9e62296cf77069b3851
MD5 fb3520065b85b7b2ea1fb22c01a57a63
BLAKE2b-256 b037e8f9e0f1b92410f1b3bab297cf238bf38e121915718b7d9016862b816c79

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a800708659c0975816c0b15d31a16776c6a946fe3ee6b1f06ba9e3d5f1afd6b2
MD5 671e8a1b58db53101a50f92e24569b04
BLAKE2b-256 fdaf0ce9316a371460b65ab6ab5f119fd79a19164808f31af8035c00258199c9

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp35-cp35m-manylinux2010_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 291baa69418a3341d3ffffe2304bcf5996b92fedb2ba7401e9a5d54842c68fcb
MD5 c565d12fd7142a7a51efff1f19c75102
BLAKE2b-256 db45fe87ef8ab4f8d6593d7c2b63498249bc4ca91a722d862e761ac17159d88d

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 18dde375ea9cbd6e508de62f2f636bc5b9f2bd45f89fe1ea8b841e1277f0306f
MD5 9e997dc43645ab11f5bd3820c4f2b0c1
BLAKE2b-256 e4d203f7502dfcb6aa21a89310f2777202c5de187773b8f8f9cd242f30bd4fd1

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 787ab75bd7e779bfeabc260360d369a3f376d48803abe8f178b2cc5fb97cea14
MD5 fb0f800a0243f453f8084c13d67ca68e
BLAKE2b-256 c2df8e4e74f915eb452eb2143d3a6c2164cefb2a61853ebf461a6fc58f37abab

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2a8e903b0052dd169e5586b3051d3231d6efc3a7cb2f90515b6f5ff2eb7ce7a3
MD5 d5d0936e276e64a166bcb8deb0d95282
BLAKE2b-256 1c075ddd22417691974df2c04ed98c2ff9d0040cdfde7504717f4caca4513644

See more details on using hashes here.

File details

Details for the file dicomsdl-0.109.3-cp27-cp27m-manylinux2010_i686.whl.

File metadata

File hashes

Hashes for dicomsdl-0.109.3-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fa1d63c4cc74e02cba845b1310f51a79f1bfdc51d53f8e36fbfa75d02df79ee2
MD5 e657b98b298601750a5854bd76e4233a
BLAKE2b-256 bb8a8bfda995c88850980cff6c8f1a3f5d0026abade5d65b697b1d2959ddf2d9

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