mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-08 05:36:44 +08:00
4f5b2d6298
Testing with a Python 3 virtualenv uncovered more relative imports that did not explicitly use the dot syntax.
23 lines
355 B
Python
23 lines
355 B
Python
"""
|
|
Zipline
|
|
"""
|
|
|
|
# This is *not* a place to dump arbitrary classes/modules for convenience,
|
|
# it is a place to expose the public interfaces.
|
|
|
|
|
|
from . import data
|
|
from . import finance
|
|
from . import gens
|
|
from . import utils
|
|
|
|
from . algorithm import TradingAlgorithm
|
|
|
|
__all__ = [
|
|
'data',
|
|
'finance',
|
|
'gens',
|
|
'utils',
|
|
'TradingAlgorithm'
|
|
]
|