Files
catalyst/zipline/__init__.py
T
Eddie Hebert b3efb5eb69 MAINT: Remove ndict class.
Now that ndict is no longer used in any part of the system during
a backtest, remove all remaining references in tests, etc.
2013-04-26 16:03:01 -04:00

23 lines
325 B
Python

"""
Zipline
"""
# This is *not* a place to dump arbitrary classes/modules for convenience,
# it is a place to expose the public interfaces.
import data
import finance
import gens
import utils
from algorithm import TradingAlgorithm
__all__ = [
'data',
'finance',
'gens',
'utils',
'TradingAlgorithm'
]