1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
|
#!/usr/bin/env python3
#
# Create deprecated iso-codes XML from JSON
#
# Copyright © 2016 Dr. Tobias Quathamer <toddy@debian.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import json
import sys
# Get the current ISO code domain, the path to the JSON data dir, and the XML output file
if len(sys.argv) != 4:
sys.exit("Please provide the domain, the path to the JSON data dir, and the XML output file.")
domain = sys.argv[1]
datapath = sys.argv[2]
xml_file = sys.argv[3]
#
# Define the headers of the XML files
#
headers = {
"639": """<?xml version="1.0" encoding="UTF-8" ?>
<!--
WARNING: THIS FILE IS DEPRECATED.
PLEASE USE THE JSON DATA INSTEAD.
Usually, this data can be found in /usr/share/iso-codes/json.
This file gives a list of all languages in the ISO 639
standard, and is used to provide translations via gettext
Copyright (C) 2004-2006 Alastair McKinstry <mckinstry@computer.org>
Copyright (C) 2004-2012 Christian Perrier <bubulle@debian.org>
Copyright (C) 2005-2008 Tobias Quathamer <toddy@debian.org>
This file is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This file is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this file; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Source: <http://www.loc.gov/standards/iso639-2/>
-->
<!DOCTYPE iso_639_entries [
<!ELEMENT iso_639_entries (iso_639_entry+)>
<!ELEMENT iso_639_entry EMPTY>
<!ATTLIST iso_639_entry
iso_639_2B_code CDATA #REQUIRED
iso_639_2T_code CDATA #REQUIRED
iso_639_1_code CDATA #IMPLIED
name CDATA #REQUIRED
common_name CDATA #IMPLIED
>
]>
""",
"639-3": """<?xml version="1.0" encoding="UTF-8" ?>
<!--
WARNING: THIS FILE IS DEPRECATED.
PLEASE USE THE JSON DATA INSTEAD.
Usually, this data can be found in /usr/share/iso-codes/json.
This file gives a list of all languages in the ISO 639-3
standard, and is used to provide translations via gettext
Copyright © 2005 Alastair McKinstry <mckinstry@computer.org>
Copyright © 2008,2012,2013 Tobias Quathamer <toddy@debian.org>
This file is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This file is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this file; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Source: <http://www.sil.org/iso639-3/>
-->
<!DOCTYPE iso_639_3_entries [
<!ELEMENT iso_639_3_entries (iso_639_3_entry+)>
<!ELEMENT iso_639_3_entry EMPTY>
<!ATTLIST iso_639_3_entry
id CDATA #REQUIRED
part1_code CDATA #IMPLIED
part2_code CDATA #IMPLIED
status CDATA #REQUIRED
scope CDATA #REQUIRED
type CDATA #REQUIRED
inverted_name CDATA #IMPLIED
reference_name CDATA #REQUIRED
name CDATA #REQUIRED
common_name CDATA #IMPLIED
>
]>
""",
"639-5": """<?xml version="1.0" encoding="UTF-8" ?>
<!--
WARNING: THIS FILE IS DEPRECATED.
PLEASE USE THE JSON DATA INSTEAD.
Usually, this data can be found in /usr/share/iso-codes/json.
This file gives a list of all languages in the ISO 639-5
standard, and is used to provide translations via gettext
Copyright © 2014 Pander <pander@opentaal.org>
This file is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This file is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this file; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Source: <http://www.loc.gov/standards/iso639-5/>
-->
<!DOCTYPE iso_639_5_entries [
<!ELEMENT iso_639_5_entries (iso_639_5_entry+)>
<!ELEMENT iso_639_5_entry EMPTY>
<!ATTLIST iso_639_5_entry
id CDATA #REQUIRED
parents CDATA #IMPLIED
name CDATA #REQUIRED
>
]>
""",
"3166": """<?xml version="1.0" encoding="UTF-8" ?>
<!--
WARNING: THIS FILE IS DEPRECATED.
PLEASE USE THE JSON DATA INSTEAD.
Usually, this data can be found in /usr/share/iso-codes/json.
This file gives a list of all countries in the ISO 3166
standard, and is used to provide translations via gettext
Copyright (C) 2002, 2004, 2006 Alastair McKinstry <mckinstry@computer.org>
Copyright (C) 2004 Andreas Jochens <aj@andaco.de>
Copyright (C) 2004, 2007 Christian Perrier <bubulle@debian.org>
Copyright (C) 2005, 2006, 2007 Tobias Quathamer <toddy@debian.org>
This file is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This file is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this file; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Source: <http://www.iso.org/iso/country_codes>
-->
<!DOCTYPE iso_3166_entries [
<!ELEMENT iso_3166_entries (iso_3166_entry+, iso_3166_3_entry*)>
<!ELEMENT iso_3166_entry EMPTY>
<!ATTLIST iso_3166_entry
alpha_2_code CDATA #REQUIRED
alpha_3_code CDATA #REQUIRED
numeric_code CDATA #REQUIRED
common_name CDATA #IMPLIED
name CDATA #REQUIRED
official_name CDATA #IMPLIED
>
<!ELEMENT iso_3166_3_entry EMPTY>
<!ATTLIST iso_3166_3_entry
alpha_4_code CDATA #REQUIRED
alpha_3_code CDATA #REQUIRED
numeric_code CDATA #IMPLIED
date_withdrawn CDATA #IMPLIED
names CDATA #REQUIRED
comment CDATA #IMPLIED
>
]>
""",
"3166-2": """<?xml version="1.0" encoding="UTF-8" ?>
<!--
WARNING: THIS FILE IS DEPRECATED.
PLEASE USE THE JSON DATA INSTEAD.
Usually, this data can be found in /usr/share/iso-codes/json.
This file gives a list of all country subdivisions in the ISO 3166-2
standard, and is used to provide translations via gettext
The following conventions are used in this file:
If the standard lists a subdivision name in more than one language
and/or romanization system, only the first listed name is shown.
For some countries the standard also lists a second level of
regional divisions (e.g. for BE, FR, GB, IT, etc.). The codes
for these regional divisions are shown as 'XX YYYY', i.e. with a
space character instead of the '-'.
Copyright (C) 2004-2006 Alastair McKinstry <mckinstry@computer.org>
Copyright (C) 2004, 2007 Christian Perrier <bubulle@debian.org>
Copyright (C) 2005-2007 Tobias Quathamer <toddy@debian.org>
Copyright (C) 2007, 2009 LI Daobing <lidaobing@gmail.com>
Copyright (C) 2007-2010 Alexis Darrasse <alexis@ortsa.com>
This file is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This file is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this file; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Source: <http://www.iso.org/iso/country_codes/background_on_iso_3166/iso_3166-2.htm>
-->
<!DOCTYPE iso_3166_2_entries [
<!ELEMENT iso_3166_2_entries (iso_3166_country+)>
<!ELEMENT iso_3166_country (iso_3166_subset*)>
<!ATTLIST iso_3166_country
code CDATA #REQUIRED
>
<!ELEMENT iso_3166_subset (iso_3166_2_entry+)>
<!ATTLIST iso_3166_subset
type CDATA #REQUIRED
>
<!ELEMENT iso_3166_2_entry EMPTY>
<!ATTLIST iso_3166_2_entry
code CDATA #REQUIRED
name CDATA #REQUIRED
parent CDATA #IMPLIED
>
]>
""",
"15924": """<?xml version="1.0" encoding="UTF-8" ?>
<!--
WARNING: THIS FILE IS DEPRECATED.
PLEASE USE THE JSON DATA INSTEAD.
Usually, this data can be found in /usr/share/iso-codes/json.
This file gives a list of all script names in the ISO 15924
standard, and is used to provide translations via gettext
Copyright (C) 2007 Ivan Masar <helix84@centrum.sk>
Copyright (C) 2007-2011 Christian Perrier <bubulle@debian.org>
Copyright (C) 2007 Tobias Quathamer <toddy@debian.org>
This file is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This file is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this file; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Source: <http://unicode.org/iso15924/>
Source for changes: <http://unicode.org/iso15924/codechanges.html>
-->
<!DOCTYPE iso_15924_entries [
<!ELEMENT iso_15924_entries (iso_15924_entry+)>
<!ELEMENT iso_15924_entry EMPTY>
<!ATTLIST iso_15924_entry
alpha_4_code CDATA #REQUIRED
numeric_code CDATA #REQUIRED
name CDATA #REQUIRED
>
]>
""",
"4217": """<?xml version="1.0" encoding="UTF-8"?>
<!--
WARNING: THIS FILE IS DEPRECATED.
PLEASE USE THE JSON DATA INSTEAD.
Usually, this data can be found in /usr/share/iso-codes/json.
This file gives a list of all currencies in the ISO 4217
standard, and is used to provide translations via gettext
Copyright (C) 2004-2006 Alastair McKinstry <mckinstry@computer.org>
Copyright (C) 2005-2009 Tobias Quathamer <toddy@debian.org>
Copyright (C) 2007 Christian Perrier <bubulle@debian.org>
This file is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This file is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this file; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Source: <http://www.bsi-global.com/en/Standards-and-Publications/Industry-Sectors/Services/BSI-Currency-Code-Service/>
-->
<!DOCTYPE iso_4217_entries [
<!ELEMENT iso_4217_entries (iso_4217_entry+, historic_iso_4217_entry*)>
<!ELEMENT iso_4217_entry EMPTY>
<!ATTLIST iso_4217_entry
letter_code CDATA #REQUIRED
numeric_code CDATA #IMPLIED
currency_name CDATA #REQUIRED
>
<!ELEMENT historic_iso_4217_entry EMPTY>
<!ATTLIST historic_iso_4217_entry
letter_code CDATA #REQUIRED
numeric_code CDATA #IMPLIED
currency_name CDATA #REQUIRED
date_withdrawn CDATA #REQUIRED
>
]>
""",
}
def get_iso_entries(standard):
""" Return all entries from the given standard
"""
with open(datapath + "/iso_" + standard + ".json", encoding="utf-8") as input_file:
iso = json.load(input_file)
return iso[standard]
# Create the output file
with open(xml_file, "w", encoding="utf-8") as outfile:
#
# Handle ISO 639-2
#
if domain == "iso_639-2":
outfile.write(headers["639"])
outfile.write("\n")
outfile.write("<iso_639_entries>\n")
for entry in get_iso_entries("639-2"):
outfile.write("\t<iso_639_entry\n")
if "bibliographic" in entry:
outfile.write("\t\tiso_639_2B_code=\"" + entry["bibliographic"] + "\"\n")
else:
outfile.write("\t\tiso_639_2B_code=\"" + entry["alpha_3"] + "\"\n")
outfile.write("\t\tiso_639_2T_code=\"" + entry["alpha_3"] + "\"\n")
if "alpha_2" in entry:
outfile.write("\t\tiso_639_1_code=\"" + entry["alpha_2"] + "\"\n")
outfile.write("\t\tname=\"" + entry["name"] + "\"")
if "common_name" in entry:
outfile.write("\n\t\tcommon_name=\"" + entry["common_name"] + "\"")
outfile.write(" />\n")
outfile.write("</iso_639_entries>\n")
#
# Handle ISO 639-3
#
elif domain == "iso_639-3":
outfile.write(headers["639-3"])
outfile.write("\n")
outfile.write("<iso_639_3_entries>\n")
for entry in get_iso_entries("639-3"):
outfile.write("\t<iso_639_3_entry\n")
outfile.write("\t\tid=\"" + entry["alpha_3"] + "\"\n")
if "alpha_2" in entry:
outfile.write("\t\tpart1_code=\"" + entry["alpha_2"] + "\"\n")
if "bibliographic" in entry:
outfile.write("\t\tpart2_code=\"" + entry["bibliographic"] + "\"\n")
# Special case for lcq, which is the only entry with status "Retired"
if entry["alpha_3"] == "lcq":
outfile.write("\t\tstatus=\"Retired\"\n")
else:
outfile.write("\t\tstatus=\"Active\"\n")
outfile.write("\t\tscope=\"" + entry["scope"] + "\"\n")
outfile.write("\t\ttype=\"" + entry["type"] + "\"\n")
if "inverted_name" in entry:
outfile.write("\t\tinverted_name=\"" + entry["inverted_name"] + "\"\n")
outfile.write("\t\treference_name=\"" + entry["name"] + "\"\n")
if "common_name" in entry:
outfile.write("\t\tcommon_name=\"" + entry["common_name"] + "\"\n")
if "inverted_name" in entry:
outfile.write("\t\tname=\"" + entry["inverted_name"] + "\"")
else:
outfile.write("\t\tname=\"" + entry["name"] + "\"")
outfile.write(" />\n")
outfile.write("</iso_639_3_entries>\n")
#
# Handle ISO 639-5
#
elif domain == "iso_639-5":
outfile.write(headers["639-5"])
outfile.write("\n")
outfile.write("<iso_639_5_entries>\n")
for entry in get_iso_entries("639-5"):
outfile.write("\t<iso_639_5_entry\n")
outfile.write("\t\tid=\"" + entry["alpha_3"] + "\"\n")
outfile.write("\t\tname=\"" + entry["name"] + "\"")
outfile.write(" />\n")
outfile.write("</iso_639_5_entries>\n")
#
# Handle ISO 3166
#
elif domain == "iso_3166-1":
outfile.write(headers["3166"])
outfile.write("\n")
outfile.write("<iso_3166_entries>\n")
for entry in get_iso_entries("3166-1"):
outfile.write("\t<iso_3166_entry\n")
outfile.write("\t\talpha_2_code=\"" + entry["alpha_2"] + "\"\n")
outfile.write("\t\talpha_3_code=\"" + entry["alpha_3"] + "\"\n")
outfile.write("\t\tnumeric_code=\"" + entry["numeric"] + "\"\n")
if "common_name" in entry:
outfile.write("\t\tcommon_name=\"" + entry["common_name"] + "\"\n")
outfile.write("\t\tname=\"" + entry["name"] + "\"")
if "official_name" in entry:
outfile.write("\n\t\tofficial_name=\"" + entry["official_name"] + "\"")
outfile.write(" />\n")
for entry in get_iso_entries("3166-3"):
outfile.write("\t<iso_3166_3_entry\n")
outfile.write("\t\talpha_4_code=\"" + entry["alpha_4"] + "\"\n")
outfile.write("\t\talpha_3_code=\"" + entry["alpha_3"] + "\"\n")
if "numeric" in entry:
outfile.write("\t\tnumeric_code=\"" + entry["numeric"] + "\"\n")
if "withdrawal_date" in entry:
outfile.write("\t\tdate_withdrawn=\"" + entry["withdrawal_date"] + "\"\n")
outfile.write("\t\tnames=\"" + entry["name"] + "\"")
if "comment" in entry:
outfile.write("\n\t\tcomment=\"" + entry["comment"] + "\"")
outfile.write(" />\n")
outfile.write("</iso_3166_entries>\n")
#
# Handle ISO 3166-2
#
elif domain == "iso_3166-2":
outfile.write(headers["3166-2"])
outfile.write("\n")
outfile.write("<iso_3166_2_entries>\n")
last_country_code = ""
subsets = {}
for entry in get_iso_entries("3166-2"):
country_code = entry["code"].split("-")[0]
# Initialize for every new country
if last_country_code != country_code:
# Write out if subsets are filled
if len(subsets) > 0:
outfile.write("<iso_3166_country code=\"" + last_country_code + "\">\n")
for subset in sorted(subsets):
outfile.write("<iso_3166_subset type=\"" + subset + "\">\n")
for item in subsets[subset]:
outfile.write("\t<iso_3166_2_entry\n")
outfile.write("\t\tcode=\"" + item["code"] + "\"\tname=\"" + item["name"] + "\"")
if "parent" in item:
outfile.write("\tparent=\"" + item["parent"] + "\"")
outfile.write(" />\n")
outfile.write("</iso_3166_subset>\n")
outfile.write("</iso_3166_country>\n")
last_country_code = country_code
subsets = {}
# Group by subset types
if entry["type"] not in subsets:
subsets[entry["type"]] = [entry]
else:
subsets[entry["type"]].append(entry)
outfile.write("</iso_3166_2_entries>\n")
#
# Handle ISO 15924
#
elif domain == "iso_15924":
outfile.write(headers["15924"])
outfile.write("\n")
outfile.write("<iso_15924_entries>\n")
for entry in get_iso_entries("15924"):
outfile.write("\t<iso_15924_entry\n")
outfile.write("\t\talpha_4_code=\"" + entry["alpha_4"] + "\"\n")
outfile.write("\t\tnumeric_code=\"" + entry["numeric"] + "\"\n")
outfile.write("\t\tname=\"" + entry["name"] + "\"")
outfile.write(" />\n")
outfile.write("</iso_15924_entries>\n")
#
# Handle ISO 4217
#
elif domain == "iso_4217":
outfile.write(headers["4217"])
outfile.write("\n")
outfile.write("<iso_4217_entries>\n")
for entry in get_iso_entries("4217"):
outfile.write("\t<iso_4217_entry\n")
outfile.write("\t\tletter_code=\"" + entry["alpha_3"] + "\"\n")
if "numeric" in entry:
outfile.write("\t\tnumeric_code=\"" + entry["numeric"] + "\"\n")
outfile.write("\t\tcurrency_name=\"" + entry["name"] + "\"")
outfile.write(" />\n")
# Insert the obsolete historic entries, which are no
# longer included in the JSON data files.
outfile.write(""" <historic_iso_4217_entry
letter_code="ADP"
numeric_code="020"
currency_name="Andorran Peseta"
date_withdrawn="2002-03" />
<historic_iso_4217_entry
letter_code="ADF"
currency_name="Andorran Franc"
date_withdrawn="unknown" />
<historic_iso_4217_entry
letter_code="AFA"
numeric_code="004"
currency_name="Afghani"
date_withdrawn="unknown" />
<historic_iso_4217_entry
letter_code="ALK"
currency_name="Albanian Old Lek"
date_withdrawn="1989-12" />
<historic_iso_4217_entry
letter_code="AOK"
currency_name="Angolan Kwanza"
date_withdrawn="1991-03" />
<historic_iso_4217_entry
letter_code="AON"
numeric_code="024"
currency_name="Angolan New Kwanza"
date_withdrawn="2000-02" />
<historic_iso_4217_entry
letter_code="AOR"
numeric_code="982"
currency_name="Angola Kwanza Reajustado"
date_withdrawn="2000-02" />
<historic_iso_4217_entry
letter_code="ARA"
currency_name="Argentine Austral"
date_withdrawn="1992-01" />
<historic_iso_4217_entry
letter_code="ARM"
currency_name="Argentine peso moneda nacional"
date_withdrawn="unknown" />
<historic_iso_4217_entry
letter_code="ARL"
currency_name="Argentine peso ley"
date_withdrawn="unknown" />
<historic_iso_4217_entry
letter_code="ARP"
currency_name="Peso Argentino"
date_withdrawn="1985-07" />
<historic_iso_4217_entry
letter_code="ATS"
numeric_code="040"
currency_name="Austrian Schilling"
date_withdrawn="2002-03" />
<historic_iso_4217_entry
letter_code="AZM"
numeric_code="031"
currency_name="Azerbaijanian Manat"
date_withdrawn="unknown" />
<historic_iso_4217_entry
letter_code="BAD"
numeric_code="070"
currency_name="Bosnia and Herzegovina Dinar"
date_withdrawn="1997-07" />
<historic_iso_4217_entry
letter_code="BEC"
numeric_code="993"
currency_name="Belgian Franc Convertible"
date_withdrawn="1990-03" />
<historic_iso_4217_entry
letter_code="BEF"
numeric_code="056"
currency_name="Belgian Franc"
date_withdrawn="2002-03" />
<historic_iso_4217_entry
letter_code="BEL"
numeric_code="992"
currency_name="Belgian Franc Financial"
date_withdrawn="1990-03" />
<historic_iso_4217_entry
letter_code="BGJ"
currency_name="Bulgarian Lev A/52"
date_withdrawn="1990" />
<historic_iso_4217_entry
letter_code="BGK"
currency_name="Bulgarian Lev A/62"
date_withdrawn="1990" />
<historic_iso_4217_entry
letter_code="BGL"
numeric_code="100"
currency_name="Bulgarian Lev A/99"
date_withdrawn="unknown" />
<historic_iso_4217_entry
letter_code="BOP"
currency_name="Bolivian Peso"
date_withdrawn="1987-02" />
<historic_iso_4217_entry
letter_code="BRB"
currency_name="Brazilian Cruzeiro"
date_withdrawn="1986-03" />
<historic_iso_4217_entry
letter_code="BRC"
currency_name="Brazilian Cruzado"
date_withdrawn="1989-02" />
<historic_iso_4217_entry
letter_code="BRE"
numeric_code="076"
currency_name="Brazilian Cruzeiro"
date_withdrawn="1993-03" />
<historic_iso_4217_entry
letter_code="BRN"
currency_name="Brazilian New Cruzado"
date_withdrawn="1990-03" />
<historic_iso_4217_entry
letter_code="BRR"
numeric_code="987"
currency_name="Brazilian Cruzeiro Real"
date_withdrawn="1994-07" />
<historic_iso_4217_entry
letter_code="BUK"
currency_name="Kyat"
date_withdrawn="1990-02" />
<historic_iso_4217_entry
letter_code="BYB"
currency_name="Belarussian Rouble"
date_withdrawn="1999" />
<historic_iso_4217_entry
letter_code="CNX"
currency_name="Chinese Peoples Bank Dollar"
date_withdrawn="1989-12" />
<historic_iso_4217_entry
letter_code="CSD"
numeric_code="891"
currency_name="Serbian Dinar"
date_withdrawn="unknown" />
<historic_iso_4217_entry
letter_code="CSJ"
currency_name="Czechoslovak Krona A/53"
date_withdrawn="1990" />
<historic_iso_4217_entry
letter_code="CSK"
numeric_code="200"
currency_name="Czechoslovak Koruna"
date_withdrawn="1993-03" />
<historic_iso_4217_entry
letter_code="DDM"
numeric_code="278"
currency_name="East German Mark of the GDR"
date_withdrawn="1990-09" />
<historic_iso_4217_entry
letter_code="DEM"
numeric_code="276"
currency_name="Deutsche Mark"
date_withdrawn="2002-03" />
<historic_iso_4217_entry
letter_code="ECS"
numeric_code="218"
currency_name="Ecuador Sucre"
date_withdrawn="2000-09-15" />
<historic_iso_4217_entry
letter_code="ECV"
numeric_code="983"
currency_name="Ecuador Unidad de Valor Constante UVC"
date_withdrawn="unknown" />
<historic_iso_4217_entry
letter_code="ESA"
numeric_code="996"
currency_name="Spanish Peseta ('A' Account)"
date_withdrawn="1981" />
<historic_iso_4217_entry
letter_code="ESB"
numeric_code="995"
currency_name="Spanish Peseta (convertible)"
date_withdrawn="1994-12" />
<historic_iso_4217_entry
letter_code="ESP"
numeric_code="724"
currency_name="Spanish Peseta"
date_withdrawn="2002-03" />
<historic_iso_4217_entry
letter_code="FIM"
numeric_code="246"
currency_name="Finnish Markka"
date_withdrawn="2002-03" />
<historic_iso_4217_entry
letter_code="FRF"
numeric_code="250"
currency_name="French Franc"
date_withdrawn="2002-03" />
<historic_iso_4217_entry
letter_code="GEK"
numeric_code="268"
currency_name="Georgian Coupon"
date_withdrawn="1995-10" />
<historic_iso_4217_entry
letter_code="GNE"
currency_name="Guinea Syli"
date_withdrawn="1989-12" />
<historic_iso_4217_entry
letter_code="GNS"
currency_name="Guinea Syli"
date_withdrawn="1986-02" />
<historic_iso_4217_entry
letter_code="GQE"
numeric_code="226"
currency_name="Equatorial Guinea Ekwele"
date_withdrawn="1989-12" />
<historic_iso_4217_entry
letter_code="GHC"
numeric_code="288"
currency_name="Cedi"
date_withdrawn="unknown" />
<historic_iso_4217_entry
letter_code="GRD"
numeric_code="300"
currency_name="Greek Drachma"
date_withdrawn="2002-03" />
<historic_iso_4217_entry
letter_code="GWE"
currency_name="Guinea Escudo"
date_withdrawn="1981" />
<historic_iso_4217_entry
letter_code="GWP"
numeric_code="624"
currency_name="Guinea-Bissau Peso"
date_withdrawn="1997-04" />
<historic_iso_4217_entry
letter_code="HRD"
currency_name="Croatian Dinar"
date_withdrawn="1995-01" />
<historic_iso_4217_entry
letter_code="IEP"
numeric_code="372"
currency_name="Irish Pound"
date_withdrawn="2002-03" />
<historic_iso_4217_entry
letter_code="ILP"
currency_name="Israeli Pound"
date_withdrawn="1981" />
<historic_iso_4217_entry
letter_code="ILR"
currency_name="Israeli Old Shekel"
date_withdrawn="1990" />
<historic_iso_4217_entry
letter_code="ISJ"
currency_name="Iceland Old Krona"
date_withdrawn="1990" />
<historic_iso_4217_entry
letter_code="ITL"
numeric_code="380"
currency_name="Italian Lira"
date_withdrawn="2002-03" />
<historic_iso_4217_entry
letter_code="LAJ"
currency_name="Lao kip"
date_withdrawn="1989-12" />
<historic_iso_4217_entry
letter_code="LSM"
currency_name="Lesotho Maloti"
date_withdrawn="1985-05" />
<historic_iso_4217_entry
letter_code="LTT"
currency_name="Lithuanian Talonas"
date_withdrawn="1993-07" />
<historic_iso_4217_entry
letter_code="LUC"
numeric_code="989"
currency_name="Luxembourg Convertible Franc"
date_withdrawn="1990-03" />
<historic_iso_4217_entry
letter_code="LUF"
numeric_code="442"
currency_name="Luxembourg Franc"
date_withdrawn="2002-03" />
<historic_iso_4217_entry
letter_code="LUL"
numeric_code="988"
currency_name="Luxembourg Financial Franc"
date_withdrawn="1990-03" />
<historic_iso_4217_entry
letter_code="LVR"
currency_name="Latvian Ruble"
date_withdrawn="1994-12" />
<historic_iso_4217_entry
letter_code="MAF"
currency_name="Mali Franc"
date_withdrawn="1989-12" />
<historic_iso_4217_entry
letter_code="MGF"
numeric_code="450"
currency_name="Malagasy Franc"
date_withdrawn="unknown" />
<historic_iso_4217_entry
letter_code="MLF"
numeric_code="446"
currency_name="Mali Franc"
date_withdrawn="1984-11" />
<historic_iso_4217_entry
letter_code="MTP"
currency_name="Maltese Pound"
date_withdrawn="1983-06" />
<historic_iso_4217_entry
letter_code="MVQ"
currency_name="Maldive Rupee"
date_withdrawn="1989-12" />
<historic_iso_4217_entry
letter_code="MXP"
currency_name="Mexican Peso"
date_withdrawn="1993-01" />
<historic_iso_4217_entry
letter_code="MZE"
currency_name="Mozambique Escudo"
date_withdrawn="1981" />
<historic_iso_4217_entry
letter_code="MZM"
numeric_code="508"
currency_name="Mozambique Metical"
date_withdrawn="unknown" />
<historic_iso_4217_entry
letter_code="NIC"
currency_name="Nicaraguan Cordoba"
date_withdrawn="1990-10" />
<historic_iso_4217_entry
letter_code="NLG"
numeric_code="528"
currency_name="Netherlands Guilder"
date_withdrawn="2002-03" />
<historic_iso_4217_entry
letter_code="PEH"
currency_name="Peruvian Sol"
date_withdrawn="1990" />
<historic_iso_4217_entry
letter_code="PEI"
currency_name="Peruvian Inti"
date_withdrawn="1991-07" />
<historic_iso_4217_entry
letter_code="PES"
currency_name="Peruvian Sol"
date_withdrawn="1986-02" />
<historic_iso_4217_entry
letter_code="PLZ"
numeric_code="616"
currency_name="Polish Złoty"
date_withdrawn="1997-01" />
<historic_iso_4217_entry
letter_code="PTE"
numeric_code="620"
currency_name="Portuguese Escudo"
date_withdrawn="2002-03" />
<historic_iso_4217_entry
letter_code="RHD"
currency_name="Rhodesian Dollar"
date_withdrawn="1981" />
<historic_iso_4217_entry
letter_code="ROK"
currency_name="Romanian Leu A/52"
date_withdrawn="1990" />
<historic_iso_4217_entry
letter_code="ROL"
numeric_code="642"
currency_name="Romanian Old Leu"
date_withdrawn="2005-06" />
<historic_iso_4217_entry
letter_code="RUR"
numeric_code="810"
currency_name="Russian Rouble"
date_withdrawn="1997" />
<historic_iso_4217_entry
letter_code="SDD"
numeric_code="736"
currency_name="Sudanese Pound"
date_withdrawn="unknown" />
<historic_iso_4217_entry
letter_code="SDP"
currency_name="Sudanese Pound"
date_withdrawn="1998-06" />
<historic_iso_4217_entry
letter_code="SIT"
numeric_code="705"
currency_name="Slovenian Tolar"
date_withdrawn="2006-12-31" />
<historic_iso_4217_entry
letter_code="SKK"
numeric_code="703"
currency_name="Slovak Koruna"
date_withdrawn="2009-01-01" />
<historic_iso_4217_entry
letter_code="SRG"
numeric_code="740"
currency_name="Suriname Guilder"
date_withdrawn="unknown" />
<historic_iso_4217_entry
letter_code="SUR"
currency_name="USSR Rouble"
date_withdrawn="1990-12" />
<historic_iso_4217_entry
letter_code="TJR"
numeric_code="762"
currency_name="Tajik Rouble"
date_withdrawn="2000" />
<historic_iso_4217_entry
letter_code="TLE"
numeric_code="626"
currency_name="Timor Escudo"
date_withdrawn="unknown" />
<historic_iso_4217_entry
letter_code="TRL"
numeric_code="792"
currency_name="Turkish Lira"
date_withdrawn="unknown" />
<historic_iso_4217_entry
letter_code="UAK"
numeric_code="804"
currency_name="Ukrainian Karbovanet"
date_withdrawn="1996-09" />
<historic_iso_4217_entry
letter_code="UGS"
currency_name="Uganda Schilling"
date_withdrawn="1987-05" />
<historic_iso_4217_entry
letter_code="UGW"
currency_name="Uganda Old Schilling"
date_withdrawn="1990" />
<historic_iso_4217_entry
letter_code="UYN"
currency_name="Old Uruguayan Peso"
date_withdrawn="1989-12" />
<historic_iso_4217_entry
letter_code="UYP"
currency_name="Uruguayan Peso"
date_withdrawn="1993-03" />
<historic_iso_4217_entry
letter_code="VEB"
numeric_code="862"
currency_name="Venezuela Bolívar"
date_withdrawn="2008-01-01" />
<historic_iso_4217_entry
letter_code="VNC"
currency_name="Viet Nam Old Dong"
date_withdrawn="1990" />
<historic_iso_4217_entry
letter_code="XEU"
numeric_code="954"
currency_name="European Currency Unit ECU"
date_withdrawn="1999-01" />
<historic_iso_4217_entry
letter_code="XRE"
currency_name="RINET Funds Code"
date_withdrawn="1999-11" />
<historic_iso_4217_entry
letter_code="YDD"
numeric_code="720"
currency_name="Yemeni Dinar"
date_withdrawn="1991-09" />
<historic_iso_4217_entry
letter_code="YUD"
numeric_code="891"
currency_name="Yugoslavian Dinar"
date_withdrawn="unknown" />
<historic_iso_4217_entry
letter_code="YUN"
numeric_code="890"
currency_name="Yugoslavian Dinar"
date_withdrawn="1995-11" />
<historic_iso_4217_entry
letter_code="ZAL"
numeric_code="991"
currency_name="South African Financial Rand"
date_withdrawn="1995-03" />
<historic_iso_4217_entry
letter_code="ZRN"
currency_name="New Zaire"
date_withdrawn="1999-06" />
<historic_iso_4217_entry
letter_code="ZRZ"
numeric_code="180"
currency_name="Zaire"
date_withdrawn="1994-02" />
""")
outfile.write("</iso_4217_entries>\n")
|