forked from wxGlade/wxGlade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xrc2wxg.py
executable file
·685 lines (567 loc) · 24.1 KB
/
xrc2wxg.py
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
#!/usr/bin/env python
"""
Converts an XRC resource file (in a format wxGlade likes, i.e. all windows
inside sizers, no widget unknown to wxGlade, ...) into a WXG file.
@copyright: 2002-2007 Alberto Griggio
@copyright: 2014-2016 Carsten Grohmann
@copyright: 2017-2020 Dietmar Schwertberger
@license: MIT (see LICENSE.txt) - THIS PROGRAM COMES WITH NO WARRANTY
"""
import logging
import xml.dom.minidom
import getopt
import os.path
import sys
import time
__version__ = '0.0.6'
_name = 'xrc2wxg' # Application name
# Mapping of default attribute names from XRC to WXG; see _class_props
_default_props = {
'bg': 'background',
'content': 'choices',
'enabled': 'disabled',
'fg': 'foreground',
'growablecols': 'growable_cols',
'growablerows': 'growable_rows',
'item': 'choice',
'sashpos': 'sash_pos',
'cellspan': 'span', # for GridBagSizer items
'scrollrate':'scroll_rate',
}
# Mapping of class specific attribute names from XRC to WXG. The class names are XRC class names. see _default_props
_class_props = {
'wxMenuItem': {
'help': 'help_str',
},
'tool': {
'bitmap': 'bitmap1',
'tooltip': 'short_help',
'longhelp': 'long_help',
'toggle': 'type',
}
}
# Counter to create unique names
_counter_name = 1
# Supported widgets
_widgets = [
'wxBitmapButton', 'wxBoxSizer', 'wxButton', 'wxCalendarCtrl',
'wxCheckBox', 'wxCheckListBox', 'wxChoice', 'wxComboBox',
'wxDatePickerCtrl', 'wxDialog', 'wxFlexGridSizer', 'wxFrame',
'wxGauge', 'wxGrid', 'wxGridSizer', 'wxGridBagSizer', 'wxListBox', 'wxListCtrl',
'wxMenuBar', 'wxMenu', 'wxNotebook', 'wxPanel', 'wxRadioBox',
'wxRadioButton', 'wxScrolledWindow', 'wxSlider', 'wxSpinButton',
'wxSpinCtrl', 'wxSplitterWindow', 'wxStaticBitmap', 'wxStaticBoxSizer',
'wxStaticLine', 'wxStaticText', 'wxStatusBar', 'wxTextCtrl',
'wxToggleButton', 'wxToolBar', 'wxTreeCtrl', 'wxWrapSizer',
]
# Widget names with special meaning
_special_class_names = ['notebookpage', 'separator', 'sizeritem', 'spacer', 'tool']
# Write a timestamp in the output file
_write_timestamp = True
def get_child_elems(node):
def ok(n):
return n.nodeType == n.ELEMENT_NODE
return filter(ok, node.childNodes)
def get_text_elems(node):
def ok(n):
return n.nodeType == n.TEXT_NODE
return filter(ok, node.childNodes)
def convert(filename, output_file):
"""Convert the given XRC file to a UTF-8 encoded wxGlade file
output_file: Filename, file or file-like object"""
global _counter_name
_counter_name = 1
document = xml.dom.minidom.parse(filename)
fix_fake_panels(document)
set_base_classes(document)
fix_default_properties(document)
fix_class_properties(document)
fix_widgets(document)
fix_encoding(filename, document)
if not hasattr(output_file, 'write') and not isinstance(output_file, list):
output_file = open(output_file, 'wb')
write_output(document, output_file)
output_file.close()
else:
write_output(document, output_file)
def write_output(document, output):
"Writes an UTF-8 encoded pretty-printed XML copy of the given document to the output object."
dom_copy = xml.dom.minidom.Document()
if _write_timestamp:
msg = ' generated by %s %s on %s '%( _name, __version__, time.asctime() )
else:
msg = ' generated by xrc2wxg '
comment = dom_copy.createComment(msg)
dom_copy.appendChild(comment)
dom_copy.appendChild(document.documentElement)
pretty_xml = dom_copy.toprettyxml(indent=' ', encoding='UTF-8')
for line in pretty_xml.splitlines():
# ignore empty lines
if not line.strip():
continue
if hasattr(output, "write"):
output.write(line)
output.write(b'\n')
else:
output.append(line+b'\n')
dom_copy.unlink()
def set_base_classes(document):
for elem in document.getElementsByTagName('object'):
klass = elem.getAttribute('class')
if klass.startswith('wx'):
elem.setAttribute('base', 'Edit' + klass[2:])
name = elem.getAttribute('name')
if not name:
global _counter_name
elem.setAttribute('name', 'object_%s' % _counter_name)
_counter_name += 1
def fix_default_properties(document):
"Rename generic properties; see: _default_props"
# special case...
for elem in document.getElementsByTagName('disabled'):
elem.tagName = 'disabled_bitmap'
# replace property names
for prop in _default_props:
for elem in document.getElementsByTagName(prop):
elem.tagName = _default_props[prop]
# invert property value after renaming from enabled to disabled
if prop == "enabled":
if elem.firstChild.data == u'0':
elem.firstChild.data = u'1'
else:
elem.firstChild.data = u'0'
document.documentElement.tagName = 'application'
for attribute in ['version', 'xmlns']:
if document.documentElement.hasAttribute(attribute):
document.documentElement.removeAttribute(attribute)
def fix_class_properties(document):
"Rename class specific properties; see: _class_props"
for element in document.getElementsByTagName('object'):
klass = element.getAttribute('class')
if not klass or klass not in _class_props:
continue
for child in get_child_elems(element):
old_tagname = child.tagName
if old_tagname in _class_props[klass]:
child.tagName = _class_props[klass][old_tagname]
def fix_widgets(document):
fix_menubars(document)
fix_toolbars(document)
fix_custom_widgets(document)
fix_sizeritems(document)
fix_notebooks(document)
fix_splitters(document)
fix_spacers(document)
fix_sliders(document)
fix_scrolled_windows(document)
fix_toplevel_names(document)
fix_statusbar(document)
fix_gridbag_sizers(document)
def fix_custom_widgets(document):
for elem in document.getElementsByTagName('object'):
klass = elem.getAttribute('class')
if klass not in _widgets and klass not in _special_class_names:
logging.warning('Unknown widget "%s" - fallback to generic widget "CustomWidget"' % klass)
elem.setAttribute('base', 'CustomWidget')
args = document.createElement('arguments')
for child in get_child_elems(elem):
# if child is a 'simple' attribute, i.e <child>value</child>, convert it to an 'argument'
if len(child.childNodes) == 1 and child.firstChild.nodeType == child.TEXT_NODE:
arg = document.createElement('argument')
arg.appendChild(document.createTextNode(
child.tagName + ': ' + child.firstChild.data))
args.appendChild(arg)
# and remove it
elem.removeChild(child)
# otherwise, leave it where it is (it shouldn't hurt)
elem.appendChild(args)
def fix_sizeritems(document):
def issizeritem(node):
return node.getAttribute('class') == 'sizeritem'
def isobject(node):
return node.tagName == 'object'
for sitem in filter(issizeritem, document.getElementsByTagName('object')):
for child in filter(isobject, get_child_elems(sitem)):
sitem.appendChild(sitem.removeChild(child))
fix_flag_property(document)
def fix_gridbag_sizers(document):
# sizers:
# wxg needs
# <rows>1</rows>
# <cols>5</cols>
# sizer items:
# xrc has:
# <cellpos>0,2</cellpos>
# <cellspan>1,1</cellspan>
# wxg needs empty sizer slots and these spans, if different from 1,1:
# <span>1, 2</span>
def isgbsizer(node):
return node.getAttribute('class') == 'wxGridBagSizer'
for szr in filter(isgbsizer, document.getElementsByTagName('object')):
# collect informations
cells = {} # (row,col) 0-based
rows = 0
cols = 0
for child in get_child_elems(szr):
if child.tagName!="object": continue
cellpos = child.getElementsByTagName("cellpos")
if cellpos:
child.removeChild(cellpos[0])
cellpos = cellpos[0].firstChild.nodeValue.split(",")
row = int(cellpos[0])
col = int(cellpos[1])
else: # if required, that could be changed, but then the number of cols needs to be specified
raise ValueError("cellpos is required")
cellspan = child.getElementsByTagName("span") # renamed already from cellspan
if cellspan:
cellspan = cellspan[0].firstChild.nodeValue.split(",")
cellspan_rows = int(cellspan[0])
cellspan_cols = int(cellspan[1])
else:
cellspan_cols = cellspan_rows = 1
rows = max(rows, row + cellspan_rows)
cols = max(cols, col + cellspan_cols)
cells[row,col] = child
szr.removeChild(child)
# sizer: set number of rows and cols
cols_ = document.createElement('cols')
cols_.appendChild( document.createTextNode(str(cols)) )
szr.insertBefore(cols_, szr.firstChild)
rows_ = document.createElement('rows')
rows_.appendChild( document.createTextNode(str(rows)) )
szr.insertBefore(rows_, szr.firstChild)
# insert empty sizer slots
for row in range(rows):
for col in range(cols):
if (row,col) in cells:
szr.appendChild( cells[row,col] )
else:
# append an empty sizer slot
slot = document.createElement("object")
slot.setAttribute("class", "sizerslot")
szr.appendChild( slot )
def fix_flag_property(document):
for elem in document.getElementsByTagName('flag'):
tmp = elem.firstChild.data.replace('CENTRE', 'CENTER')
elem.firstChild.data = tmp.replace('GROW', 'EXPAND')
if elem.firstChild.data.find('wxALIGN_CENTER_HORIZONTAL') < 0 and \
elem.firstChild.data.find('wxALIGN_CENTER_VERTICAL') < 0:
elem.firstChild.data = elem.firstChild.data.replace( 'wxALIGN_CENTER', 'wxALIGN_CENTER_HORIZONTAL|'
'wxALIGN_CENTER_VERTICAL' )
def fix_menubars(document):
def ismenubar(elem):
return elem.getAttribute('class') == 'wxMenuBar'
menubars = filter(ismenubar, document.getElementsByTagName('object'))
for mb in menubars:
fix_menus(document, mb)
if mb.parentNode is not document.documentElement:
mb_prop = document.createElement('menubar')
mb_prop.appendChild(document.createTextNode('1'))
mb.parentNode.insertBefore(mb_prop, mb)
def fix_menus(document, menubar):
"""Rearrange the wxMenu elements
All menus of a wxMenuBar have to span by <menus> and </menus>::
<menus>
<menu>
...
</menu>
<menu>
...
</menu>
</menus>"""
def ismenu(elem):
return elem.getAttribute('class') == 'wxMenu'
wxg_menus = document.createElement('menus')
xrc_menus = filter(ismenu, get_child_elems(menubar))
for menu in xrc_menus:
try:
label = [c for c in get_child_elems(menu) if c.tagName == 'label'][0]
label = label.firstChild.data
except IndexError:
label = ''
new_menu = document.createElement('menu')
new_menu.setAttribute('name', menu.getAttribute('name'))
new_menu.setAttribute('label', label)
fix_sub_menus(document, menu, new_menu)
wxg_menus.appendChild(new_menu)
menubar.removeChild(menu).unlink()
menubar.appendChild(wxg_menus)
def fix_sub_menus(document, menu, new_menu):
for child in get_child_elems(menu):
klass = child.getAttribute('class')
elem = document.createElement('')
if klass == 'wxMenuItem':
elem.tagName = 'item'
name = document.createElement('name')
name.appendChild(document.createTextNode(
child.getAttribute('name')))
elem.appendChild(name)
for c in get_child_elems(child):
elem.appendChild(c)
elif klass == 'separator':
elem.tagName = 'item'
for name in 'label', 'id', 'name':
e = document.createElement(name)
e.appendChild(document.createTextNode('---'))
elem.appendChild(e)
elif klass == 'wxMenu':
elem.tagName = 'menu'
elem.setAttribute('name', child.getAttribute('name'))
try:
label = [c for c in get_child_elems(child) if c.tagName == 'label'][0]
label = label.firstChild.data
except IndexError:
label = ''
elem.setAttribute('label', label)
fix_sub_menus(document, child, elem)
if elem.tagName:
new_menu.appendChild(elem)
def _get_elements_by_class(document, classnames):
if isinstance(classnames, str):
classnames = (classnames,)
return [node for node in document.getElementsByTagName('object') if node.getAttribute('class') in classnames]
def fix_toolbars(document):
for tb in _get_elements_by_class(document, 'wxToolBar'):
fix_tools(document, tb)
if tb.parentNode is not document.documentElement:
tb_prop = document.createElement('toolbar')
tb_prop.appendChild(document.createTextNode('1'))
tb.parentNode.insertBefore(tb_prop, tb)
def fix_tools(document, toolbar):
tools = document.createElement('tools')
for tool in [c for c in get_child_elems(toolbar) if c.tagName == 'object']:
if tool.getAttribute('class') == 'tool':
new_tool = document.createElement('tool')
tool_id = document.createElement('id')
tool_id.appendChild(document.createTextNode(
tool.getAttribute('name')))
new_tool.appendChild(tool_id)
for c in get_child_elems(tool):
new_tool.appendChild(c)
tools.appendChild(new_tool)
toolbar.removeChild(tool).unlink()
elif tool.getAttribute('class') == 'separator':
new_tool = document.createElement('tool')
tool_id = document.createElement('id')
tool_id.appendChild(document.createTextNode('---'))
new_tool.appendChild(tool_id)
tools.appendChild(new_tool)
toolbar.removeChild(tool).unlink()
else:
# some kind of control, unsupported at the moment, just remove it
toolbar.removeChild(tool).unlink()
toolbar.appendChild(tools)
def fix_notebooks(document):
for nb in _get_elements_by_class(document, 'wxNotebook'):
pages = [node for node in get_child_elems(nb) if node.getAttribute('class')=='notebookpage']
tabs = document.createElement('tabs')
try:
us = [node for node in get_child_elems(nb) if node.tagName=='usenotebooksizer'][0]
nb.removeChild(us).unlink()
except IndexError:
pass
for page in pages:
tab = document.createElement('tab')
obj = None
for c in get_child_elems(page):
if c.tagName == 'label':
tab.appendChild(c.firstChild)
elif c.tagName == 'object':
tab.setAttribute('window', c.getAttribute('name'))
c.setAttribute('base', 'NotebookPane')
obj = c
tabs.appendChild(tab)
nb.replaceChild(obj, page)
nb.insertBefore(tabs, nb.firstChild)
def fix_splitters(document):
for sp in _get_elements_by_class(document, 'wxSplitterWindow'):
panes = [node for node in get_child_elems(sp) if node.tagName=='object']
assert len(panes) <= 2, "Splitter window with more than 2 panes!"
for i, pane in enumerate(panes):
e = document.createElement('window_%s' % (i + 1))
e.appendChild(document.createTextNode(pane.getAttribute('name')))
sp.insertBefore(e, sp.firstChild)
for orient in filter( lambda n: n.tagName == 'orientation', get_child_elems(sp) ):
if orient.firstChild.data == 'vertical':
orient.firstChild.data = 'wxVERTICAL'
elif orient.firstChild.data == 'horizontal':
orient.firstChild.data = 'wxHORIZONTAL'
def fix_fake_panels(document):
for frame in _get_elements_by_class(document, 'wxFrame'):
for c in get_child_elems(frame):
if c.tagName == 'object' and c.getAttribute('class') == 'wxPanel' and c.getAttribute('name') == '':
elems = get_child_elems(c)
if len(elems) == 1 and elems[0].getAttribute('class').find('Sizer') != -1:
frame.replaceChild(elems[0], c)
def fix_spacers(document):
for spacer in _get_elements_by_class(document, 'spacer'):
spacer.setAttribute('name', 'spacer')
spacer.setAttribute('base', 'EditSpacer')
sizeritem = document.createElement('object')
sizeritem.setAttribute('class', 'sizeritem')
for child in get_child_elems(spacer):
if child.tagName == 'size':
w, h = [s.strip() for s in child.firstChild.data.split(',')]
width = document.createElement('width')
width.appendChild(document.createTextNode(w))
height = document.createElement('height')
height.appendChild(document.createTextNode(h))
spacer.removeChild(child).unlink()
spacer.appendChild(width)
spacer.appendChild(height)
else:
sizeritem.appendChild(spacer.removeChild(child))
spacer.parentNode.replaceChild(sizeritem, spacer)
sizeritem.appendChild(spacer)
def fix_scrolled_windows(document):
for sw in _get_elements_by_class(document, 'wxScrolledWindow'):
e = document.createElement('scrollable')
e.appendChild(document.createTextNode('1'))
sw.insertBefore(e, sw.firstChild)
def fix_toplevel_names(document):
names = {}
for widget in get_child_elems(document.documentElement):
klass = widget.getAttribute('class')
if not klass:
continue # don't add a new 'class' attribute if it doesn't exist
if klass == 'wxPanel':
widget.setAttribute('base', 'EditTopLevelPanel')
klass_name = kn = klass.replace('wx', 'My')
name = widget.getAttribute('name')
i = 1
while klass_name in names or klass_name == name:
klass_name = kn + str(i)
i += 1
widget.setAttribute('class', klass_name)
def fix_sliders(document):
for slider in _get_elements_by_class(document, ('wxSlider', 'wxSpinCtrl')):
v1, v2 = 0, 100
for child in get_child_elems(slider):
if child.tagName == 'min':
v1 = child.firstChild.data.strip()
slider.removeChild(child).unlink()
elif child.tagName == 'max':
v2 = child.firstChild.data.strip()
slider.removeChild(child).unlink()
rng = document.createElement('range')
rng.appendChild(document.createTextNode('%s, %s' % (v1, v2)))
slider.appendChild(rng)
def fix_statusbar(document):
"""Rearrange the wxStatusBar elements
XRC format::
<object class="wxStatusBar" name="Mp3_SB">
<fields>2</fields>
<widths>-2, -1</widths>
<style>wxST_SIZEGRIP</style>
</object>
WXG format::
<statusbar>1</statusbar>
<object class="wxStatusBar" name="Mp3_SB" base="EditStatusBar">
<fields>
<field width="-2">Mp3_To_Ogg_statusbar</field>
<field width="-1"></field>
</fields>
<style>wxST_SIZEGRIP</style>
</object>
"""
for statusbar in document.getElementsByTagName('object'):
if statusbar.getAttribute('class') != 'wxStatusBar':
continue
fields = statusbar.getElementsByTagName('fields')
widths = statusbar.getElementsByTagName('widths')
new_fields = document.createElement('fields')
if fields:
fields_count = int(fields[0].firstChild.data)
else:
fields_count = 1
if widths:
widths_data = widths[0].firstChild.data
widths_data = widths_data.split(',')
else:
widths_data = []
if fields_count > len(widths_data):
delta = fields_count - len(widths_data)
widths_data += ["-1"] * delta
for pos in range(fields_count):
field = document.createElement('field')
field.appendChild(document.createTextNode(''))
field.setAttribute('width', widths_data[pos])
new_fields.appendChild(field)
# delete rearranged fields
for field in fields:
statusbar.removeChild(field).unlink()
for width in widths:
statusbar.removeChild(width).unlink()
# add new created elements
statusbar.appendChild(new_fields)
# marker <statusbar>1</statusbar> to enable the statusbar within
# wxGlade
if statusbar.parentNode is not document.documentElement:
statusbar_prop = document.createElement('statusbar')
statusbar_prop.appendChild(document.createTextNode('1'))
statusbar.parentNode.insertBefore(statusbar_prop, statusbar)
def fix_encoding(filename, document):
# first try to find the encoding of the xml doc
import re
enc = re.compile(r'^\s*<\?xml\s+.*(encoding\s*=\s*"(.*?)").*\?>')
tag = re.compile(r'<.+?>')
for line in open(filename):
match = re.match(enc, line)
if match:
document.documentElement.setAttribute('encoding', match.group(2))
return
elif re.match(tag, line):
break
# if it's not specified, try to find a child of the root called
# 'encoding': I don't know why, but XRCed does this
for child in document.documentElement.childNodes:
if child.nodeType == child.ELEMENT_NODE and child.tagName == 'encoding':
if child.firstChild is not None and child.firstChild.nodeType == child.TEXT_NODE:
document.documentElement.setAttribute( 'encoding', child.firstChild.data )
document.documentElement.removeChild(child)
def usage():
msg = """\
usage: python %s OPTIONS <INPUT_FILE.xrc> [WXG_FILE]
OPTIONS:
-d, --debug: debug mode, i.e. you can see the whole traceback of each error
If WXG_FILE is not given, it defaults to INPUT_FILE.wxg
""" % _name
print( msg)
sys.exit(1)
def print_exception():
msg = """An error occurred while trying to convert the XRC file.
\n
If you think this is a bug, or if you want to know more about the cause of the
error, run this script again in debug mode (-d switch). If you find a bug,
please report it to the mailing list ([email protected]),
or enter a bug report at the SourceForge bug tracker.
Please note that this doesn't handle ALL XRC files correctly, but only those
which already are in a format which wxGlade likes (this basically means that
every non-toplevel widget must be inside sizers, but there might be other
cases).
"""
logging.exception(msg)
sys.exit(1)
def main():
try:
options, args = getopt.getopt(sys.argv[1:], "d", ['debug'])
except getopt.GetoptError:
usage()
if not args:
usage()
infilename = args[0]
try:
out_filename = args[1]
except IndexError:
out_filename = os.path.splitext(infilename)[0] + '.wxg'
if not options:
try:
convert(infilename, out_filename)
except:
# catch the exception and print a nice message
print_exception()
else: # if in debug mode, let the traceback be printed
convert(infilename, out_filename)
if __name__ == '__main__':
_name = os.path.basename(sys.argv[0])
main()