summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpks <pks@users.noreply.github.com>2020-05-11 16:04:58 +0200
committerGitHub <noreply@github.com>2020-05-11 16:04:58 +0200
commitfc74944003b5b137c7cf806deee6d305fa00cf06 (patch)
tree9a88a99f2375def4713bfe581fff7ce2f1585bd8
parent7d2fd2bf643671377e990b1c944aa3650397e3da (diff)
parenta4215712a7611c8f2e9d907e0cd9c734de14a8af (diff)
Merge pull request #2 from lilt/feature/tmxPython3
Update tmx-extract.py to use python3
-rwxr-xr-xtmx-extract.py30
1 files changed, 15 insertions, 15 deletions
diff --git a/tmx-extract.py b/tmx-extract.py
index 90a298a..e8ec959 100755
--- a/tmx-extract.py
+++ b/tmx-extract.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python2
+#!/usr/bin/python3
#
# Adapted from Apertium
# http://wiki.apertium.org/wiki/Tools_for_TMX
@@ -54,23 +54,23 @@ class TMXHandler(ContentHandler):
def endElement(self, name):
if name == 'tu' and self.pair == self.cur_pair:
for lang in self.cur_pair:
- self.files[lang].write(self.seg[lang].encode('utf-8').strip()+"\n")
+ self.files[lang].write("{}\n".format(self.seg[lang].strip()))
-parser = make_parser()
-if len(sys.argv) < 3:
- print 'Usage: tmx-extract.py <file> <slang> <tlang>'
- print ''
- sys.exit(-1)
+if __name__ == "__main__":
+ parser = make_parser()
-sfile = open(sys.argv[1]+"."+sys.argv[2], 'w+')
-tfile = open(sys.argv[1]+"."+sys.argv[3], 'w+')
-curHandler = TMXHandler(sys.argv[2], sys.argv[3], sfile, tfile)
+ if len(sys.argv) < 3:
+ print('Usage: tmx-extract.py <file> <slang> <tlang>')
+ print('')
+ sys.exit(-1)
-parser.setContentHandler(curHandler)
+ sfile_path = sys.argv[1] + "." + sys.argv[2]
+ tfile_path = sys.argv[1] + "." + sys.argv[3]
-parser.parse(open(sys.argv[1]))
-
-sfile.close()
-tfile.close()
+ with open(sfile_path, 'w+') as sfile, open(tfile_path, 'w+') as tfile:
+ curHandler = TMXHandler(sys.argv[2], sys.argv[3], sfile, tfile)
+ parser.setContentHandler(curHandler)
+ with open(sys.argv[1], 'r') as tmx_file:
+ parser.parse(tmx_file)