-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Former-commit-id: fe81300
- Loading branch information
Showing
51 changed files
with
367 additions
and
229 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
zvdata == 1.1.3 | ||
#zvdata == 1.1.3 | ||
requests == 2.20.1 | ||
SQLAlchemy == 1.2.14 | ||
pandas == 0.24.2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
from zvt.domain.fundamental.dividend_financing import * | ||
from zvt.domain.fundamental.finance import * | ||
from zvt.domain.fundamental.trading import * | ||
from zvt.domain.fundamental.valuation import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
from .coin_meta import * | ||
from .stock_meta import * | ||
from zvt.domain.meta.coin_meta import * | ||
from zvt.domain.meta.stock_meta import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# -*- coding: utf-8 -*- | ||
from zvt.domain.misc.holder import * | ||
from zvt.domain.misc.money_flow import * | ||
from zvt.domain.misc.overall import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
# this file is generated by gen_quote_domain function, dont't change it | ||
from zvt.domain.quotes.block.block_1d_kdata import * | ||
from zvt.domain.quotes.block.block_1wk_kdata import * | ||
from zvt.domain.quotes.block.block_1mon_kdata import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# -*- coding: utf-8 -*- | ||
# this file is generated by gen_quote_domain function, dont't change it | ||
from sqlalchemy.ext.declarative import declarative_base | ||
|
||
from zvdata.contract import register_schema | ||
from zvt.domain.quotes import BlockKdataCommon | ||
|
||
KdataBase = declarative_base() | ||
|
||
|
||
class Block1dKdata(KdataBase, BlockKdataCommon): | ||
__tablename__ = 'block_1d_kdata' | ||
|
||
|
||
register_schema(providers=['eastmoney'], db_name='block_1d_kdata', schema_base=KdataBase) | ||
|
||
__all__ = ['Block1dKdata'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# -*- coding: utf-8 -*- | ||
# this file is generated by gen_quote_domain function, dont't change it | ||
from sqlalchemy.ext.declarative import declarative_base | ||
|
||
from zvdata.contract import register_schema | ||
from zvt.domain.quotes import BlockKdataCommon | ||
|
||
KdataBase = declarative_base() | ||
|
||
|
||
class Block1monKdata(KdataBase, BlockKdataCommon): | ||
__tablename__ = 'block_1mon_kdata' | ||
|
||
|
||
register_schema(providers=['eastmoney'], db_name='block_1mon_kdata', schema_base=KdataBase) | ||
|
||
__all__ = ['Block1monKdata'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# -*- coding: utf-8 -*- | ||
# this file is generated by gen_quote_domain function, dont't change it | ||
from sqlalchemy.ext.declarative import declarative_base | ||
|
||
from zvdata.contract import register_schema | ||
from zvt.domain.quotes import BlockKdataCommon | ||
|
||
KdataBase = declarative_base() | ||
|
||
|
||
class Block1wkKdata(KdataBase, BlockKdataCommon): | ||
__tablename__ = 'block_1wk_kdata' | ||
|
||
|
||
register_schema(providers=['eastmoney'], db_name='block_1wk_kdata', schema_base=KdataBase) | ||
|
||
__all__ = ['Block1wkKdata'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
# -*- coding: utf-8 -*- | ||
from zvt.domain.quotes import KdataCommon, TickCommon | ||
|
||
|
||
class CoinKdataCommon(KdataCommon): | ||
pass | ||
|
||
|
||
class CoinTickCommon(TickCommon): | ||
pass | ||
# this file is generated by gen_quote_domain function, dont't change it | ||
from zvt.domain.quotes.coin.coin_tick_kdata import * | ||
from zvt.domain.quotes.coin.coin_1m_kdata import * | ||
from zvt.domain.quotes.coin.coin_5m_kdata import * | ||
from zvt.domain.quotes.coin.coin_15m_kdata import * | ||
from zvt.domain.quotes.coin.coin_30m_kdata import * | ||
from zvt.domain.quotes.coin.coin_1h_kdata import * | ||
from zvt.domain.quotes.coin.coin_4h_kdata import * | ||
from zvt.domain.quotes.coin.coin_1d_kdata import * | ||
from zvt.domain.quotes.coin.coin_1wk_kdata import * | ||
from zvt.domain.quotes.coin.coin_1mon_kdata import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
# -*- coding: utf-8 -*- | ||
# this file is generated by gen_quote_domain function, dont't change it | ||
from sqlalchemy.ext.declarative import declarative_base | ||
|
||
from zvdata.contract import register_schema | ||
from zvt.domain.quotes.coin import CoinKdataCommon | ||
from zvt.domain.quotes import CoinKdataCommon | ||
|
||
Coin1dKdataBase = declarative_base() | ||
KdataBase = declarative_base() | ||
|
||
|
||
class Coin1dKdata(Coin1dKdataBase, CoinKdataCommon): | ||
class Coin1dKdata(KdataBase, CoinKdataCommon): | ||
__tablename__ = 'coin_1d_kdata' | ||
|
||
|
||
register_schema(providers=['ccxt'], db_name='coin_1d_kdata', schema_base=Coin1dKdataBase) | ||
register_schema(providers=['ccxt'], db_name='coin_1d_kdata', schema_base=KdataBase) | ||
|
||
__all__ = ['Coin1dKdata'] |
Oops, something went wrong.