for mssql cat mssql_etl.py from common import run...
# ingestion
g
for mssql cat mssql_etl.py from common import run # See https://github.com/m32/sqlalchemy-tds for more details URL = 'mssql+pytds://test_user:test123@127.0.0.1:1433/testdb' OPTIONS = {} PLATFORM = 'mssql' run(URL, OPTIONS, PLATFORM)
b
@gentle-plumber-6625 Hi there! Can you confirm you're using Python3?
(Specifically a version > 3.6, as this appears to be when the formatted f-string feature was released. Prior to that SyntaxError will be raised)
g
Thanks John.. upgraded python version to 3.6 & issue is resolved
👍 1
🎉 2