diff options
author | Daniel Baumann <daniel@debian.org> | 2024-11-21 15:00:40 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2024-11-21 15:00:40 +0100 |
commit | 012d9cb5faed22cb9b4151569d30cc08563b02d1 (patch) | |
tree | fd901b9c231aeb8afa713851f23369fa4a1af2b3 /examples/accesslibplist.py | |
parent | Initial commit. (diff) | |
download | pysilfont-012d9cb5faed22cb9b4151569d30cc08563b02d1.tar.xz pysilfont-012d9cb5faed22cb9b4151569d30cc08563b02d1.zip |
Adding upstream version 1.8.0.upstream/1.8.0upstream
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to 'examples/accesslibplist.py')
-rw-r--r-- | examples/accesslibplist.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/examples/accesslibplist.py b/examples/accesslibplist.py new file mode 100644 index 0000000..e7b6348 --- /dev/null +++ b/examples/accesslibplist.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python3 +'Demo script for accessing fields in lib.plist' +__url__ = 'https://github.com/silnrsi/pysilfont' +__copyright__ = 'Copyright (c) 2017 SIL International (https://www.sil.org)' +__license__ = 'Released under the MIT License (https://opensource.org/licenses/MIT)' +__author__ = 'David Raymond' + +from silfont.core import execute + +argspec = [ + ('ifont', {'help': 'Input font file'}, {'type': 'infont'}), + ('field', {'help': 'field to access'},{})] + +def doit(args): + font = args.ifont + field = args.field + lib = font.lib + + if field in lib: + val = lib.getval(field) + print + print val + print + print "Field " + field + " is type " + lib[field][1].tag + " in xml" + + print "The retrieved value is " + str(type(val)) + " in Python" + else: + print "Field not in lib.plist" + + return + + +def cmd(): execute("UFO", doit, argspec) +if __name__ == "__main__": cmd() |