Connecting
Connecting With a Dialect URL
Establishing a connection using SQLAlchemy requires a specific URL format. For this connector, you can create the engine using either of the following URL formats:Format 1
from sqlalchemy import create_engine
engine = create_engine("ftp:///?RemoteHost=MyFTPServer;")
Format 2
from sqlalchemy import create_engine
engine = create_engine("ftp://User:Password@/?RemoteHost=MyFTPServer;")
For SQLAlchemy 2.0, the dialect name is ftp_2. To establish a connection, use the following URL format:
from sqlalchemy import create_engine
engine = create_engine("ftp_2:///?RemoteHost=MyFTPServer;")