ipython-sql
ipython-sql copied to clipboard
Suppress message "Returning data to local variable"
Example:
In:
%%sql result <<
select col_name
from table_name
Out:
Returning data to local variable result
I don't want this message to clutter my output for the document I am producing. It would be useful to have a setting to suppress this message.
Current workaround for this issue (needs to be applied for each cell):
%%capture
%%sql result <<
select col_name
from table_name
@ellipticview @charlie-sanders @laowantong @N-Wouda We just pushed a fix which will be available in the next Jupysql release! Jupysql is a fork that we're trying to maintain to keep the support/bug fixes/feature requests going for the community.
Just released a version with the fix!
Rock on! @max-sixty This will help the jupyter prql integrations