datahub_binary 1.7.12__cp312-cp312-win_amd64.whl → 1.7.14__cp312-cp312-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- datahub/ats/client_sdk.pyi +1 -1
- datahub/protos/client_pb2.pyi +172 -14
- datahub.cp312-win_amd64.pyd +0 -0
- {datahub_binary-1.7.12.dist-info → datahub_binary-1.7.14.dist-info}/METADATA +1 -1
- {datahub_binary-1.7.12.dist-info → datahub_binary-1.7.14.dist-info}/RECORD +7 -7
- {datahub_binary-1.7.12.dist-info → datahub_binary-1.7.14.dist-info}/WHEEL +1 -1
- {datahub_binary-1.7.12.dist-info → datahub_binary-1.7.14.dist-info}/top_level.txt +0 -0
datahub/ats/client_sdk.pyi
CHANGED
|
@@ -279,7 +279,7 @@ class BaseStrategy:
|
|
|
279
279
|
:return:
|
|
280
280
|
"""
|
|
281
281
|
def qry_sbl_list_req(self, sbl_ids: list[str]) -> str: ...
|
|
282
|
-
def lock_sbl_req(self, instrument_id: str, sbl_id: str, lock_qty: int) -> str: ...
|
|
282
|
+
def lock_sbl_req(self, instrument_id: str, sbl_id: str, lock_qty: int, intrate: float = 0.0) -> str: ...
|
|
283
283
|
def qry_lock_position_req(self) -> None: ...
|
|
284
284
|
def qry_lock_record_req(self) -> None: ...
|
|
285
285
|
def proxy(self) -> None: ...
|
datahub/protos/client_pb2.pyi
CHANGED
|
@@ -294,7 +294,7 @@ class Trade(_message.Message):
|
|
|
294
294
|
def __init__(self, order_id: _Optional[str] = ..., cl_order_id: _Optional[str] = ..., order_date: _Optional[int] = ..., order_time: _Optional[int] = ..., trade_id: _Optional[str] = ..., trade_time: _Optional[int] = ..., order_type: _Optional[int] = ..., side: _Optional[int] = ..., position_effect: _Optional[int] = ..., owner_type: _Optional[int] = ..., security_id: _Optional[str] = ..., market: _Optional[str] = ..., security_type: _Optional[str] = ..., instrument_id: _Optional[str] = ..., appl_id: _Optional[str] = ..., contract_unit: _Optional[float] = ..., strategy_id: _Optional[int] = ..., strategy_name: _Optional[str] = ..., account_id: _Optional[str] = ..., investor_id: _Optional[str] = ..., business_type: _Optional[str] = ..., last_qty: _Optional[int] = ..., last_px: _Optional[float] = ..., last_amt: _Optional[float] = ..., match_place: _Optional[int] = ..., algo_type: _Optional[int] = ..., order_source: _Optional[str] = ..., attachment: _Optional[str] = ..., user_id: _Optional[str] = ..., counter_cl_order_id: _Optional[str] = ..., counter_order_id: _Optional[str] = ..., symbol: _Optional[str] = ..., parent_order_id: _Optional[str] = ...) -> None: ...
|
|
295
295
|
|
|
296
296
|
class Fund(_message.Message):
|
|
297
|
-
__slots__ = ("account_id", "investor_id", "currency_id", "sod", "balance", "frozen", "available", "intraday", "trans_in", "trans_out", "version")
|
|
297
|
+
__slots__ = ("account_id", "investor_id", "currency_id", "sod", "balance", "frozen", "available", "intraday", "trans_in", "trans_out", "version", "product_id", "product_name", "broker", "long_market_value", "short_market_value", "market_value")
|
|
298
298
|
ACCOUNT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
299
299
|
INVESTOR_ID_FIELD_NUMBER: _ClassVar[int]
|
|
300
300
|
CURRENCY_ID_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -306,6 +306,12 @@ class Fund(_message.Message):
|
|
|
306
306
|
TRANS_IN_FIELD_NUMBER: _ClassVar[int]
|
|
307
307
|
TRANS_OUT_FIELD_NUMBER: _ClassVar[int]
|
|
308
308
|
VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
309
|
+
PRODUCT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
310
|
+
PRODUCT_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
311
|
+
BROKER_FIELD_NUMBER: _ClassVar[int]
|
|
312
|
+
LONG_MARKET_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
313
|
+
SHORT_MARKET_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
314
|
+
MARKET_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
309
315
|
account_id: str
|
|
310
316
|
investor_id: str
|
|
311
317
|
currency_id: str
|
|
@@ -317,7 +323,13 @@ class Fund(_message.Message):
|
|
|
317
323
|
trans_in: float
|
|
318
324
|
trans_out: float
|
|
319
325
|
version: int
|
|
320
|
-
|
|
326
|
+
product_id: str
|
|
327
|
+
product_name: str
|
|
328
|
+
broker: str
|
|
329
|
+
long_market_value: float
|
|
330
|
+
short_market_value: float
|
|
331
|
+
market_value: float
|
|
332
|
+
def __init__(self, account_id: _Optional[str] = ..., investor_id: _Optional[str] = ..., currency_id: _Optional[str] = ..., sod: _Optional[float] = ..., balance: _Optional[float] = ..., frozen: _Optional[float] = ..., available: _Optional[float] = ..., intraday: _Optional[float] = ..., trans_in: _Optional[float] = ..., trans_out: _Optional[float] = ..., version: _Optional[int] = ..., product_id: _Optional[str] = ..., product_name: _Optional[str] = ..., broker: _Optional[str] = ..., long_market_value: _Optional[float] = ..., short_market_value: _Optional[float] = ..., market_value: _Optional[float] = ...) -> None: ...
|
|
321
333
|
|
|
322
334
|
class LoginReq(_message.Message):
|
|
323
335
|
__slots__ = ("msg_type", "user_id", "passwd", "last_timestamp", "request_id")
|
|
@@ -431,10 +443,12 @@ class StrategyControlReq(_message.Message):
|
|
|
431
443
|
kRunning: _ClassVar[StrategyControlReq.ControlType]
|
|
432
444
|
kPause: _ClassVar[StrategyControlReq.ControlType]
|
|
433
445
|
kStop: _ClassVar[StrategyControlReq.ControlType]
|
|
446
|
+
kClose: _ClassVar[StrategyControlReq.ControlType]
|
|
434
447
|
kInit: StrategyControlReq.ControlType
|
|
435
448
|
kRunning: StrategyControlReq.ControlType
|
|
436
449
|
kPause: StrategyControlReq.ControlType
|
|
437
450
|
kStop: StrategyControlReq.ControlType
|
|
451
|
+
kClose: StrategyControlReq.ControlType
|
|
438
452
|
MSG_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
439
453
|
STRATEGY_ID_FIELD_NUMBER: _ClassVar[int]
|
|
440
454
|
STRATEGY_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -686,7 +700,7 @@ class QryStrategyStatReq(_message.Message):
|
|
|
686
700
|
def __init__(self, msg_type: _Optional[int] = ..., text: _Optional[str] = ..., last_timestamp: _Optional[int] = ..., request_id: _Optional[str] = ...) -> None: ...
|
|
687
701
|
|
|
688
702
|
class StrategyStatDetail(_message.Message):
|
|
689
|
-
__slots__ = ("strategy_id", "strategy_name", "strategy_template_id", "status", "instrument_id", "symbol", "expo_qty", "sod_qty", "current_qty", "posi_amount", "last_px", "buy_amount", "sell_amount", "buy_qty", "sell_qty", "expo_amt", "active_order_nums", "text", "avail_qty", "net_change", "best_order_spread", "positon_rate", "trade_side_rate", "net_buy_amount", "total_trade_amount", "trade_rate", "diff2limit", "order_depth", "orders", "bid_premium_rate", "ask_premium_rate", "impact_factor", "theory_price", "original_price", "cost_price", "pre_close_price", "float_pnl", "contract_unit", "posi_adjust_rate", "active_buy_amt", "active_sell_amt", "max_spread_in_target_order_amt", "target_qty", "node_id", "node_name", "active_buy_price", "active_sell_price", "effective_active_amt", "stat_bid_price", "stat_ask_price", "stat_fields", "stat_status", "active_order_qty", "total_order_qty", "total_order_nums", "total_cancel_nums")
|
|
703
|
+
__slots__ = ("strategy_id", "account_id", "strategy_name", "strategy_template_id", "status", "instrument_id", "symbol", "expo_qty", "sod_qty", "current_qty", "posi_amount", "last_px", "buy_amount", "sell_amount", "buy_qty", "sell_qty", "expo_amt", "active_order_nums", "text", "avail_qty", "net_change", "best_order_spread", "positon_rate", "trade_side_rate", "net_buy_amount", "total_trade_amount", "trade_rate", "diff2limit", "order_depth", "orders", "bid_premium_rate", "ask_premium_rate", "impact_factor", "theory_price", "original_price", "cost_price", "pre_close_price", "float_pnl", "contract_unit", "posi_adjust_rate", "active_buy_amt", "active_sell_amt", "max_spread_in_target_order_amt", "target_qty", "node_id", "node_name", "active_buy_price", "active_sell_price", "effective_active_amt", "stat_bid_price", "stat_ask_price", "stat_fields", "stat_status", "active_order_qty", "total_order_qty", "total_order_nums", "total_cancel_nums")
|
|
690
704
|
class DepthItem(_message.Message):
|
|
691
705
|
__slots__ = ("price", "volume", "side")
|
|
692
706
|
PRICE_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -708,6 +722,7 @@ class StrategyStatDetail(_message.Message):
|
|
|
708
722
|
ids: _containers.RepeatedScalarFieldContainer[str]
|
|
709
723
|
def __init__(self, price: _Optional[float] = ..., qty: _Optional[int] = ..., side: _Optional[int] = ..., ids: _Optional[_Iterable[str]] = ...) -> None: ...
|
|
710
724
|
STRATEGY_ID_FIELD_NUMBER: _ClassVar[int]
|
|
725
|
+
ACCOUNT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
711
726
|
STRATEGY_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
712
727
|
STRATEGY_TEMPLATE_ID_FIELD_NUMBER: _ClassVar[int]
|
|
713
728
|
STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -764,6 +779,7 @@ class StrategyStatDetail(_message.Message):
|
|
|
764
779
|
TOTAL_ORDER_NUMS_FIELD_NUMBER: _ClassVar[int]
|
|
765
780
|
TOTAL_CANCEL_NUMS_FIELD_NUMBER: _ClassVar[int]
|
|
766
781
|
strategy_id: int
|
|
782
|
+
account_id: str
|
|
767
783
|
strategy_name: str
|
|
768
784
|
strategy_template_id: str
|
|
769
785
|
status: str
|
|
@@ -819,7 +835,7 @@ class StrategyStatDetail(_message.Message):
|
|
|
819
835
|
total_order_qty: int
|
|
820
836
|
total_order_nums: int
|
|
821
837
|
total_cancel_nums: int
|
|
822
|
-
def __init__(self, strategy_id: _Optional[int] = ..., strategy_name: _Optional[str] = ..., strategy_template_id: _Optional[str] = ..., status: _Optional[str] = ..., instrument_id: _Optional[str] = ..., symbol: _Optional[str] = ..., expo_qty: _Optional[int] = ..., sod_qty: _Optional[int] = ..., current_qty: _Optional[int] = ..., posi_amount: _Optional[float] = ..., last_px: _Optional[float] = ..., buy_amount: _Optional[float] = ..., sell_amount: _Optional[float] = ..., buy_qty: _Optional[int] = ..., sell_qty: _Optional[int] = ..., expo_amt: _Optional[float] = ..., active_order_nums: _Optional[int] = ..., text: _Optional[str] = ..., avail_qty: _Optional[int] = ..., net_change: _Optional[float] = ..., best_order_spread: _Optional[int] = ..., positon_rate: _Optional[float] = ..., trade_side_rate: _Optional[float] = ..., net_buy_amount: _Optional[float] = ..., total_trade_amount: _Optional[float] = ..., trade_rate: _Optional[float] = ..., diff2limit: _Optional[float] = ..., order_depth: _Optional[_Iterable[_Union[StrategyStatDetail.DepthItem, _Mapping]]] = ..., orders: _Optional[_Iterable[_Union[StrategyStatDetail.OrderItem, _Mapping]]] = ..., bid_premium_rate: _Optional[float] = ..., ask_premium_rate: _Optional[float] = ..., impact_factor: _Optional[float] = ..., theory_price: _Optional[float] = ..., original_price: _Optional[float] = ..., cost_price: _Optional[float] = ..., pre_close_price: _Optional[float] = ..., float_pnl: _Optional[float] = ..., contract_unit: _Optional[float] = ..., posi_adjust_rate: _Optional[float] = ..., active_buy_amt: _Optional[float] = ..., active_sell_amt: _Optional[float] = ..., max_spread_in_target_order_amt: _Optional[int] = ..., target_qty: _Optional[int] = ..., node_id: _Optional[int] = ..., node_name: _Optional[str] = ..., active_buy_price: _Optional[float] = ..., active_sell_price: _Optional[float] = ..., effective_active_amt: _Optional[float] = ..., stat_bid_price: _Optional[float] = ..., stat_ask_price: _Optional[float] = ..., stat_fields: _Optional[str] = ..., stat_status: _Optional[int] = ..., active_order_qty: _Optional[int] = ..., total_order_qty: _Optional[int] = ..., total_order_nums: _Optional[int] = ..., total_cancel_nums: _Optional[int] = ...) -> None: ...
|
|
838
|
+
def __init__(self, strategy_id: _Optional[int] = ..., account_id: _Optional[str] = ..., strategy_name: _Optional[str] = ..., strategy_template_id: _Optional[str] = ..., status: _Optional[str] = ..., instrument_id: _Optional[str] = ..., symbol: _Optional[str] = ..., expo_qty: _Optional[int] = ..., sod_qty: _Optional[int] = ..., current_qty: _Optional[int] = ..., posi_amount: _Optional[float] = ..., last_px: _Optional[float] = ..., buy_amount: _Optional[float] = ..., sell_amount: _Optional[float] = ..., buy_qty: _Optional[int] = ..., sell_qty: _Optional[int] = ..., expo_amt: _Optional[float] = ..., active_order_nums: _Optional[int] = ..., text: _Optional[str] = ..., avail_qty: _Optional[int] = ..., net_change: _Optional[float] = ..., best_order_spread: _Optional[int] = ..., positon_rate: _Optional[float] = ..., trade_side_rate: _Optional[float] = ..., net_buy_amount: _Optional[float] = ..., total_trade_amount: _Optional[float] = ..., trade_rate: _Optional[float] = ..., diff2limit: _Optional[float] = ..., order_depth: _Optional[_Iterable[_Union[StrategyStatDetail.DepthItem, _Mapping]]] = ..., orders: _Optional[_Iterable[_Union[StrategyStatDetail.OrderItem, _Mapping]]] = ..., bid_premium_rate: _Optional[float] = ..., ask_premium_rate: _Optional[float] = ..., impact_factor: _Optional[float] = ..., theory_price: _Optional[float] = ..., original_price: _Optional[float] = ..., cost_price: _Optional[float] = ..., pre_close_price: _Optional[float] = ..., float_pnl: _Optional[float] = ..., contract_unit: _Optional[float] = ..., posi_adjust_rate: _Optional[float] = ..., active_buy_amt: _Optional[float] = ..., active_sell_amt: _Optional[float] = ..., max_spread_in_target_order_amt: _Optional[int] = ..., target_qty: _Optional[int] = ..., node_id: _Optional[int] = ..., node_name: _Optional[str] = ..., active_buy_price: _Optional[float] = ..., active_sell_price: _Optional[float] = ..., effective_active_amt: _Optional[float] = ..., stat_bid_price: _Optional[float] = ..., stat_ask_price: _Optional[float] = ..., stat_fields: _Optional[str] = ..., stat_status: _Optional[int] = ..., active_order_qty: _Optional[int] = ..., total_order_qty: _Optional[int] = ..., total_order_nums: _Optional[int] = ..., total_cancel_nums: _Optional[int] = ...) -> None: ...
|
|
823
839
|
|
|
824
840
|
class QryStrategyStatRsp(_message.Message):
|
|
825
841
|
__slots__ = ("msg_type", "last_timestamp", "request_id", "status", "text")
|
|
@@ -990,7 +1006,7 @@ class StrategyInstrumentStat(_message.Message):
|
|
|
990
1006
|
def __init__(self, strategy_name: _Optional[str] = ..., instrument_id: _Optional[str] = ..., book_id: _Optional[str] = ..., account_id: _Optional[str] = ..., strategy_id: _Optional[int] = ..., sod_qty: _Optional[int] = ..., trade_pnl: _Optional[float] = ..., total_pnl: _Optional[float] = ..., current_qty: _Optional[int] = ..., trade_qty: _Optional[int] = ..., trade_amount: _Optional[float] = ..., last_price: _Optional[float] = ..., fee: _Optional[float] = ..., buy_qty: _Optional[int] = ..., sell_qty: _Optional[int] = ..., buy_amount: _Optional[float] = ..., sell_amount: _Optional[float] = ..., buy_pnl: _Optional[float] = ..., sell_pnl: _Optional[float] = ..., buy_avg_price: _Optional[float] = ..., sell_avg_price: _Optional[float] = ..., prev_close: _Optional[float] = ..., sod_pnl: _Optional[float] = ..., symbol: _Optional[str] = ...) -> None: ...
|
|
991
1007
|
|
|
992
1008
|
class StrategySummary(_message.Message):
|
|
993
|
-
__slots__ = ("strategy_name", "book_id", "account_id", "strategy_id", "trade_pnl", "total_pnl", "trade_amount", "total_amount", "fee", "buy_amount", "sell_amount", "buy_pnl", "sell_pnl", "sod_pnl", "stats", "total_instruments")
|
|
1009
|
+
__slots__ = ("strategy_name", "book_id", "account_id", "strategy_id", "trade_pnl", "total_pnl", "trade_amount", "total_amount", "fee", "buy_amount", "sell_amount", "buy_pnl", "sell_pnl", "sod_pnl", "stats", "total_instruments", "long_amount", "short_amount", "product_id", "product_name")
|
|
994
1010
|
STRATEGY_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
995
1011
|
BOOK_ID_FIELD_NUMBER: _ClassVar[int]
|
|
996
1012
|
ACCOUNT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -1007,6 +1023,10 @@ class StrategySummary(_message.Message):
|
|
|
1007
1023
|
SOD_PNL_FIELD_NUMBER: _ClassVar[int]
|
|
1008
1024
|
STATS_FIELD_NUMBER: _ClassVar[int]
|
|
1009
1025
|
TOTAL_INSTRUMENTS_FIELD_NUMBER: _ClassVar[int]
|
|
1026
|
+
LONG_AMOUNT_FIELD_NUMBER: _ClassVar[int]
|
|
1027
|
+
SHORT_AMOUNT_FIELD_NUMBER: _ClassVar[int]
|
|
1028
|
+
PRODUCT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
1029
|
+
PRODUCT_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
1010
1030
|
strategy_name: str
|
|
1011
1031
|
book_id: str
|
|
1012
1032
|
account_id: str
|
|
@@ -1023,7 +1043,11 @@ class StrategySummary(_message.Message):
|
|
|
1023
1043
|
sod_pnl: float
|
|
1024
1044
|
stats: _containers.RepeatedCompositeFieldContainer[StrategyInstrumentStat]
|
|
1025
1045
|
total_instruments: int
|
|
1026
|
-
|
|
1046
|
+
long_amount: float
|
|
1047
|
+
short_amount: float
|
|
1048
|
+
product_id: str
|
|
1049
|
+
product_name: str
|
|
1050
|
+
def __init__(self, strategy_name: _Optional[str] = ..., book_id: _Optional[str] = ..., account_id: _Optional[str] = ..., strategy_id: _Optional[int] = ..., trade_pnl: _Optional[float] = ..., total_pnl: _Optional[float] = ..., trade_amount: _Optional[float] = ..., total_amount: _Optional[float] = ..., fee: _Optional[float] = ..., buy_amount: _Optional[float] = ..., sell_amount: _Optional[float] = ..., buy_pnl: _Optional[float] = ..., sell_pnl: _Optional[float] = ..., sod_pnl: _Optional[float] = ..., stats: _Optional[_Iterable[_Union[StrategyInstrumentStat, _Mapping]]] = ..., total_instruments: _Optional[int] = ..., long_amount: _Optional[float] = ..., short_amount: _Optional[float] = ..., product_id: _Optional[str] = ..., product_name: _Optional[str] = ...) -> None: ...
|
|
1027
1051
|
|
|
1028
1052
|
class Book(_message.Message):
|
|
1029
1053
|
__slots__ = ("book_id", "comments", "settle_currency_id", "exposure", "trade_pnl", "total_pnl", "book_type", "is_auto_hedge", "auto_hedge_strategy_id", "auto_hedge_strategy_name", "strategy_summaries", "last_timestamp", "long_exposure", "short_exposure", "sod_pnl")
|
|
@@ -1430,7 +1454,7 @@ class QrySblListRsp(_message.Message):
|
|
|
1430
1454
|
def __init__(self, msg_type: _Optional[int] = ..., sbl_list: _Optional[_Iterable[_Union[SblList, _Mapping]]] = ..., request_id: _Optional[str] = ..., status: _Optional[int] = ..., reason: _Optional[str] = ..., last_timestamp: _Optional[int] = ...) -> None: ...
|
|
1431
1455
|
|
|
1432
1456
|
class LockSblReq(_message.Message):
|
|
1433
|
-
__slots__ = ("msg_type", "strategy_id", "instrument_id", "lock_qty", "cl_order_id", "last_timestamp", "sbl_id")
|
|
1457
|
+
__slots__ = ("msg_type", "strategy_id", "instrument_id", "lock_qty", "cl_order_id", "last_timestamp", "sbl_id", "intrate")
|
|
1434
1458
|
MSG_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
1435
1459
|
STRATEGY_ID_FIELD_NUMBER: _ClassVar[int]
|
|
1436
1460
|
INSTRUMENT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -1438,6 +1462,7 @@ class LockSblReq(_message.Message):
|
|
|
1438
1462
|
CL_ORDER_ID_FIELD_NUMBER: _ClassVar[int]
|
|
1439
1463
|
LAST_TIMESTAMP_FIELD_NUMBER: _ClassVar[int]
|
|
1440
1464
|
SBL_ID_FIELD_NUMBER: _ClassVar[int]
|
|
1465
|
+
INTRATE_FIELD_NUMBER: _ClassVar[int]
|
|
1441
1466
|
msg_type: int
|
|
1442
1467
|
strategy_id: int
|
|
1443
1468
|
instrument_id: str
|
|
@@ -1445,7 +1470,8 @@ class LockSblReq(_message.Message):
|
|
|
1445
1470
|
cl_order_id: str
|
|
1446
1471
|
last_timestamp: int
|
|
1447
1472
|
sbl_id: str
|
|
1448
|
-
|
|
1473
|
+
intrate: float
|
|
1474
|
+
def __init__(self, msg_type: _Optional[int] = ..., strategy_id: _Optional[int] = ..., instrument_id: _Optional[str] = ..., lock_qty: _Optional[int] = ..., cl_order_id: _Optional[str] = ..., last_timestamp: _Optional[int] = ..., sbl_id: _Optional[str] = ..., intrate: _Optional[float] = ...) -> None: ...
|
|
1449
1475
|
|
|
1450
1476
|
class LockSblRsp(_message.Message):
|
|
1451
1477
|
__slots__ = ("msg_type", "strategy_id", "account_id", "instrument_id", "locked_qty", "intrate", "status", "duration", "reason", "cl_order_id", "last_timestamp", "sbl_id")
|
|
@@ -1512,8 +1538,8 @@ class LockRecord(_message.Message):
|
|
|
1512
1538
|
duration: int
|
|
1513
1539
|
request_time: int
|
|
1514
1540
|
response_time: int
|
|
1515
|
-
counter_order_id:
|
|
1516
|
-
def __init__(self, sbl_id: _Optional[str] = ..., instrument_id: _Optional[str] = ..., locked_qty: _Optional[int] = ..., intrate: _Optional[float] = ..., status: _Optional[int] = ..., reason: _Optional[str] = ..., cl_order_id: _Optional[str] = ..., duration: _Optional[int] = ..., request_time: _Optional[int] = ..., response_time: _Optional[int] = ..., counter_order_id: _Optional[
|
|
1541
|
+
counter_order_id: str
|
|
1542
|
+
def __init__(self, sbl_id: _Optional[str] = ..., instrument_id: _Optional[str] = ..., locked_qty: _Optional[int] = ..., intrate: _Optional[float] = ..., status: _Optional[int] = ..., reason: _Optional[str] = ..., cl_order_id: _Optional[str] = ..., duration: _Optional[int] = ..., request_time: _Optional[int] = ..., response_time: _Optional[int] = ..., counter_order_id: _Optional[str] = ...) -> None: ...
|
|
1517
1543
|
|
|
1518
1544
|
class QryLockRecordRsp(_message.Message):
|
|
1519
1545
|
__slots__ = ("msg_type", "account_id", "strategy_id", "lock_records", "request_id", "status", "reason", "last_timestamp")
|
|
@@ -1588,7 +1614,7 @@ class QryLockPositionRsp(_message.Message):
|
|
|
1588
1614
|
def __init__(self, msg_type: _Optional[int] = ..., strategy_id: _Optional[int] = ..., account_id: _Optional[str] = ..., lock_positions: _Optional[_Iterable[_Union[LockPosition, _Mapping]]] = ..., status: _Optional[int] = ..., reason: _Optional[str] = ..., last_timestamp: _Optional[int] = ..., request_id: _Optional[str] = ...) -> None: ...
|
|
1589
1615
|
|
|
1590
1616
|
class Position(_message.Message):
|
|
1591
|
-
__slots__ = ("account_id", "investor_id", "market", "security_id", "security_type", "symbol", "posi_side", "instrument_id", "sod", "balance", "available", "frozen", "buy_in", "sell_out", "trans_in", "trans_out", "trans_avl", "apply_avl", "cost_price", "realized_pnl", "version", "last_price", "market_value")
|
|
1617
|
+
__slots__ = ("account_id", "investor_id", "market", "security_id", "security_type", "symbol", "posi_side", "instrument_id", "sod", "balance", "available", "frozen", "buy_in", "sell_out", "trans_in", "trans_out", "trans_avl", "apply_avl", "cost_price", "realized_pnl", "version", "last_price", "market_value", "product_id", "product_name")
|
|
1592
1618
|
ACCOUNT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
1593
1619
|
INVESTOR_ID_FIELD_NUMBER: _ClassVar[int]
|
|
1594
1620
|
MARKET_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -1612,6 +1638,8 @@ class Position(_message.Message):
|
|
|
1612
1638
|
VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
1613
1639
|
LAST_PRICE_FIELD_NUMBER: _ClassVar[int]
|
|
1614
1640
|
MARKET_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
1641
|
+
PRODUCT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
1642
|
+
PRODUCT_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
1615
1643
|
account_id: str
|
|
1616
1644
|
investor_id: str
|
|
1617
1645
|
market: str
|
|
@@ -1635,7 +1663,9 @@ class Position(_message.Message):
|
|
|
1635
1663
|
version: int
|
|
1636
1664
|
last_price: float
|
|
1637
1665
|
market_value: float
|
|
1638
|
-
|
|
1666
|
+
product_id: str
|
|
1667
|
+
product_name: str
|
|
1668
|
+
def __init__(self, account_id: _Optional[str] = ..., investor_id: _Optional[str] = ..., market: _Optional[str] = ..., security_id: _Optional[str] = ..., security_type: _Optional[str] = ..., symbol: _Optional[str] = ..., posi_side: _Optional[int] = ..., instrument_id: _Optional[str] = ..., sod: _Optional[int] = ..., balance: _Optional[int] = ..., available: _Optional[int] = ..., frozen: _Optional[int] = ..., buy_in: _Optional[int] = ..., sell_out: _Optional[int] = ..., trans_in: _Optional[int] = ..., trans_out: _Optional[int] = ..., trans_avl: _Optional[int] = ..., apply_avl: _Optional[int] = ..., cost_price: _Optional[float] = ..., realized_pnl: _Optional[float] = ..., version: _Optional[int] = ..., last_price: _Optional[float] = ..., market_value: _Optional[float] = ..., product_id: _Optional[str] = ..., product_name: _Optional[str] = ...) -> None: ...
|
|
1639
1669
|
|
|
1640
1670
|
class PositionQty(_message.Message):
|
|
1641
1671
|
__slots__ = ("type", "qty")
|
|
@@ -2314,7 +2344,7 @@ class PlaceBasketOrderRsp(_message.Message):
|
|
|
2314
2344
|
def __init__(self, msg_type: _Optional[int] = ..., basket_cl_order_id: _Optional[str] = ..., status: _Optional[int] = ..., reason: _Optional[str] = ..., basket_id: _Optional[str] = ..., template_id: _Optional[str] = ..., strategy_id: _Optional[int] = ..., strategy_name: _Optional[str] = ..., side: _Optional[int] = ..., basket_amt: _Optional[float] = ..., trade_amt: _Optional[float] = ..., basket_qty: _Optional[int] = ..., process_qty: _Optional[float] = ..., process_amt: _Optional[float] = ..., create_time: _Optional[int] = ..., algo_type: _Optional[int] = ..., algo_params: _Optional[_Union[AlgoParams, _Mapping]] = ..., order_source: _Optional[str] = ...) -> None: ...
|
|
2315
2345
|
|
|
2316
2346
|
class BasketOrderEvent(_message.Message):
|
|
2317
|
-
__slots__ = ("msg_type", "basket_cl_order_id", "basket_id", "template_id", "status", "strategy_id", "strategy_name", "side", "basket_amt", "trade_amt", "basket_qty", "process_qty", "process_amt", "create_time", "algo_type", "algo_params", "reason", "user_id", "order_qty", "trade_qty", "reject_qty", "cancel_qty")
|
|
2347
|
+
__slots__ = ("msg_type", "basket_cl_order_id", "basket_id", "template_id", "status", "strategy_id", "strategy_name", "side", "basket_amt", "trade_amt", "basket_qty", "process_qty", "process_amt", "create_time", "algo_type", "algo_params", "reason", "user_id", "order_qty", "trade_qty", "reject_qty", "cancel_qty", "order_source")
|
|
2318
2348
|
MSG_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
2319
2349
|
BASKET_CL_ORDER_ID_FIELD_NUMBER: _ClassVar[int]
|
|
2320
2350
|
BASKET_ID_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -2337,6 +2367,7 @@ class BasketOrderEvent(_message.Message):
|
|
|
2337
2367
|
TRADE_QTY_FIELD_NUMBER: _ClassVar[int]
|
|
2338
2368
|
REJECT_QTY_FIELD_NUMBER: _ClassVar[int]
|
|
2339
2369
|
CANCEL_QTY_FIELD_NUMBER: _ClassVar[int]
|
|
2370
|
+
ORDER_SOURCE_FIELD_NUMBER: _ClassVar[int]
|
|
2340
2371
|
msg_type: int
|
|
2341
2372
|
basket_cl_order_id: str
|
|
2342
2373
|
basket_id: str
|
|
@@ -2359,7 +2390,8 @@ class BasketOrderEvent(_message.Message):
|
|
|
2359
2390
|
trade_qty: int
|
|
2360
2391
|
reject_qty: int
|
|
2361
2392
|
cancel_qty: int
|
|
2362
|
-
|
|
2393
|
+
order_source: str
|
|
2394
|
+
def __init__(self, msg_type: _Optional[int] = ..., basket_cl_order_id: _Optional[str] = ..., basket_id: _Optional[str] = ..., template_id: _Optional[str] = ..., status: _Optional[int] = ..., strategy_id: _Optional[int] = ..., strategy_name: _Optional[str] = ..., side: _Optional[int] = ..., basket_amt: _Optional[float] = ..., trade_amt: _Optional[float] = ..., basket_qty: _Optional[int] = ..., process_qty: _Optional[float] = ..., process_amt: _Optional[float] = ..., create_time: _Optional[int] = ..., algo_type: _Optional[int] = ..., algo_params: _Optional[_Union[AlgoParams, _Mapping]] = ..., reason: _Optional[str] = ..., user_id: _Optional[str] = ..., order_qty: _Optional[int] = ..., trade_qty: _Optional[int] = ..., reject_qty: _Optional[int] = ..., cancel_qty: _Optional[int] = ..., order_source: _Optional[str] = ...) -> None: ...
|
|
2363
2395
|
|
|
2364
2396
|
class QryBasketOrderReq(_message.Message):
|
|
2365
2397
|
__slots__ = ("msg_type", "request_id")
|
|
@@ -3956,6 +3988,132 @@ class QryRiskMarketParamsRsp(_message.Message):
|
|
|
3956
3988
|
data: _containers.RepeatedCompositeFieldContainer[RiskMarketParams]
|
|
3957
3989
|
def __init__(self, msg_type: _Optional[int] = ..., request_id: _Optional[str] = ..., status: _Optional[int] = ..., reason: _Optional[str] = ..., is_last: bool = ..., data: _Optional[_Iterable[_Union[RiskMarketParams, _Mapping]]] = ...) -> None: ...
|
|
3958
3990
|
|
|
3991
|
+
class RiskEventResult(_message.Message):
|
|
3992
|
+
__slots__ = ("sno", "account_id", "instrument_id", "node_name", "node_type", "occur_date", "occur_time", "risk_id", "risk_code", "risk_info", "risk_status", "order_action", "order_id", "set_value", "real_value")
|
|
3993
|
+
SNO_FIELD_NUMBER: _ClassVar[int]
|
|
3994
|
+
ACCOUNT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
3995
|
+
INSTRUMENT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
3996
|
+
NODE_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
3997
|
+
NODE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
3998
|
+
OCCUR_DATE_FIELD_NUMBER: _ClassVar[int]
|
|
3999
|
+
OCCUR_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
4000
|
+
RISK_ID_FIELD_NUMBER: _ClassVar[int]
|
|
4001
|
+
RISK_CODE_FIELD_NUMBER: _ClassVar[int]
|
|
4002
|
+
RISK_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
4003
|
+
RISK_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
4004
|
+
ORDER_ACTION_FIELD_NUMBER: _ClassVar[int]
|
|
4005
|
+
ORDER_ID_FIELD_NUMBER: _ClassVar[int]
|
|
4006
|
+
SET_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
4007
|
+
REAL_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
4008
|
+
sno: int
|
|
4009
|
+
account_id: str
|
|
4010
|
+
instrument_id: str
|
|
4011
|
+
node_name: str
|
|
4012
|
+
node_type: int
|
|
4013
|
+
occur_date: str
|
|
4014
|
+
occur_time: str
|
|
4015
|
+
risk_id: int
|
|
4016
|
+
risk_code: str
|
|
4017
|
+
risk_info: str
|
|
4018
|
+
risk_status: int
|
|
4019
|
+
order_action: int
|
|
4020
|
+
order_id: str
|
|
4021
|
+
set_value: float
|
|
4022
|
+
real_value: float
|
|
4023
|
+
def __init__(self, sno: _Optional[int] = ..., account_id: _Optional[str] = ..., instrument_id: _Optional[str] = ..., node_name: _Optional[str] = ..., node_type: _Optional[int] = ..., occur_date: _Optional[str] = ..., occur_time: _Optional[str] = ..., risk_id: _Optional[int] = ..., risk_code: _Optional[str] = ..., risk_info: _Optional[str] = ..., risk_status: _Optional[int] = ..., order_action: _Optional[int] = ..., order_id: _Optional[str] = ..., set_value: _Optional[float] = ..., real_value: _Optional[float] = ...) -> None: ...
|
|
4024
|
+
|
|
4025
|
+
class QryRiskEventResultReq(_message.Message):
|
|
4026
|
+
__slots__ = ("msg_type", "request_id", "account_id")
|
|
4027
|
+
MSG_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
4028
|
+
REQUEST_ID_FIELD_NUMBER: _ClassVar[int]
|
|
4029
|
+
ACCOUNT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
4030
|
+
msg_type: int
|
|
4031
|
+
request_id: str
|
|
4032
|
+
account_id: str
|
|
4033
|
+
def __init__(self, msg_type: _Optional[int] = ..., request_id: _Optional[str] = ..., account_id: _Optional[str] = ...) -> None: ...
|
|
4034
|
+
|
|
4035
|
+
class QryRiskEventResultRsp(_message.Message):
|
|
4036
|
+
__slots__ = ("msg_type", "request_id", "account_id", "status", "reason", "data", "is_last")
|
|
4037
|
+
MSG_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
4038
|
+
REQUEST_ID_FIELD_NUMBER: _ClassVar[int]
|
|
4039
|
+
ACCOUNT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
4040
|
+
STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
4041
|
+
REASON_FIELD_NUMBER: _ClassVar[int]
|
|
4042
|
+
DATA_FIELD_NUMBER: _ClassVar[int]
|
|
4043
|
+
IS_LAST_FIELD_NUMBER: _ClassVar[int]
|
|
4044
|
+
msg_type: int
|
|
4045
|
+
request_id: str
|
|
4046
|
+
account_id: str
|
|
4047
|
+
status: int
|
|
4048
|
+
reason: str
|
|
4049
|
+
data: _containers.RepeatedCompositeFieldContainer[RiskEventResult]
|
|
4050
|
+
is_last: bool
|
|
4051
|
+
def __init__(self, msg_type: _Optional[int] = ..., request_id: _Optional[str] = ..., account_id: _Optional[str] = ..., status: _Optional[int] = ..., reason: _Optional[str] = ..., data: _Optional[_Iterable[_Union[RiskEventResult, _Mapping]]] = ..., is_last: bool = ...) -> None: ...
|
|
4052
|
+
|
|
4053
|
+
class RiskStatInfo(_message.Message):
|
|
4054
|
+
__slots__ = ("market", "account_id", "instrument_id", "stat_mode", "last_timestamp", "total_order_num", "total_cancel_num", "cancel_rate")
|
|
4055
|
+
MARKET_FIELD_NUMBER: _ClassVar[int]
|
|
4056
|
+
ACCOUNT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
4057
|
+
INSTRUMENT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
4058
|
+
STAT_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
4059
|
+
LAST_TIMESTAMP_FIELD_NUMBER: _ClassVar[int]
|
|
4060
|
+
TOTAL_ORDER_NUM_FIELD_NUMBER: _ClassVar[int]
|
|
4061
|
+
TOTAL_CANCEL_NUM_FIELD_NUMBER: _ClassVar[int]
|
|
4062
|
+
CANCEL_RATE_FIELD_NUMBER: _ClassVar[int]
|
|
4063
|
+
market: str
|
|
4064
|
+
account_id: str
|
|
4065
|
+
instrument_id: str
|
|
4066
|
+
stat_mode: int
|
|
4067
|
+
last_timestamp: int
|
|
4068
|
+
total_order_num: int
|
|
4069
|
+
total_cancel_num: int
|
|
4070
|
+
cancel_rate: float
|
|
4071
|
+
def __init__(self, market: _Optional[str] = ..., account_id: _Optional[str] = ..., instrument_id: _Optional[str] = ..., stat_mode: _Optional[int] = ..., last_timestamp: _Optional[int] = ..., total_order_num: _Optional[int] = ..., total_cancel_num: _Optional[int] = ..., cancel_rate: _Optional[float] = ...) -> None: ...
|
|
4072
|
+
|
|
4073
|
+
class QryRiskStatInfoReq(_message.Message):
|
|
4074
|
+
__slots__ = ("msg_type", "request_id", "market", "account_id", "instrument_id")
|
|
4075
|
+
MSG_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
4076
|
+
REQUEST_ID_FIELD_NUMBER: _ClassVar[int]
|
|
4077
|
+
MARKET_FIELD_NUMBER: _ClassVar[int]
|
|
4078
|
+
ACCOUNT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
4079
|
+
INSTRUMENT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
4080
|
+
msg_type: int
|
|
4081
|
+
request_id: str
|
|
4082
|
+
market: str
|
|
4083
|
+
account_id: str
|
|
4084
|
+
instrument_id: str
|
|
4085
|
+
def __init__(self, msg_type: _Optional[int] = ..., request_id: _Optional[str] = ..., market: _Optional[str] = ..., account_id: _Optional[str] = ..., instrument_id: _Optional[str] = ...) -> None: ...
|
|
4086
|
+
|
|
4087
|
+
class QryRiskStatInfoRsp(_message.Message):
|
|
4088
|
+
__slots__ = ("msg_type", "request_id", "market", "account_id", "instrument_id", "status", "reason", "data", "is_last")
|
|
4089
|
+
MSG_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
4090
|
+
REQUEST_ID_FIELD_NUMBER: _ClassVar[int]
|
|
4091
|
+
MARKET_FIELD_NUMBER: _ClassVar[int]
|
|
4092
|
+
ACCOUNT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
4093
|
+
INSTRUMENT_ID_FIELD_NUMBER: _ClassVar[int]
|
|
4094
|
+
STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
4095
|
+
REASON_FIELD_NUMBER: _ClassVar[int]
|
|
4096
|
+
DATA_FIELD_NUMBER: _ClassVar[int]
|
|
4097
|
+
IS_LAST_FIELD_NUMBER: _ClassVar[int]
|
|
4098
|
+
msg_type: int
|
|
4099
|
+
request_id: str
|
|
4100
|
+
market: str
|
|
4101
|
+
account_id: str
|
|
4102
|
+
instrument_id: str
|
|
4103
|
+
status: int
|
|
4104
|
+
reason: str
|
|
4105
|
+
data: _containers.RepeatedCompositeFieldContainer[RiskStatInfo]
|
|
4106
|
+
is_last: bool
|
|
4107
|
+
def __init__(self, msg_type: _Optional[int] = ..., request_id: _Optional[str] = ..., market: _Optional[str] = ..., account_id: _Optional[str] = ..., instrument_id: _Optional[str] = ..., status: _Optional[int] = ..., reason: _Optional[str] = ..., data: _Optional[_Iterable[_Union[RiskStatInfo, _Mapping]]] = ..., is_last: bool = ...) -> None: ...
|
|
4108
|
+
|
|
4109
|
+
class RiskEvent(_message.Message):
|
|
4110
|
+
__slots__ = ("msg_type", "data")
|
|
4111
|
+
MSG_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
4112
|
+
DATA_FIELD_NUMBER: _ClassVar[int]
|
|
4113
|
+
msg_type: int
|
|
4114
|
+
data: RiskEventResult
|
|
4115
|
+
def __init__(self, msg_type: _Optional[int] = ..., data: _Optional[_Union[RiskEventResult, _Mapping]] = ...) -> None: ...
|
|
4116
|
+
|
|
3959
4117
|
class UpdateRiskMarketParamsReq(_message.Message):
|
|
3960
4118
|
__slots__ = ("msg_type", "last_timestamp", "request_id", "operate_type", "risk_params", "account_id")
|
|
3961
4119
|
MSG_TYPE_FIELD_NUMBER: _ClassVar[int]
|
datahub.cp312-win_amd64.pyd
CHANGED
|
Binary file
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
datahub.cp312-win_amd64.pyd,sha256=
|
|
1
|
+
datahub.cp312-win_amd64.pyd,sha256=sZAdKVHk95tZ5sjHpWVNPmrbpgQBNvkgYBgq1WNN6Y8,1803776
|
|
2
2
|
datahub.pyi,sha256=RCXeWHG7NPZBPCR6Kn2tGHTBvItWj8e3_Smus_1ZPGk,1507
|
|
3
3
|
datahub/__init__.pyi,sha256=hX8D9Qd6uPjZiUBd6rIq7Llkt_H4l_RvRXsws3sdYbI,630
|
|
4
4
|
datahub/datacache.pyi,sha256=Z2b3ktYv5t2y9Z1yXn0axbdoV06-GhjJhEIl_Ms-FjU,5044
|
|
5
5
|
datahub/datahub.pyi,sha256=CUApKMxrupjWgB2kz7RyDq2Wl4vjFESmGWfoy9lplqA,50337
|
|
6
6
|
datahub/setting.pyi,sha256=u6gYjjF6r1thSpp2XNMvg_1JUcqB64dRTkNoHlOoKUQ,889
|
|
7
|
-
datahub/ats/client_sdk.pyi,sha256=
|
|
7
|
+
datahub/ats/client_sdk.pyi,sha256=RScBpyY2ML84RBrYt60RnHtodOwWOe5-LbnJ3nFFBGs,8710
|
|
8
8
|
datahub/dbo/database.pyi,sha256=tsGDnI5MCQdvlwDWeDb256bz8Ck6j8SYexIQNbJk7Vw,1654
|
|
9
9
|
datahub/dbo/pg.pyi,sha256=0AA3aK6uLdg9TUypszoF3yVj06xPJzGnkU5cXUJByE4,1894
|
|
10
10
|
datahub/dbo/redis_stream.pyi,sha256=Rd9nvmSvnz4npEfjUyiq6Cw_TO6jtN9mPgwA-7nrO0g,1752
|
|
11
11
|
datahub/dbo/sr.pyi,sha256=zRHnU6QzJE5GS2SbIpd4GK_6f-XkuvBXgfE3YQOZPKE,28550
|
|
12
12
|
datahub/protos/client_msg.pyi,sha256=ftmkInjCGv1DEt477f5dLmRuFdVzrJ40jbOFGr3ZrZU,4063
|
|
13
|
-
datahub/protos/client_pb2.pyi,sha256=
|
|
13
|
+
datahub/protos/client_pb2.pyi,sha256=3LdWOGSmV9vJiGIaaxBBrLpuQdXE4vb92bLvUGToCl8,228911
|
|
14
14
|
datahub/protos/common_pb2.pyi,sha256=KCzIIakHr0iViKFNFcK1ZotkqcQuZ9_XTNIfvyvcSbM,32839
|
|
15
15
|
datahub/protos/management_pb2.pyi,sha256=DtHNxR31C1T4HTUWT7KSsFPMvHiq37u_3G3aO__McA8,23183
|
|
16
16
|
datahub/protos/position_pb2.pyi,sha256=C4FCpOCjQrNtqvtjvxPZFbDG7aWBsjmQEBSzNVmRKp4,32252
|
|
@@ -25,7 +25,7 @@ datahub/utils/sftp.pyi,sha256=qYlQ9nJ_lhZi6pD9Ub0MOAs4zgK8A7XXaQuomR97bLw,1720
|
|
|
25
25
|
datahub/utils/monitor/__init__.pyi,sha256=EOwgf8CbJ4g3iUAaFoR6O-mYemJ9xjP42zlBj2KeA9c,76
|
|
26
26
|
datahub/utils/monitor/base.pyi,sha256=n1dKYK73JJ_7QPkCWFc-6Aj_a16j2z_VBaQ9zkN9A3E,310
|
|
27
27
|
datahub/utils/monitor/feishu.pyi,sha256=GgvJXYeX3cPOQjqpV0GJUr_Ri1_cZe2-viRBkpe6O_g,402
|
|
28
|
-
datahub_binary-1.7.
|
|
29
|
-
datahub_binary-1.7.
|
|
30
|
-
datahub_binary-1.7.
|
|
31
|
-
datahub_binary-1.7.
|
|
28
|
+
datahub_binary-1.7.14.dist-info/METADATA,sha256=_miAm4dijLf0a0bOp31-SRB2MO3XeF42OePUco1fiB8,7903
|
|
29
|
+
datahub_binary-1.7.14.dist-info/WHEEL,sha256=SiQL47otJZO7hmhrbwreq4JNnTfRRNgh4xWPveO13bM,96
|
|
30
|
+
datahub_binary-1.7.14.dist-info/top_level.txt,sha256=J0rzqYfZghMgpObWaPGhQtV88I-KXrgArDvi_ddf6ZA,8
|
|
31
|
+
datahub_binary-1.7.14.dist-info/RECORD,,
|
|
File without changes
|