import os, time
import pyodbc
import pandas.io.sql as pdsql
def todf(dsn='yourdsn', uid=None, pwd=None, query=None, params=None):
''' if `query` is not an actual query but rather a path to a text file
containing a query, read it in instead '''
if query.endswith('.sql') and o...