Skip to main content

Memory-mapped O(log n) DICOM tag dictionary (private + public tags)

Project description

DICOM-Atlas

CI crates.io PyPI docs.rs License: Apache-2.0 Data License: CC-BY-SA-4.0 Rust MSRV Docs

An open registry of public and private DICOM tags compiled from vendor conformance statements plus the PS3.6 standard, with additional entries contributed by pydicom and GDCM. Queryable from Rust, C, or Python in O(log n) with no runtime dependencies.

Current shipped size: 19,688 tags (14,559 private + 5,129 public) in a 3.9 MB tags.dmap file.

Private tag breakdown

Source Tags PDFs scraped
Siemens Healthineers (PDF scrape) 1,951 439
GE HealthCare (PDF scrape) 1,762 257
Philips Healthcare (PDF scrape) 791 807
Canon Medical (PDF scrape) 410 284
Acuson (PDF scrape) 214 53
PDF-scraped subtotal 5,128 1,840
pydicom / GDCM (community-compiled) 9,472
Total private 14,559
Public (PS3.6 standard) 5,129
Grand total 19,688

Quick start — use the dictionary

CLI

cargo build --release --bin dicom-lookup
./target/release/dicom-lookup 0008 0005
./target/release/dicom-lookup 0021 xx08 "Siemens: Thorax/Multix FD Lab Settings"
./target/release/dicom-lookup --json 0021 xx01 GEMS_XR3DCAL_01

Python

pip install maturin
cd dicom-map-py && maturin develop --release
import dicom_map
d = dicom_map.open("tags.dmap")
t = d.lookup(0x0021, 0x0008, "Siemens: Thorax/Multix FD Lab Settings")
# {'vr': 'US', 'name': 'Auto Window Flag', 'block_offset': True,
#  'sources': ['siemens_xr_c2-064.pdf#p41', ...], ...}

pydicom adapter

If you already use pydicom, register DICOM-Atlas's private dictionary into pydicom so private tags resolve automatically with no other code changes:

import dicom_map
import pydicom

dicom_map.patch_pydicom("tags.dmap")  # one-time at startup

ds = pydicom.dcmread("scan.dcm")
elem = ds[0x0021, 0x1008]
print(elem.name, elem.VR)             # resolved via dicom-map

By default patch_pydicom runs in mode="fill" — it only adds entries pydicom doesn't already have, so existing pydicom data is never clobbered. Pass mode="override" to make DICOM-Atlas take precedence on conflicts, or call dicom_map.unpatch_pydicom() to revert.

Rust

[dependencies]
dicom-map = { path = "dicom-map" }
# or with embedded mode (bakes tags.dmap into your binary):
# dicom-map = { path = "dicom-map", features = ["embedded"] }
let d = dicom_map::DmapDict::open("tags.dmap")?;
let t = d.lookup(0x0008, 0x0005, None).unwrap();
println!("{} {}", t.keyword(), t.vr());

C / C++

cargo build --release -p dicom-map-ffi
gcc my_app.c -I dicom-map-ffi/include -L target/release -ldicom_map_ffi

See dicom-map-ffi/include/dicom_map.h.

Quick start — rebuild from source

See DEVELOPMENT.md for the full repository layout, rebuild instructions, re-scrape pipeline, and test suite guide.

Data provenance and limitations

Private DICOM tags are inherently undocumented by design — the standard deliberately leaves the (gggg, xxxx, creator) space to vendors, who are under no obligation to publish or stabilise their tag definitions. Even official conformance statements vary across product versions, may contradict each other, and sometimes document tags that were quietly dropped or repurposed in later firmware. This registry is a best-effort compilation for non-critical use cases — it can help you understand what you're looking at in a DICOM file, but it should not be the basis for clinical decisions, automated de-identification, or any application where a wrong VR or stale name would cause harm.

Notice: The private tag data in this repository is extracted by automated parsing of vendor-published conformance statement PDFs. It is not an authoritative standard and comes with no warranty of completeness or accuracy.

Sources:

Each private tag record carries a sources field listing the specific PDF file(s) (with page number anchors) that the definition was scraped from. This is exposed at runtime via the lookup API — TagView::sources() in Rust and the "sources" key in the Python dict — so you can always trace a tag back to the document it came from.

Known limitations:

  • Only PDFs in which the vendor explicitly tabulates private tag dictionaries are harvested (~21% of the corpus). Many conformance statements describe service classes but do not enumerate private tags — these are not gaps in our extraction, they simply contain nothing to extract.
  • Some widely-used private tags (e.g. (0019,100a) NumberOfImagesInMosaic for Siemens MRI mosaics) were established by community reverse-engineering and do not appear in official conformance PDFs. They are absent from this registry.
  • Where the same (group, element, creator) appears in multiple PDFs with conflicting VR types, the majority vote wins; the vr_inferred flag marks the small number of cases where no majority existed.
  • Cross-referenced against pydicom's private dictionary for validation; some VR values were backfilled or corrected where pydicom had higher-confidence data.
  • Multi-vendor products (e.g. the Siemens/GE joint AdvantageSim RT planning system) can cause the same tag to appear in conformance PDFs from more than one vendor. The vendors field reflects all vendors whose documents reference a tag, not necessarily the vendor that originally defined it.

Status and roadmap

See ROADMAP.md for current state and planned work, and DEVELOPMENT.md for the binary format spec and contributor guide.

License

What License
Source code (compiler/, dicom-map/, dicom-map-py/, dicom-map-ffi/, scraper/) Apache-2.0
Original compiled data (entries in tags.csv / tags.dmap whose sources field references a PDF) CC0 1.0 (public domain)
pydicom / GDCM-derived entries (sources = ["pydicom"]) MIT (pydicom) + BSD-3-Clause (GDCM) — see THIRD_PARTY_LICENSES.md

Full texts: LICENSE (Apache-2.0), LICENSE-DATA (CC0 1.0), THIRD_PARTY_LICENSES.md.

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

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

dicom_map-0.2.4-cp313-cp313-win_amd64.whl (158.7 kB view details)

Uploaded CPython 3.13Windows x86-64

dicom_map-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (289.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

dicom_map-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (289.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dicom_map-0.2.4-cp313-cp313-macosx_11_0_arm64.whl (257.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dicom_map-0.2.4-cp312-cp312-win_amd64.whl (158.7 kB view details)

Uploaded CPython 3.12Windows x86-64

dicom_map-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (290.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dicom_map-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (289.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dicom_map-0.2.4-cp312-cp312-macosx_11_0_arm64.whl (257.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dicom_map-0.2.4-cp311-cp311-win_amd64.whl (159.4 kB view details)

Uploaded CPython 3.11Windows x86-64

dicom_map-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (290.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dicom_map-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (290.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dicom_map-0.2.4-cp311-cp311-macosx_11_0_arm64.whl (258.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dicom_map-0.2.4-cp310-cp310-win_amd64.whl (159.5 kB view details)

Uploaded CPython 3.10Windows x86-64

dicom_map-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (290.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dicom_map-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (291.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dicom_map-0.2.4-cp310-cp310-macosx_11_0_arm64.whl (258.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dicom_map-0.2.4-cp39-cp39-win_amd64.whl (159.8 kB view details)

Uploaded CPython 3.9Windows x86-64

dicom_map-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (291.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

dicom_map-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (291.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dicom_map-0.2.4-cp39-cp39-macosx_11_0_arm64.whl (259.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

dicom_map-0.2.4-cp38-cp38-win_amd64.whl (159.8 kB view details)

Uploaded CPython 3.8Windows x86-64

dicom_map-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (291.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

dicom_map-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (291.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

dicom_map-0.2.4-cp38-cp38-macosx_11_0_arm64.whl (259.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file dicom_map-0.2.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dicom_map-0.2.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 158.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dicom_map-0.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e347906c51ca6e82a5242bf7bbb0946d02d70ec44c847bdb6790b983ddd9b384
MD5 13c38aa5527bc5c57cee3842d465b1ea
BLAKE2b-256 34ae6da7c31316af950d15a018e0e2d363cfbcedd7fadb48758e263740d00f76

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp313-cp313-win_amd64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0781afa1bd1bb014068daafca26ac97bfd48abf9ccb55156c9d8a1ba9073dbcb
MD5 ecc933686fa38e097c6f34d7481384e4
BLAKE2b-256 432198561b1380394037d402d749a75c3bca6e6ca9c7afa78a8cf8ba31a46879

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 394d496ee8c08a4354b68c980b7bbfc2a60e468f721b3ca6168df3b99d265905
MD5 4135e4af91f12547d7310095574e74da
BLAKE2b-256 c1c7fdd5ceaac92d8db611307dd2e2b6279b726ec92ba17c499a6808f502e366

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0e4da139caf35ac93b3ea2a83b1fdec9127e7b9c729d46a368b83be21d5b4de
MD5 099239772ebd5398d5e9fbdc49cb958c
BLAKE2b-256 fd1160431ca46e2982da5693dbf8c43af450ebce77d3c40594bb89ea5e8df130

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dicom_map-0.2.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 158.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dicom_map-0.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2cca23a14b48df879cb5d499694644a59ac55c4c6faa71747e89a41071561af2
MD5 d40657cfdca7662c1801e5dd5be08f76
BLAKE2b-256 63ba3ae19ce16aef4c41d2a12c0f8233731751993df6161823b70f35e825f81a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp312-cp312-win_amd64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4867707f8d8967303da31753565f018c8771412916da7a851e482025682e2108
MD5 acac9d502dd368a4deb7e9b10c551195
BLAKE2b-256 a8d6c7f5b268c944d8e8c2072682964daded53b326f12905912bcf85a84d52ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3dae7d7de36dfbe6c435cb22f6521579722197eb01750af3fe85bf1e52ee035c
MD5 1c862debde6f8b5ebfb98e9a8cb67d6e
BLAKE2b-256 872cdfb1648b6f26cb3f3b8383ae2a3a241c56ebcf74bc85166ec7ceda3c7508

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c334ed2bcf23209b6950b7675a0e77b5c0c0ad50ee97ab6851f8a55f4cab95a6
MD5 29041d1971d68543acaf0b18495513cc
BLAKE2b-256 817e50edfc952c1478840ceb86168a11eef0b94e82c2aa4663417609d2d6a754

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dicom_map-0.2.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 159.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dicom_map-0.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3bbdb3d6e09fbeaffd1cc588bbe0933241610d788021ae163f28973ec11f93fa
MD5 5a10be9fd0905027039187c694525b99
BLAKE2b-256 bcec4e490607c981a2edd8425e33665ae61439ea43a52c83cecdbd920b281ae3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp311-cp311-win_amd64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34cd7f65d6a9a028693a2015ad84eb187322132b39188a9d15b5eed39652fa3a
MD5 194c57b630ac793ff2e4e13c7472a77c
BLAKE2b-256 ce603ad13084ad3dbe78ef7a8a303e6e43ea09dbf99a4745cd1daae886cb9ff3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b34d48fb97c68a33fcd6c1ac933dc2f2e8e6251147536f036335738ee6edf596
MD5 40716cdac02db4e7d942680c9e75ae59
BLAKE2b-256 756f8662f2beca14aeb859aa3a16e05d6a137e44cd44bc1e4f5dbb2b07f4fb3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 788c3046a73c4086db3b6862c7b3be84f7e823a7f0773ed390cf8185768d7b86
MD5 94593c52313c595a92d0eb4bdf7849d7
BLAKE2b-256 433c0d6cf8494b81695c5ce4f49b5e4aea01f9a2bbdb995f137948e826c1768a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dicom_map-0.2.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 159.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dicom_map-0.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8a81ff84b9bc9095c9a1c9199ce7cef64224dae5bb8cafd5dfc53eb7d9572cd3
MD5 9501b49f677376ecb65fcf32fe04aee7
BLAKE2b-256 39c8bd969e6878103ce060c100ee47daef76651417aff3d47861e6331c3e8434

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp310-cp310-win_amd64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8abf619c83ed14f96c338377c4dd184ec135417f58b51f1c5904d7eaa7cf9b99
MD5 8c7574c600c9b3e5055033304574dade
BLAKE2b-256 fb0876d05e11ac6b83c3c7c102da0c488bd96329278cc9073ad7f66c606a8e56

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb5c1d675ee29711f85bb4ec89a0cfb304dd3fd205152fb8d05fff6ee619df3d
MD5 1793bbbfde8fac5a1133283f0d018fba
BLAKE2b-256 76f1ff7b65c0b3bade88f9ce99ac12cb0eb6c0e0385a1e13422fea86b3f0d77b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d1f947f68e94248a212ab637113d63052c5ca6fe3865ab283348b0eccd6aeb6
MD5 8da83b67a98e5a25c26c875b5037110d
BLAKE2b-256 f13593f7dca945dbf6062be51c6621e2fa3706b37332abb56b76e901813ee274

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dicom_map-0.2.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 159.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dicom_map-0.2.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b1170a236acca8254fad6d6a393c272ba790a031d3f24579d0bda507cbf6475a
MD5 fd1ceffee034f80fbd9a4e02eb335c78
BLAKE2b-256 5f48fc665389ddd44d32b9b9e8a2ce7e4f360d15e6f5588868cd49fab8a4d174

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp39-cp39-win_amd64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91a775736aa7a663a48dd03648cca6c11b2877497fe8141f3dec19b81503b34f
MD5 72cade5c8f090bd2e15f350235c8e027
BLAKE2b-256 eabb044b2e420659cd0f96e0cf39a869a12f592d819d980da58098077edee270

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f75a35cbab7920e7829e11cfdfdcfbafd3c3046a43479fa228241cdb56ff804
MD5 b1e307f3829e8f8dda46bc901aab4b18
BLAKE2b-256 c22c7e12a00e9656d16a3ef899d85e6adba330f11cac7df9f4e0485d16fecbfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15ee85e833f2537f97bd679183439612fd5411db034fd64e231cc8437d009339
MD5 c3399d2807497a282b6bdfd88e8dc36c
BLAKE2b-256 8c64d6802c9c211ce520af585d790d3a4335010865d79550983716d873f91217

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: dicom_map-0.2.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 159.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dicom_map-0.2.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 86fd0355d0ce51f50e41056f21b37fa2642d6b43f3e0e7f802a67b9ab101dd4c
MD5 bd5b0a213f8a1d4f0b9079fe09d46a0c
BLAKE2b-256 413ab2ebee884b1b91b49efa71857d2638995368fecea1d2a4130a8a07a7724d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp38-cp38-win_amd64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 480edbc41627b513bc479034e306fe0cf4a415aa73e8721632ba533ba6b6b4ba
MD5 0ec2a9a18d56e31c5dd551c97cc015a3
BLAKE2b-256 2fe34baa9fb40d8b5766017a5e04fc258917d824055157f45c12e37e6d89017c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d654e4430f037329a7fade7be6adbc752000eec977c9d928a7d2cef18a424919
MD5 fc618385901fb7598959864be420e10e
BLAKE2b-256 9fa62e2e136f81ce16bf6d0427a039c1cd0865e9dc7bfcbc369de62e63a137d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dicom_map-0.2.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dicom_map-0.2.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e02068fb88f439e54a1946755dacf4bf937d9f7a19c1323f8dd792c2e3656b39
MD5 3b5b718a4578408037adf399adae0724
BLAKE2b-256 35a478443abe98731dbf40f3160d44d45f9615458972274a3af2486a922099f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for dicom_map-0.2.4-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: release.yml on Sigilweaver/DICOM-Atlas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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