Example #1
0
    def test_dump(self):
        obj = classes.GSFont()
        fp = UnicodeIO()

        dump(obj, fp)

        self.assertTrue(fp.getvalue())
Example #2
0
def main(args=None):
    if args is None:
        import sys

        args = sys.argv[1:]

    if len(args) < 2:
        return 1

    method = args[0]
    if method == "-a":
        parse = openstep_plist.load
        dump = partial(openstep_plist.dump, indent=0)

    elif method == "-g":

        def parse(fp, dict_type=dict):
            from glyphsLib.parser import Parser

            s = fp.read()
            p = Parser(current_type=dict_type)
            return p.parse(s)

        from glyphsLib.writer import dump

    else:
        sys.exit("error: unknown option: %s" % method)

    infile = args[1]

    with open(infile, "r", encoding="utf-8") as fp:
        data = parse(fp)

    if len(args) > 2:
        outfile = args[2]
        with open(outfile, "w", encoding="utf-8") as fp:
            # json.dump(data, fp, cls=BytesEncoder, sort_keys=True, indent="  ")
            dump(data, fp)