Mercurial > hg > orthanc
view Resources/Samples/Python/AnonymizeAllPatients.py @ 2743:3f18a64760ee Orthanc-0.5.2
close old branch
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 17 Jul 2018 09:39:08 +0200 |
parents | 61e4c62b8c35 |
children | 44382c8bcd15 |
line wrap: on
line source
#!/usr/bin/python # -*- coding: utf-8 -*- URL = 'http://localhost:8042' # # This sample code will anonymize all the patients that are stored in # Orthanc. # import sys import RestToolbox # Loop over the patients for patient in RestToolbox.DoGet('%s/patients' % URL): # Ignore patients whose name starts with "Anonymized", as it is # the result of a previous anonymization infos = RestToolbox.DoGet('%s/patients/%s' % (URL, patient)) name = infos['MainDicomTags']['PatientName'].lower() if not name.startswith('anonymized'): # Trigger the anonymization RestToolbox.DoPost('%s/patients/%s/anonymize' % (URL, patient), { 'Keep' : [ 'SeriesDescription', 'StudyDescription' ] })