I'm coming back to quantopian after a long period of inactivity and so much has been added and improved upon. Really impressive.
In going through some of the tutorials and notebooks (love the research ipython notebook area), I noticed sometimes quantopian.pipeline is used and sometimes quantopian.interactive is used...
# For use in your algorithms via the pipeline API
from quantopian.pipeline.data.quandl import yahoo_index_vix
# For use in Quantopian Research, exploring interactively
from quantopian.interactive.data.quandl import yahoo_index_vix
I don't really understand what the differences are between the two, or why one would be more appropriate for a particular environment, though (at least in research) both appear to work.