File indexing completed on 2024-06-23 04:27:59

0001 #
0002 #  SPDX-License-Identifier: GPL-3.0-or-later
0003 #
0004 
0005 import re
0006 from collections import OrderedDict
0007 
0008 
0009 CONFIG = {
0010     "outDir": "export",
0011     "sym": r"[^a-zA-Z0-9_.-]",
0012     "error": {"msg": "ERROR: {}", "timeout": 8000},
0013     "done": {"msg": "DONE: {}", "timeout": 5000},
0014     "delimiters": OrderedDict((("assign", "="), ("separator", ","))),  # yapf: disable
0015     "meta": {"c": [""], "e": ["png"], "m": [0], "p": [""], "t": [""], "s": [100], "i": [""]},
0016 }
0017 CONFIG["sym"] = re.compile(CONFIG["sym"])