I have an app that uses both pyodbc and SqlAlchemy for reasons (yes I know about engine.execute())
As a result I have to have a connection string in two formats:
mssql+pyodbc://./MyDb?APP=Python App
DRIVER={SQL Server};Server=localhost;Database=master;Trusted_Connection=Yes
Is there some function to let me convert from one to another so I can only have one configuration string in my configuration file.