# Python Isabelle Symbols Module This directory contains Python functionality for translation between Isabelle's ascii representations (e.g. `\`) and its unicode representations (e.g. `∀`). You need to provide it with a copy of Isabelle's internal "symbols" file that it uses to form translation mappings. Example usage: ```python import isasymbols t = isasymbols.make_translator('/path/to/symbols') print t.encode('\\A; B\\ \\ A') ``` For anything more complicated, please consult the source.