view Plugins/Samples/ModalityWorklists/WorklistsDatabase/Generate.py @ 3353:54cdad5a7228 emscripten-logging

Added a public function that will use emscripten-specific logging functions when using its SDK + scaffolding work. Build and UT OK on msvc15 x64. Not actually tested under *nix or emscripten yet
author Benjamin Golinvaux <bgo@osimis.io>
date Tue, 23 Apr 2019 21:40:57 +0200
parents 138664eb59de
children 76b3228f99b0
line wrap: on
line source

#!/usr/bin/python

import os
import subprocess

SOURCE = '/home/jodogne/Downloads/dcmtk-3.6.0/dcmwlm/data/wlistdb/OFFIS/'
TARGET = os.path.abspath(os.path.dirname(__file__))

for f in os.listdir(SOURCE):
    ext = os.path.splitext(f)

    if ext[1].lower() == '.dump':
        subprocess.check_call([
            'dump2dcm',
            '-g',
            '-q',
            os.path.join(SOURCE, f),
            os.path.join(TARGET, ext[0].lower() + '.wl'),
        ])