You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LocalDataDriver for using CSV and pickled DF files as a QueryProvider (#64)
This is primary for demonstration and test purposes where you do not have access to online data sources. It
replicates the functionality of QueryProvider allowing drop-in replacement in existing notebooks.
Updated DataQueries.rst ReadtheDocs page with new queries
Add documentation for LocalDataDriver to DataProviders.rst and updated section on creating query files.
Changed tilookup and kql_base/kql_driver so that handling failure to load is a bit friendlier. E.g. running
TILookup in a non-IPython environment (with ASTI provider) will now just cause a warning, not an exception.
kql_driver.py also updated to check for get_ipython() returning None and output friendlier message.
Changed driver_base.py and derived class to take additional QuerySource parameter for query() method -
not yet used but required so that we can implement driver-specific checks on query parameters.