Connecting
Connecting With a Dialect URL
Establishing a connection using SQLAlchemy requires a specific URL format.from sqlalchemy import create_engine engine = create_engine("saparibasource:///?API=SupplierDataAPIWithPagination-V4;APIKey=wWVLn7WTAXrIRMAzZ6VnuEj7Ekot5jnU;Environment=SANDBOX;Realm=testRealm;AuthScheme=OAuthClient;InitiateOAuth=GETANDREFRESH;OAuthClientId=testClient;OAuthClientSecret=testClientSecret;")
For SQLAlchemy 2.0, the dialect name is saparibasource_2. To establish a connection, use the following URL format:
from sqlalchemy import create_engine engine = create_engine("quickbooks_2:///?User=test;Password=test;URL=http://localhost:8166;")