Table of Contents
parser
ast
ast.copy_location()
ast.dump()
ast.fix_missing_locations()
ast.get_docstring()
ast.increment_lineno()
ast.iter_child_nodes()
ast.iter_fields()
ast.literal_eval()
ast.parse()
ast.walk()
symtable
symbol
token
keyword
tokenize
tabnanny
pyclbr
py_compile
compileall
dis
pickletools
ast.
literal_eval
Safely evaluate an expression node or a string containing a Python expression. The string or node provided may only consist of the following Python literal structures: strings, numbers, tuples, lists, dicts, booleans, and None.