destinations.impl.sqlalchemy.factory
sqlalchemy Objects
class sqlalchemy(Destination[SqlalchemyClientConfiguration,
"SqlalchemyJobClient"])
__init__
def __init__(credentials: t.Union[SqlalchemyCredentials, t.Dict[str, t.Any],
str, "Engine"] = None,
destination_name: t.Optional[str] = None,
environment: t.Optional[str] = None,
engine_args: t.Optional[t.Dict[str, t.Any]] = None,
**kwargs: t.Any) -> None
Configure the Sqlalchemy destination to use in a pipeline.
All arguments provided here supersede other configuration sources such as environment variables and dlt config files.
Arguments:
credentials
- Credentials to connect to the sqlalchemy database. Can be an instance ofSqlalchemyCredentials
or a connection string in the formatmysql://user:password@host:port/database
destination_name
- The name of the destinationenvironment
- The environment to use**kwargs
- Additional arguments passed to the destination