Edit on GitHub

sqlglot.optimizer

1from sqlglot.optimizer.optimizer import RULES, optimize
2from sqlglot.optimizer.scope import (
3    Scope,
4    build_scope,
5    find_all_in_scope,
6    find_in_scope,
7    traverse_scope,
8    walk_in_scope,
9)