Eduardo Blancas
Eduardo Blancas
hi, you can disable telemetry with: ``` export PLOOMBER_STATS_ENABLED=false ``` I think you'll still need to have posthog installed, otherwise importing the package will break, but this will disable external...
do you have the full traceback?
hi, thanks for reporting this! This is an issue with `conda`, sometimes it fails to find the appropriate package. If you can find a simple way to replace the package...
Note: I edited the original comment. I ran a quick test and `IPython.display.IFrame` works (`IPython.display.HTML` does not since it only loads HTML but does not execute JS, which is needed...
can you fix it?
I tried running the actual colab (not the CI version) and it also gets stuck:  maybe we should remove it?
solution is here: https://github.com/jupyterlab/jupyterlab/issues/14258
this is supported beginning in version 0.5.1 of our [fork](https://jupysql.readthedocs.io/en/latest/howto.html#register-sqlite-udf)
in those cases, it's usually easier to ensure you can establish a connection using create_engine and then pass the engine object: https://jupysql.ploomber.io/en/latest/howto.html#connect-to-existing-engine
can you try connecting via `create_engine`? see the example [here](https://www.ibm.com/docs/en/db2/11.5?topic=SSEPGG_11.5.0/com.ibm.swg.im.dbclient.python.doc/doc/t0060891.htm): ``` import sqlalchemy from sqlalchemy import * import ibm_db_sa.ibm_db_sa db2 = sqlalchemy.create_engine('ibm_db_sa://user:[email protected]:50000/database') metadata = MetaData() users = Table('STAFF', metadata, Column('ID',...