1 from gdcmPython import *
3 print "##############################################################"
4 print "### Display all the possible tags of the current public"
6 print "##############################################################"
7 PubList = gdcmDictSet.GetPubDictTagNames()
8 for i in range(0, len(PubList)):
11 print "##############################################################"
12 print "### Display all the possible tags of the current public"
13 print "### dictionary, but grouped by using the Fourth field"
14 print "##############################################################"
15 PubDict = gdcmDictSet.GetPubDictTagNamesByCategory()
16 for fourth in PubDict:
17 print " ############ Fourth group = ", fourth, " ##############"
18 for key in PubDict[fourth]: