Open JCZuurmond opened 3 years ago
pyodbc is required for the Spark dialect, see here. We can make this an optional add-on, which would by install like:
pyodbc
python -m pip install "soda-sql-spark[ODBC]"
Two things need to be done:
extras_requires
ODBC
This would make the installation lighter, which is especially useful for odbc since it requires unixodbc to be installed which is not always the case.
unixodbc
pyodbc
is required for the Spark dialect, see here. We can make this an optional add-on, which would by install like:Two things need to be done:
extras_requires
to install pyodbc with keyODBC
pyodbc
when the odbc connection method is usedThis would make the installation lighter, which is especially useful for odbc since it requires
unixodbc
to be installed which is not always the case.