A module to help interaction with Jupyter Notebooks and Apache Drill
This is a python module that helps to connect Jupyter Notebooks to Apache Drill. It uses the requests module to make request via the Drill API and brings back the data as JSON, and the imported into a Pandas dataframe for use.
After installing this, to instantiate the module so you can use %drill and %%drill put this in a cell:
from drill_core1 import Drill
ipy = get_ipython()
Drill = Drill(ipy, drill_pin_to_ip=True, drill_rewrite_host=True, pd_use_beaker=True)
ipy.register_magics(Drill)