You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 31, 2021. It is now read-only.
Currently, the project structure is using src as a top level folder, which lead to an issue while importing in a python project.
While it doesn't affect cli users, developers have to import src to import SQL CLI package and use its modules for development.
Need to figure out a way for better organizing the project/modules. Developers should be able to import modules from SQL CLI packages by something likefrom odfe_sql_cli.esconnection import ESConnection, where odfe_sql_cli is package name and esconnection is module name.
The text was updated successfully, but these errors were encountered:
Currently, the project structure is using
src
as a top level folder, which lead to an issue while importing in a python project.While it doesn't affect cli users, developers have to
import src
to import SQL CLI package and use its modules for development.Need to figure out a way for better organizing the project/modules. Developers should be able to import modules from SQL CLI packages by something like
from odfe_sql_cli.esconnection import ESConnection
, whereodfe_sql_cli
is package name andesconnection
is module name.The text was updated successfully, but these errors were encountered: