mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-05 18:29:37 +08:00
419bd1e3b5
This lets us publish an "old" db version for the most recent release of zipline, using the latest code base.
31 lines
589 B
Python
31 lines
589 B
Python
# These imports are necessary to force module-scope register calls to happen.
|
|
from . import quandl # noqa
|
|
from .core import (
|
|
UnknownBundle,
|
|
bundles,
|
|
clean,
|
|
from_bundle_ingest_dirname,
|
|
ingest,
|
|
ingestions_for_bundle,
|
|
load,
|
|
register,
|
|
to_bundle_ingest_dirname,
|
|
unregister,
|
|
)
|
|
from .yahoo import yahoo_equities
|
|
|
|
|
|
__all__ = [
|
|
'UnknownBundle',
|
|
'bundles',
|
|
'clean',
|
|
'from_bundle_ingest_dirname',
|
|
'ingest',
|
|
'ingestions_for_bundle',
|
|
'load',
|
|
'register',
|
|
'to_bundle_ingest_dirname',
|
|
'unregister',
|
|
'yahoo_equities',
|
|
]
|