File "/Users/cc.cai/airflow_venv/lib/python3.10/site-packages/clickhouse_connect/driver/httpclient.py", line 351, in command response = self._raw_request(payload, params, headers, method, fields=fields, server_wait=False) File "/Users/cc.cai/airflow_venv/lib/python3.10/site-packages/clickho...
Has anyone actually gotten this to work with straight python code? The below is from their docs: from sqlalchemy import create_engine e = create_engine("mysql+mysqldb://scott:tiger@localhost/test", pool_recycle=3600) I am using the pymysql library, and just need to know where the pytho...
this is second try using sqlalchemy fromflask.ext.sqlalchemyimportSQLAlchemyapp=Flask(__name__)app.config['SQLALCHEMY_DATABASE_URI']='mysql://Sosolo:password@mysql.server/Sosolo$database-name'db=SQLAlchemy(app) and last this is using MySQLdb importMySQLdbassqlapp=Flask(__name__)db=sql....