webull-openapi-python-sdk 2.0.11__py3-none-any.whl → 2.0.12__py3-none-any.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.
- samples/__init__.py +1 -1
- samples/data/data_client.py +120 -0
- webull/__init__.py +1 -1
- webull/core/__init__.py +1 -1
- webull/data/__init__.py +1 -1
- webull/data/data_client.py +2 -0
- webull/data/quotes/fundamentals.py +335 -0
- webull/data/quotes/screener.py +88 -0
- webull/data/request/get_capital_flow_request.py +35 -0
- webull/data/request/get_dividend_calendar_request.py +31 -0
- webull/data/request/get_earnings_calendar_request.py +31 -0
- webull/data/request/get_financials_alert_request.py +31 -0
- webull/data/request/get_financials_balance_sheet_request.py +39 -0
- webull/data/request/get_financials_cashflow_request.py +39 -0
- webull/data/request/get_financials_income_request.py +39 -0
- webull/data/request/get_financials_indicators_request.py +39 -0
- webull/data/request/get_forecast_eps_request.py +31 -0
- webull/data/request/get_fund_allocation_request.py +31 -0
- webull/data/request/get_fund_brief_request.py +31 -0
- webull/data/request/get_fund_dividends_request.py +39 -0
- webull/data/request/get_fund_files_request.py +31 -0
- webull/data/request/get_fund_holdings_request.py +31 -0
- webull/data/request/get_fund_net_value_request.py +39 -0
- webull/data/request/get_fund_performance_request.py +31 -0
- webull/data/request/get_fund_rating_request.py +31 -0
- webull/data/request/get_fund_splits_request.py +31 -0
- webull/data/request/get_industry_comparison_request.py +35 -0
- webull/data/request/get_sec_filings_request.py +31 -0
- webull/data/request/screener/get_52whl_request.py +47 -0
- webull/data/request/screener/get_high_dividend_request.py +43 -0
- webull/data/request/screener/get_market_sectors_detail_request.py +51 -0
- webull/data/request/screener/get_market_sectors_request.py +47 -0
- webull/trade/__init__.py +1 -1
- {webull_openapi_python_sdk-2.0.11.dist-info → webull_openapi_python_sdk-2.0.12.dist-info}/METADATA +1 -1
- {webull_openapi_python_sdk-2.0.11.dist-info → webull_openapi_python_sdk-2.0.12.dist-info}/RECORD +39 -14
- {webull_openapi_python_sdk-2.0.11.dist-info → webull_openapi_python_sdk-2.0.12.dist-info}/WHEEL +0 -0
- {webull_openapi_python_sdk-2.0.11.dist-info → webull_openapi_python_sdk-2.0.12.dist-info}/licenses/LICENSE +0 -0
- {webull_openapi_python_sdk-2.0.11.dist-info → webull_openapi_python_sdk-2.0.12.dist-info}/licenses/NOTICE +0 -0
- {webull_openapi_python_sdk-2.0.11.dist-info → webull_openapi_python_sdk-2.0.12.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Copyright 2022 Webull
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
# coding=utf-8
|
|
16
|
+
|
|
17
|
+
from webull.core.request import ApiRequest
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class GetHighDividendRequest(ApiRequest):
|
|
21
|
+
def __init__(self):
|
|
22
|
+
ApiRequest.__init__(self, "/openapi/market-data/screener/high-dividend", version='v2', method="GET",
|
|
23
|
+
query_params={})
|
|
24
|
+
|
|
25
|
+
def set_category(self, category):
|
|
26
|
+
if category:
|
|
27
|
+
self.add_query_param("category", category)
|
|
28
|
+
|
|
29
|
+
def set_sort_by(self, sort_by):
|
|
30
|
+
if sort_by:
|
|
31
|
+
self.add_query_param("sort_by", sort_by)
|
|
32
|
+
|
|
33
|
+
def set_page_index(self, page_index):
|
|
34
|
+
if page_index:
|
|
35
|
+
self.add_query_param("page_index", page_index)
|
|
36
|
+
|
|
37
|
+
def set_page_size(self, page_size):
|
|
38
|
+
if page_size:
|
|
39
|
+
self.add_query_param("page_size", page_size)
|
|
40
|
+
|
|
41
|
+
def set_direction(self, direction):
|
|
42
|
+
if direction:
|
|
43
|
+
self.add_query_param("direction", direction)
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Copyright 2022 Webull
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
# coding=utf-8
|
|
16
|
+
|
|
17
|
+
from webull.core.request import ApiRequest
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class GetMarketSectorsDetailRequest(ApiRequest):
|
|
21
|
+
def __init__(self):
|
|
22
|
+
ApiRequest.__init__(self, "/openapi/market-data/screener/market-sectors-detail", version='v2', method="GET",
|
|
23
|
+
query_params={})
|
|
24
|
+
|
|
25
|
+
def set_sector_id(self, sector_id):
|
|
26
|
+
if sector_id:
|
|
27
|
+
self.add_query_param("sector_id", sector_id)
|
|
28
|
+
|
|
29
|
+
def set_category(self, category):
|
|
30
|
+
if category:
|
|
31
|
+
self.add_query_param("category", category)
|
|
32
|
+
|
|
33
|
+
def set_period(self, period):
|
|
34
|
+
if period:
|
|
35
|
+
self.add_query_param("period", period)
|
|
36
|
+
|
|
37
|
+
def set_page_index(self, page_index):
|
|
38
|
+
if page_index:
|
|
39
|
+
self.add_query_param("page_index", page_index)
|
|
40
|
+
|
|
41
|
+
def set_page_size(self, page_size):
|
|
42
|
+
if page_size:
|
|
43
|
+
self.add_query_param("page_size", page_size)
|
|
44
|
+
|
|
45
|
+
def set_sort_by(self, sort_by):
|
|
46
|
+
if sort_by:
|
|
47
|
+
self.add_query_param("sort_by", sort_by)
|
|
48
|
+
|
|
49
|
+
def set_direction(self, direction):
|
|
50
|
+
if direction:
|
|
51
|
+
self.add_query_param("direction", direction)
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Copyright 2022 Webull
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
# coding=utf-8
|
|
16
|
+
|
|
17
|
+
from webull.core.request import ApiRequest
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class GetMarketSectorsRequest(ApiRequest):
|
|
21
|
+
def __init__(self):
|
|
22
|
+
ApiRequest.__init__(self, "/openapi/market-data/screener/market-sectors", version='v2', method="GET",
|
|
23
|
+
query_params={})
|
|
24
|
+
|
|
25
|
+
def set_category(self, category):
|
|
26
|
+
if category:
|
|
27
|
+
self.add_query_param("category", category)
|
|
28
|
+
|
|
29
|
+
def set_agg_type(self, agg_type):
|
|
30
|
+
if agg_type:
|
|
31
|
+
self.add_query_param("agg_type", agg_type)
|
|
32
|
+
|
|
33
|
+
def set_period(self, period):
|
|
34
|
+
if period:
|
|
35
|
+
self.add_query_param("period", period)
|
|
36
|
+
|
|
37
|
+
def set_page_index(self, page_index):
|
|
38
|
+
if page_index:
|
|
39
|
+
self.add_query_param("page_index", page_index)
|
|
40
|
+
|
|
41
|
+
def set_page_size(self, page_size):
|
|
42
|
+
if page_size:
|
|
43
|
+
self.add_query_param("page_size", page_size)
|
|
44
|
+
|
|
45
|
+
def set_direction(self, direction):
|
|
46
|
+
if direction:
|
|
47
|
+
self.add_query_param("direction", direction)
|
webull/trade/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '2.0.
|
|
1
|
+
__version__ = '2.0.12'
|
{webull_openapi_python_sdk-2.0.11.dist-info → webull_openapi_python_sdk-2.0.12.dist-info}/RECORD
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
samples/__init__.py,sha256=
|
|
1
|
+
samples/__init__.py,sha256=RRwLT6p4EVy1Jtdz4OMtNbu7xEdpC4gTRQ0zWltm1MQ,23
|
|
2
2
|
samples/account/__init__.py,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
3
3
|
samples/account/account_client.py,sha256=vwh-nI_JnjwcIeOr1sQPMzG8pAqZwliUusE49ZmYE3s,1796
|
|
4
4
|
samples/assets/__init__.py,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
5
5
|
samples/assets/assets_client.py,sha256=p9LS2Td3gbUMkHn4LD_9RMCFuaQRUbsKvG4PhZBGJDc,1974
|
|
6
6
|
samples/data/__init__.py,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
7
|
-
samples/data/data_client.py,sha256=
|
|
7
|
+
samples/data/data_client.py,sha256=amhccRnIlpP9QDb5yB8vtvWKQgqPbEigABfjlSWON2I,12411
|
|
8
8
|
samples/data/data_client_event.py,sha256=u6Bebo2hTE0Ri1bQHa8nhFEe-fBbdxfNwLpTZh3E1WY,3046
|
|
9
9
|
samples/data/data_streaming_client.py,sha256=2da21SE_Mneo7zbM_l1rkpdBBbI4avrpnSPMxsZIalw,4085
|
|
10
10
|
samples/data/data_streaming_client_async.py,sha256=o_u1ch8JdbcYnLCvDCCUzO-Z1IG7BUKncu_GB_kCbOs,4443
|
|
@@ -22,8 +22,8 @@ samples/trade/trade_client_v3_event.py,sha256=91HlT04KlK8Q5gUnsB8F5ErCFdJRnpDABK
|
|
|
22
22
|
samples/trade/trade_event_client.py,sha256=BWdD1L41LXmDlaig6ku9T3t3fSCCZEdj5nxH1xI1AZA,2653
|
|
23
23
|
samples/watchlist/__init__.py,sha256=rtV5s4_CJgDAT4DGEJa_pNLJU71Wdr5OLz_IQ1EajFQ,567
|
|
24
24
|
samples/watchlist/watchlist_client.py,sha256=lpzJs7SXuSka2KKkJ0u9s83A9iHta5qrjvIdkbfNcwg,3246
|
|
25
|
-
webull/__init__.py,sha256=
|
|
26
|
-
webull/core/__init__.py,sha256=
|
|
25
|
+
webull/__init__.py,sha256=RRwLT6p4EVy1Jtdz4OMtNbu7xEdpC4gTRQ0zWltm1MQ,23
|
|
26
|
+
webull/core/__init__.py,sha256=7GjyCroCZNfqvAsrpXggx5gEix62mf-KiQnxescdKPE,226
|
|
27
27
|
webull/core/client.py,sha256=zxSBiII9KDxc5tHpTerJfV_PKPt8E9e3oTOpiakAtJw,16758
|
|
28
28
|
webull/core/compat.py,sha256=_r6Y_f3vTo_DoxOaCvLjnvOo1KRkD2Z9kXSh8OijEIA,3088
|
|
29
29
|
webull/core/headers.py,sha256=Wj2zev1XYyYsy2b9YKnoK3GqjVsXZO_o2WziMmuVBTw,2061
|
|
@@ -89,8 +89,8 @@ webull/core/utils/common.py,sha256=T5VVcYQVhA9fhiUHZN9gBuoh0uzVgbCM01o1qK08NAE,2
|
|
|
89
89
|
webull/core/utils/data.py,sha256=YUyoWY68_2RkKanh3jsDscgGx__FIPh5VNEGXr1Qotc,852
|
|
90
90
|
webull/core/utils/desensitize.py,sha256=f8_ps9BrG3WfXD8ZAw873-_YoGeke1Q55CeDwRmYkqA,1104
|
|
91
91
|
webull/core/utils/validation.py,sha256=gJcIrHYtgo48yVJ0q6O-f5buTYWOcr6ShhDIBhTp-Yg,1957
|
|
92
|
-
webull/data/__init__.py,sha256=
|
|
93
|
-
webull/data/data_client.py,sha256=
|
|
92
|
+
webull/data/__init__.py,sha256=tdVEX3AOmd6xefuH0MbcmWzpkGJBiPH9YyyjUbQm2Dw,39
|
|
93
|
+
webull/data/data_client.py,sha256=FzatKHXgu5xv-FKFaX-mFYdhLTdz7zpRUox9AGWrReQ,2429
|
|
94
94
|
webull/data/data_streaming_client.py,sha256=TQBAilvOLCbcMqacByrniXGr9VjSwjym-4-LUOiqKx8,4456
|
|
95
95
|
webull/data/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
96
|
webull/data/common/category.py,sha256=8mtq9J9aiNan1CkwgfqRnggdH0tENyhJBJ2HI3EkUHE,978
|
|
@@ -114,12 +114,13 @@ webull/data/internal/quotes_topic.py,sha256=kG4RZTjj01U0e54qoOrJHlLrPeBzXekySasm
|
|
|
114
114
|
webull/data/quotes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
115
|
webull/data/quotes/crypto_market_data.py,sha256=UQlxUz0GntvwcRS-Vh_h7cXbhQ045MqPlG5AhWUoQI4,3063
|
|
116
116
|
webull/data/quotes/event_market_data.py,sha256=lARSHqnVxRZZNOIi9uP-Rs5StMIUWtmwrw-p8droqtc,4650
|
|
117
|
+
webull/data/quotes/fundamentals.py,sha256=Dod6lcTwPDvyOjFQxDwW6GrIoDAknIGZOL1M9VRRdX4,14597
|
|
117
118
|
webull/data/quotes/futures_market_data.py,sha256=fc9giYNy1LcdLHOJV31zMbPBKtWDH8kBW5xRFgHzQUA,5596
|
|
118
119
|
webull/data/quotes/instrument.py,sha256=BHQ4INg3ct2b0E22E6IHMtYz47q8hA3HIf1wzbw6Ns4,12665
|
|
119
120
|
webull/data/quotes/market_data.py,sha256=L7f5V5tmG01lev9-IJU3w6up7EnX42WfI7GtW2mEcw8,14748
|
|
120
121
|
webull/data/quotes/market_streaming_data.py,sha256=cI9xxGpKV_KDS8cgh9azHifBji0yeSuKmH7Jxaqij38,3139
|
|
121
122
|
webull/data/quotes/option_market_data.py,sha256=4fW_GI3u1T-5dluhLRQ60Gbb2bsnhWkSrILYJq-96pw,3305
|
|
122
|
-
webull/data/quotes/screener.py,sha256=
|
|
123
|
+
webull/data/quotes/screener.py,sha256=h73YyhW6jBkJH1NvDOceR5lePRXGgtiWrLKQwbn9pAU,9831
|
|
123
124
|
webull/data/quotes/watchlist.py,sha256=RkuPV7OwC6e4NEpeldTUNWEsYAqGQbVqyOHs9edMuhE,6344
|
|
124
125
|
webull/data/quotes/subscribe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
126
|
webull/data/quotes/subscribe/ask_bid_result.py,sha256=J6Ms_01a44IvzNcw9krwMM0CuA_-zh-5eBGqx2kQbv4,1759
|
|
@@ -144,11 +145,14 @@ webull/data/request/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
144
145
|
webull/data/request/get_analyst_rating_request.py,sha256=NUkEiWo7xZu9uRsve2RMWyNRxAiLQssDi73YS8qkH8M,1216
|
|
145
146
|
webull/data/request/get_analyst_target_price_request.py,sha256=QQZ5XlkGFaGsC5TSlrXiCDrsTpy8GxADxIFdfUvNYwE,1227
|
|
146
147
|
webull/data/request/get_batch_historical_bars_request.py,sha256=2VUAzZPyZVZ-PBrhQCbzqYw2nnrwpgdoLSia5CroQAw,2209
|
|
148
|
+
webull/data/request/get_capital_flow_request.py,sha256=twq5fwvUrKJ-fgJz6FTtsq2tKJTtsM0CZ41x9x8c5yg,1164
|
|
147
149
|
webull/data/request/get_company_profile_request.py,sha256=oTh3735vgeslPGdXhuwC7qNe4KRJollOXzJcOUtAW0Q,1218
|
|
148
150
|
webull/data/request/get_corp_action_request.py,sha256=6Ssnn0bZNQfFBt8Asl2DzHMBaXEOA2CZHUWGdA87Uik,1851
|
|
149
151
|
webull/data/request/get_crypto_historical_bars_request.py,sha256=FKIp2hB2fPbkMLxHJ3cFrGlLCd4K9zuhNuyBwBeb5SM,1476
|
|
150
152
|
webull/data/request/get_crypto_instruments_request.py,sha256=GwOA9oPBH4qNg7yR-lVjrRSGZDF5zfRUBS4PegKLcjk,1549
|
|
151
153
|
webull/data/request/get_crypto_snapshot_request.py,sha256=W-z9nuBu2RaXqy07zFVHMQs9GP5Hc55vOWWYKoibWVA,1136
|
|
154
|
+
webull/data/request/get_dividend_calendar_request.py,sha256=9rPRlmn1Rq1qdfOOe_HgYUsqx64UZWzmIKQmHllMx5Q,1074
|
|
155
|
+
webull/data/request/get_earnings_calendar_request.py,sha256=WB13hKNO-S3wCI9XH0sfuHhtK_4CsDW62a3ZgUow9no,1074
|
|
152
156
|
webull/data/request/get_eod_bars_request.py,sha256=CwbyXeAE-iPKu43zNxcekSw5qOlfEwZsztFxCQvAXuQ,1234
|
|
153
157
|
webull/data/request/get_event_bars_request.py,sha256=fsZkmPQoUIhRZnWr7CUR2PZl9f7ciNdO2i8t8xotDYU,1505
|
|
154
158
|
webull/data/request/get_event_depth_request.py,sha256=g0WzBAc7ab8TdYFJ1EWs9KxOvkrXcvuQrDSS-hNrOkQ,1079
|
|
@@ -158,7 +162,22 @@ webull/data/request/get_event_series_categories.py,sha256=Q-ZDjSPYHIdtnE-qtXowUw
|
|
|
158
162
|
webull/data/request/get_event_series_request.py,sha256=tuhG-EyXTqA6HiDslVGr9r96IEvop4zbxDjHg1tWt8g,1344
|
|
159
163
|
webull/data/request/get_event_snapshot_request.py,sha256=rQzdZWQ7eFohYMYmWaZInmdpyNi6rR5KhxgDOPlr_Wc,1133
|
|
160
164
|
webull/data/request/get_event_tick_request.py,sha256=DCoj_arn2L6KQLnolAXmBsrUAQwEdwD8wBRssdq4AEA,1077
|
|
165
|
+
webull/data/request/get_financials_alert_request.py,sha256=xliiZamL9OxBC93Vdm73b7GH32UBSQGXplEdqsv0o10,1065
|
|
166
|
+
webull/data/request/get_financials_balance_sheet_request.py,sha256=9jl6UvwXnO6yfJr0TAv6E3PovyztXsuAMX2Zv2lW_iM,1275
|
|
167
|
+
webull/data/request/get_financials_cashflow_request.py,sha256=MhwzvtVW40yhk2YMbkpFVypNMK-RwDSHlmrdKq_qFYY,1267
|
|
168
|
+
webull/data/request/get_financials_income_request.py,sha256=B2l3e8bmWTGwP0u-UejHBJRi9nH4L4-SZgSbUNpj9Jo,1262
|
|
169
|
+
webull/data/request/get_financials_indicators_request.py,sha256=gTJ-N8XBKkZfKrc_Zo2Mdy2GP8viGU7ppAUVVdl_Gyc,1270
|
|
161
170
|
webull/data/request/get_footprint_request.py,sha256=MnbKhhe7QMkKqyTxmXl-ztDl5l_3kkFhT1vtql82K3Y,1664
|
|
171
|
+
webull/data/request/get_forecast_eps_request.py,sha256=xz3-uOgM5ZXT0O8N9EG4OVbxl5-w-Xabys0kx54b6Xw,1064
|
|
172
|
+
webull/data/request/get_fund_allocation_request.py,sha256=iJ4PcZCmsJ_qqD2qKfmr6WA1l11onBzRhHaSWvCiB9k,1064
|
|
173
|
+
webull/data/request/get_fund_brief_request.py,sha256=KjFzq5LtU5RKFtRxhH4-aE0rbtFWrUUodJNs6IYAaqw,1054
|
|
174
|
+
webull/data/request/get_fund_dividends_request.py,sha256=3Wbzz4mHb9E0XaXd_RGLt7y0QR7sxga5uC6xFZL_shs,1307
|
|
175
|
+
webull/data/request/get_fund_files_request.py,sha256=Fq3RjAKlm-R-KCOjdKrz4LGzQPZVKxzH-R4PoiwljDo,1054
|
|
176
|
+
webull/data/request/get_fund_holdings_request.py,sha256=XiHv6cNQ_reyO_x4BvWPJEGF_vVYl7RLEp9z3l2qogk,1060
|
|
177
|
+
webull/data/request/get_fund_net_value_request.py,sha256=KXkHJlmETNT3mdMYRlidcR6XAtinjHc7Qvo3miPH7WA,1281
|
|
178
|
+
webull/data/request/get_fund_performance_request.py,sha256=ZUXgPJdwmB0AHaRBuAcxNzyT0IWGvuNRJeuz-ckhqDw,1066
|
|
179
|
+
webull/data/request/get_fund_rating_request.py,sha256=ImiTOcy184DXPRSypV8NGbjwqQekmbrgrmwI-2ZI_4U,1056
|
|
180
|
+
webull/data/request/get_fund_splits_request.py,sha256=plyqtCnpqfBAZV3wyYITizrQLA4y9BCbDB4T_ToIt5o,1056
|
|
162
181
|
webull/data/request/get_futures_depth_request.py,sha256=d6Tl-75pcJlvX6-beAdko15o8hDhdB-486uxH8AeGIk,1083
|
|
163
182
|
webull/data/request/get_futures_footprint_request.py,sha256=I0l-SlXBKqY61Oxq1zn1EWwLY79euuEoUcrvCzPJlA8,1673
|
|
164
183
|
webull/data/request/get_futures_historical_bars_request.py,sha256=QwvJq33wkJ-_KLZutkh3Z55gQyCDTRkCPwc9UyYcvKU,1330
|
|
@@ -169,6 +188,7 @@ webull/data/request/get_futures_products_request.py,sha256=jPl7ty1-fACSZEH_qFfAs
|
|
|
169
188
|
webull/data/request/get_futures_snapshot_request.py,sha256=wV9xm4RwKavdIF93c1llDk0WY4_VAkbeyllIzzw47So,1137
|
|
170
189
|
webull/data/request/get_futures_tick_request.py,sha256=ZFbwTGGjoGr02k-QHhD-3RmrtBuR7LyzEQf0a22RENE,1059
|
|
171
190
|
webull/data/request/get_historical_bars_request.py,sha256=xClCvnUyzfj9DeCxxOGzs0yJ6S9ZCHaxE3PMqaAbh2o,2199
|
|
191
|
+
webull/data/request/get_industry_comparison_request.py,sha256=BIrwWXQQNizxgDGKhT8VFtAhGS8kUiy3Mw-11U5ETAU,1188
|
|
172
192
|
webull/data/request/get_instruments_request.py,sha256=PmDXrv9hUTHNtwppjV6GMQqTcNPFFVG_LAbW2Ub4cvw,1520
|
|
173
193
|
webull/data/request/get_noii_bars_request.py,sha256=_ubNykIQCCDg9cRgeR49FVloF21s2REWlp_KTnUlYEg,1845
|
|
174
194
|
webull/data/request/get_noii_snapshot_request.py,sha256=IQ2HrAyyO2GzC8HEsjz4S0Owc0Zk25d-1ULjTqThmZU,2057
|
|
@@ -176,12 +196,17 @@ webull/data/request/get_option_bars_request.py,sha256=ObE4blYHZ_OcKG8Cp6St7ujDTI
|
|
|
176
196
|
webull/data/request/get_option_snapshot_request.py,sha256=XHmtHKN8fF6-rIWfstFr_bLFtgEIx-u61H6Y7WnOrlE,1816
|
|
177
197
|
webull/data/request/get_option_tick_request.py,sha256=MuSFYnM8m1UwOJ2NjzhOJYlWhbYDyiqPbNkKoPQUupI,1648
|
|
178
198
|
webull/data/request/get_quotes_request.py,sha256=g4J7lAQZBqoeM67Xm2E-Y2pwNxsqkrECf_r5DTTrS5M,1244
|
|
199
|
+
webull/data/request/get_sec_filings_request.py,sha256=RKPwThgPB5nx8UftP21wrWNur_K5LpJNMqChLLCwQdI,1058
|
|
179
200
|
webull/data/request/get_snapshot_request.py,sha256=OD2PiaxmBCboFDaU8DFTwvfNd2zObYSnPfl1fa49DIs,1471
|
|
180
201
|
webull/data/request/get_tick_request.py,sha256=rUHhQgC8Z_6ensLyCkg3DDK55SlEi0Bc_dhpCIIspDs,1366
|
|
181
202
|
webull/data/request/subscribe_request.py,sha256=2OPi0ssYvACTfCag8nb7EoyQJb-iGXZojUhopS80sLQ,1507
|
|
182
203
|
webull/data/request/unsubscribe_request.py,sha256=GTfPNk-b11OcHIK8zzTv9gM_8ABD2JDAiPPkPyfgy30,1482
|
|
183
204
|
webull/data/request/screener/__init__.py,sha256=68et0-FOloDo6Yo6vqmHPM45z-8zorzbhrZmUrLApEQ,583
|
|
205
|
+
webull/data/request/screener/get_52whl_request.py,sha256=rtydYR4LGPT2tj-vqs84HNHiQIqEZAeM9ZkUqBl8LiE,1543
|
|
184
206
|
webull/data/request/screener/get_gainers_losers_request.py,sha256=uXqTzbx1kkkuhFefyIBuO1JAsDyXtycTwTnmwc9EPxE,3733
|
|
207
|
+
webull/data/request/screener/get_high_dividend_request.py,sha256=-JZWLMOk_H7kjEKy1Tlnv66A94RTqOS6LqlQ5OXqPb4,1438
|
|
208
|
+
webull/data/request/screener/get_market_sectors_detail_request.py,sha256=ArgFD2Pqloc5i2ePXVLDvojYKvNTlztAYiD45iNWR_s,1678
|
|
209
|
+
webull/data/request/screener/get_market_sectors_request.py,sha256=xW78pN6_VVUil8KDLP3yccFdKRkuv2hID8xkeAQI6_k,1550
|
|
185
210
|
webull/data/request/screener/get_most_active_request.py,sha256=64NC3VR50-H1YXCqOkkYo7DPu7qSkPSUh8ZI7av-zGw,3793
|
|
186
211
|
webull/data/request/watchlist/__init__.py,sha256=rtV5s4_CJgDAT4DGEJa_pNLJU71Wdr5OLz_IQ1EajFQ,567
|
|
187
212
|
webull/data/request/watchlist/add_watchlist_instruments_request.py,sha256=6q6u1Y4cfjTUujugC9EZJiFMOLfv_-SEDD_u5cu8yTE,1488
|
|
@@ -192,7 +217,7 @@ webull/data/request/watchlist/get_watchlist_request.py,sha256=XxzS4gxFbdQSajpFSm
|
|
|
192
217
|
webull/data/request/watchlist/remove_watchlist_instruments_request.py,sha256=qOtQYDBp-PSawAgljnLmtfUce8dAblWI_zB0nnIv3G0,1451
|
|
193
218
|
webull/data/request/watchlist/update_watchlist_instruments_request.py,sha256=KoihfB8MszsAooQGUUMjFmnid_a7xk4YSdEMDO1gh-k,1493
|
|
194
219
|
webull/data/request/watchlist/update_watchlist_request.py,sha256=0s3ftkxiz9hjtXhLORrIUphyDIldRA8pJ4mP5zfbsyU,1466
|
|
195
|
-
webull/trade/__init__.py,sha256=
|
|
220
|
+
webull/trade/__init__.py,sha256=Ast7uVPztIC3X6Smxn3jnx9xmlIl0IpX3UNDj0m_wTQ,22
|
|
196
221
|
webull/trade/trade_client.py,sha256=_6lH4KO-jKgKWU28fWNsc9-KEHto-WvaP0gT96BJ_dw,2184
|
|
197
222
|
webull/trade/trade_events_client.py,sha256=G9ovuxrnQh8iA1so2Ar-41jWRzDCYQYSHTkQLGlwhhA,9983
|
|
198
223
|
webull/trade/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -274,9 +299,9 @@ webull/trade/trade/v2/account_info_v2.py,sha256=fs2-XaxklItuhaspzPkthXA5SgbnIffL
|
|
|
274
299
|
webull/trade/trade/v2/order_operation_v2.py,sha256=m54RH2j45CBBWEnqe4KxrsltAF44XKtPMT4kv8t7djQ,12745
|
|
275
300
|
webull/trade/trade/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
276
301
|
webull/trade/trade/v3/order_opration_v3.py,sha256=NsInXC5sPCW8y55jU71BnR0sQYhtWclqCmyK7V09MLc,8275
|
|
277
|
-
webull_openapi_python_sdk-2.0.
|
|
278
|
-
webull_openapi_python_sdk-2.0.
|
|
279
|
-
webull_openapi_python_sdk-2.0.
|
|
280
|
-
webull_openapi_python_sdk-2.0.
|
|
281
|
-
webull_openapi_python_sdk-2.0.
|
|
282
|
-
webull_openapi_python_sdk-2.0.
|
|
302
|
+
webull_openapi_python_sdk-2.0.12.dist-info/licenses/LICENSE,sha256=ALOnsLtb1aHxmDJg3-oMi0BO-i-cjfyZaOBfnnavKMc,11359
|
|
303
|
+
webull_openapi_python_sdk-2.0.12.dist-info/licenses/NOTICE,sha256=X5TApte6CPV10b96Cb70IRLusXmiRmK_R-dB-1tQM_I,2018
|
|
304
|
+
webull_openapi_python_sdk-2.0.12.dist-info/METADATA,sha256=suQHI55MCoTax2Gh12BxlA2z1aQ0NvxDiHzvWEs-UCc,1033
|
|
305
|
+
webull_openapi_python_sdk-2.0.12.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
306
|
+
webull_openapi_python_sdk-2.0.12.dist-info/top_level.txt,sha256=h8pEjNDGWS2ZUZ2vYFpUShoMQT0ZRIQaD57QJWD8_aI,15
|
|
307
|
+
webull_openapi_python_sdk-2.0.12.dist-info/RECORD,,
|
{webull_openapi_python_sdk-2.0.11.dist-info → webull_openapi_python_sdk-2.0.12.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|