Error when trying to use ext in sqlglot library - ModuleNotFoundError: No module named 'sqlglot.exp' #3790
-
`import sqlglot def find_selects_in_procedure(sql):
sql = """ find_selects_in_procedure(sql)` The above snippet is failing with following: ModuleNotFoundError: No module named 'sqlglot.exp' |
Beta Was this translation helpful? Give feedback.
Answered by
georgesittas
Aug 5, 2024
Replies: 1 comment
-
You need to do |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
georgesittas
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to do
from sqlglot.expressions import ...
.