webull-openapi-python-sdk 1.0.0__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.
Files changed (295) hide show
  1. samples/__init__.py +1 -0
  2. samples/data/__init__.py +1 -0
  3. samples/data/data_client.py +57 -0
  4. samples/data/data_streaming_client.py +86 -0
  5. samples/data/data_streaming_client_async.py +101 -0
  6. samples/trade/__init__.py +0 -0
  7. samples/trade/trade_client.py +163 -0
  8. samples/trade/trade_client_v2.py +181 -0
  9. samples/trade/trade_event_client.py +47 -0
  10. webull/__init__.py +1 -0
  11. webull/core/__init__.py +12 -0
  12. webull/core/auth/__init__.py +0 -0
  13. webull/core/auth/algorithm/__init__.py +0 -0
  14. webull/core/auth/algorithm/sha_hmac1.py +65 -0
  15. webull/core/auth/algorithm/sha_hmac256.py +75 -0
  16. webull/core/auth/composer/__init__.py +0 -0
  17. webull/core/auth/composer/default_signature_composer.py +125 -0
  18. webull/core/auth/credentials.py +46 -0
  19. webull/core/auth/signers/__init__.py +0 -0
  20. webull/core/auth/signers/app_key_signer.py +72 -0
  21. webull/core/auth/signers/signer.py +48 -0
  22. webull/core/auth/signers/signer_factory.py +58 -0
  23. webull/core/cache/__init__.py +225 -0
  24. webull/core/client.py +410 -0
  25. webull/core/common/__init__.py +0 -0
  26. webull/core/common/api_type.py +19 -0
  27. webull/core/common/easy_enum.py +35 -0
  28. webull/core/common/region.py +7 -0
  29. webull/core/compat.py +85 -0
  30. webull/core/context/__init__.py +0 -0
  31. webull/core/context/request_context_holder.py +33 -0
  32. webull/core/data/endpoints.json +22 -0
  33. webull/core/data/retry_config.json +15 -0
  34. webull/core/endpoint/__init__.py +8 -0
  35. webull/core/endpoint/chained_endpoint_resolver.py +57 -0
  36. webull/core/endpoint/default_endpoint_resolver.py +60 -0
  37. webull/core/endpoint/local_config_regional_endpoint_resolver.py +77 -0
  38. webull/core/endpoint/resolver_endpoint_request.py +46 -0
  39. webull/core/endpoint/user_customized_endpoint_resolver.py +55 -0
  40. webull/core/exception/__init__.py +0 -0
  41. webull/core/exception/error_code.py +23 -0
  42. webull/core/exception/error_msg.py +21 -0
  43. webull/core/exception/exceptions.py +53 -0
  44. webull/core/headers.py +57 -0
  45. webull/core/http/__init__.py +0 -0
  46. webull/core/http/initializer/__init__.py +0 -0
  47. webull/core/http/initializer/client_initializer.py +79 -0
  48. webull/core/http/initializer/token/__init__.py +0 -0
  49. webull/core/http/initializer/token/bean/__init__.py +0 -0
  50. webull/core/http/initializer/token/bean/access_token.py +40 -0
  51. webull/core/http/initializer/token/bean/check_token_request.py +44 -0
  52. webull/core/http/initializer/token/bean/create_token_request.py +45 -0
  53. webull/core/http/initializer/token/bean/refresh_token_request.py +44 -0
  54. webull/core/http/initializer/token/token_manager.py +208 -0
  55. webull/core/http/initializer/token/token_operation.py +72 -0
  56. webull/core/http/method_type.py +43 -0
  57. webull/core/http/protocol_type.py +43 -0
  58. webull/core/http/request.py +121 -0
  59. webull/core/http/response.py +166 -0
  60. webull/core/request.py +278 -0
  61. webull/core/retry/__init__.py +0 -0
  62. webull/core/retry/backoff_strategy.py +102 -0
  63. webull/core/retry/retry_condition.py +214 -0
  64. webull/core/retry/retry_policy.py +63 -0
  65. webull/core/retry/retry_policy_context.py +51 -0
  66. webull/core/utils/__init__.py +0 -0
  67. webull/core/utils/common.py +62 -0
  68. webull/core/utils/data.py +25 -0
  69. webull/core/utils/desensitize.py +33 -0
  70. webull/core/utils/validation.py +49 -0
  71. webull/core/vendored/__init__.py +0 -0
  72. webull/core/vendored/requests/__init__.py +94 -0
  73. webull/core/vendored/requests/__version__.py +28 -0
  74. webull/core/vendored/requests/_internal_utils.py +56 -0
  75. webull/core/vendored/requests/adapters.py +539 -0
  76. webull/core/vendored/requests/api.py +166 -0
  77. webull/core/vendored/requests/auth.py +307 -0
  78. webull/core/vendored/requests/certs.py +34 -0
  79. webull/core/vendored/requests/compat.py +85 -0
  80. webull/core/vendored/requests/cookies.py +555 -0
  81. webull/core/vendored/requests/exceptions.py +136 -0
  82. webull/core/vendored/requests/help.py +134 -0
  83. webull/core/vendored/requests/hooks.py +48 -0
  84. webull/core/vendored/requests/models.py +960 -0
  85. webull/core/vendored/requests/packages/__init__.py +17 -0
  86. webull/core/vendored/requests/packages/certifi/__init__.py +17 -0
  87. webull/core/vendored/requests/packages/certifi/__main__.py +16 -0
  88. webull/core/vendored/requests/packages/certifi/cacert.pem +4433 -0
  89. webull/core/vendored/requests/packages/certifi/core.py +51 -0
  90. webull/core/vendored/requests/packages/chardet/__init__.py +53 -0
  91. webull/core/vendored/requests/packages/chardet/big5freq.py +400 -0
  92. webull/core/vendored/requests/packages/chardet/big5prober.py +61 -0
  93. webull/core/vendored/requests/packages/chardet/chardistribution.py +247 -0
  94. webull/core/vendored/requests/packages/chardet/charsetgroupprober.py +120 -0
  95. webull/core/vendored/requests/packages/chardet/charsetprober.py +159 -0
  96. webull/core/vendored/requests/packages/chardet/cli/__init__.py +1 -0
  97. webull/core/vendored/requests/packages/chardet/cli/chardetect.py +99 -0
  98. webull/core/vendored/requests/packages/chardet/codingstatemachine.py +102 -0
  99. webull/core/vendored/requests/packages/chardet/compat.py +48 -0
  100. webull/core/vendored/requests/packages/chardet/cp949prober.py +63 -0
  101. webull/core/vendored/requests/packages/chardet/enums.py +90 -0
  102. webull/core/vendored/requests/packages/chardet/escprober.py +115 -0
  103. webull/core/vendored/requests/packages/chardet/escsm.py +260 -0
  104. webull/core/vendored/requests/packages/chardet/eucjpprober.py +106 -0
  105. webull/core/vendored/requests/packages/chardet/euckrfreq.py +209 -0
  106. webull/core/vendored/requests/packages/chardet/euckrprober.py +61 -0
  107. webull/core/vendored/requests/packages/chardet/euctwfreq.py +401 -0
  108. webull/core/vendored/requests/packages/chardet/euctwprober.py +60 -0
  109. webull/core/vendored/requests/packages/chardet/gb2312freq.py +297 -0
  110. webull/core/vendored/requests/packages/chardet/gb2312prober.py +60 -0
  111. webull/core/vendored/requests/packages/chardet/hebrewprober.py +306 -0
  112. webull/core/vendored/requests/packages/chardet/jisfreq.py +339 -0
  113. webull/core/vendored/requests/packages/chardet/jpcntx.py +247 -0
  114. webull/core/vendored/requests/packages/chardet/langbulgarianmodel.py +242 -0
  115. webull/core/vendored/requests/packages/chardet/langcyrillicmodel.py +347 -0
  116. webull/core/vendored/requests/packages/chardet/langgreekmodel.py +239 -0
  117. webull/core/vendored/requests/packages/chardet/langhebrewmodel.py +214 -0
  118. webull/core/vendored/requests/packages/chardet/langhungarianmodel.py +239 -0
  119. webull/core/vendored/requests/packages/chardet/langthaimodel.py +213 -0
  120. webull/core/vendored/requests/packages/chardet/langturkishmodel.py +207 -0
  121. webull/core/vendored/requests/packages/chardet/latin1prober.py +159 -0
  122. webull/core/vendored/requests/packages/chardet/mbcharsetprober.py +105 -0
  123. webull/core/vendored/requests/packages/chardet/mbcsgroupprober.py +68 -0
  124. webull/core/vendored/requests/packages/chardet/mbcssm.py +586 -0
  125. webull/core/vendored/requests/packages/chardet/sbcharsetprober.py +146 -0
  126. webull/core/vendored/requests/packages/chardet/sbcsgroupprober.py +87 -0
  127. webull/core/vendored/requests/packages/chardet/sjisprober.py +106 -0
  128. webull/core/vendored/requests/packages/chardet/universaldetector.py +300 -0
  129. webull/core/vendored/requests/packages/chardet/utf8prober.py +96 -0
  130. webull/core/vendored/requests/packages/chardet/version.py +23 -0
  131. webull/core/vendored/requests/packages/urllib3/__init__.py +114 -0
  132. webull/core/vendored/requests/packages/urllib3/_collections.py +346 -0
  133. webull/core/vendored/requests/packages/urllib3/connection.py +405 -0
  134. webull/core/vendored/requests/packages/urllib3/connectionpool.py +910 -0
  135. webull/core/vendored/requests/packages/urllib3/contrib/__init__.py +0 -0
  136. webull/core/vendored/requests/packages/urllib3/contrib/_appengine_environ.py +44 -0
  137. webull/core/vendored/requests/packages/urllib3/contrib/_securetransport/__init__.py +0 -0
  138. webull/core/vendored/requests/packages/urllib3/contrib/_securetransport/bindings.py +607 -0
  139. webull/core/vendored/requests/packages/urllib3/contrib/_securetransport/low_level.py +360 -0
  140. webull/core/vendored/requests/packages/urllib3/contrib/appengine.py +303 -0
  141. webull/core/vendored/requests/packages/urllib3/contrib/ntlmpool.py +125 -0
  142. webull/core/vendored/requests/packages/urllib3/contrib/pyopenssl.py +484 -0
  143. webull/core/vendored/requests/packages/urllib3/contrib/securetransport.py +818 -0
  144. webull/core/vendored/requests/packages/urllib3/contrib/socks.py +206 -0
  145. webull/core/vendored/requests/packages/urllib3/exceptions.py +260 -0
  146. webull/core/vendored/requests/packages/urllib3/fields.py +192 -0
  147. webull/core/vendored/requests/packages/urllib3/filepost.py +112 -0
  148. webull/core/vendored/requests/packages/urllib3/packages/__init__.py +19 -0
  149. webull/core/vendored/requests/packages/urllib3/packages/backports/__init__.py +0 -0
  150. webull/core/vendored/requests/packages/urllib3/packages/backports/makefile.py +67 -0
  151. webull/core/vendored/requests/packages/urllib3/packages/ordered_dict.py +273 -0
  152. webull/core/vendored/requests/packages/urllib3/packages/six.py +882 -0
  153. webull/core/vendored/requests/packages/urllib3/packages/socks.py +887 -0
  154. webull/core/vendored/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py +19 -0
  155. webull/core/vendored/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py +170 -0
  156. webull/core/vendored/requests/packages/urllib3/poolmanager.py +467 -0
  157. webull/core/vendored/requests/packages/urllib3/request.py +164 -0
  158. webull/core/vendored/requests/packages/urllib3/response.py +721 -0
  159. webull/core/vendored/requests/packages/urllib3/util/__init__.py +68 -0
  160. webull/core/vendored/requests/packages/urllib3/util/connection.py +148 -0
  161. webull/core/vendored/requests/packages/urllib3/util/queue.py +35 -0
  162. webull/core/vendored/requests/packages/urllib3/util/request.py +132 -0
  163. webull/core/vendored/requests/packages/urllib3/util/response.py +101 -0
  164. webull/core/vendored/requests/packages/urllib3/util/retry.py +426 -0
  165. webull/core/vendored/requests/packages/urllib3/util/selectors.py +601 -0
  166. webull/core/vendored/requests/packages/urllib3/util/ssl_.py +396 -0
  167. webull/core/vendored/requests/packages/urllib3/util/timeout.py +256 -0
  168. webull/core/vendored/requests/packages/urllib3/util/url.py +252 -0
  169. webull/core/vendored/requests/packages/urllib3/util/wait.py +164 -0
  170. webull/core/vendored/requests/packages.py +28 -0
  171. webull/core/vendored/requests/sessions.py +750 -0
  172. webull/core/vendored/requests/status_codes.py +105 -0
  173. webull/core/vendored/requests/structures.py +119 -0
  174. webull/core/vendored/requests/utils.py +916 -0
  175. webull/core/vendored/six.py +905 -0
  176. webull/data/__init__.py +3 -0
  177. webull/data/common/__init__.py +0 -0
  178. webull/data/common/category.py +26 -0
  179. webull/data/common/connect_ack.py +29 -0
  180. webull/data/common/direction.py +25 -0
  181. webull/data/common/exchange_code.py +33 -0
  182. webull/data/common/exercise_style.py +22 -0
  183. webull/data/common/expiration_cycle.py +26 -0
  184. webull/data/common/instrument_status.py +23 -0
  185. webull/data/common/option_type.py +20 -0
  186. webull/data/common/subscribe_type.py +22 -0
  187. webull/data/common/timespan.py +29 -0
  188. webull/data/data_client.py +35 -0
  189. webull/data/data_streaming_client.py +89 -0
  190. webull/data/internal/__init__.py +0 -0
  191. webull/data/internal/default_retry_policy.py +84 -0
  192. webull/data/internal/exceptions.py +60 -0
  193. webull/data/internal/quotes_client.py +314 -0
  194. webull/data/internal/quotes_decoder.py +40 -0
  195. webull/data/internal/quotes_payload_decoder.py +35 -0
  196. webull/data/internal/quotes_topic.py +36 -0
  197. webull/data/quotes/__init__.py +0 -0
  198. webull/data/quotes/instrument.py +33 -0
  199. webull/data/quotes/market_data.py +187 -0
  200. webull/data/quotes/market_streaming_data.py +66 -0
  201. webull/data/quotes/subscribe/__init__.py +0 -0
  202. webull/data/quotes/subscribe/ask_bid_result.py +49 -0
  203. webull/data/quotes/subscribe/basic_result.py +45 -0
  204. webull/data/quotes/subscribe/broker_result.py +33 -0
  205. webull/data/quotes/subscribe/message_pb2.py +37 -0
  206. webull/data/quotes/subscribe/order_result.py +30 -0
  207. webull/data/quotes/subscribe/payload_type.py +19 -0
  208. webull/data/quotes/subscribe/quote_decoder.py +28 -0
  209. webull/data/quotes/subscribe/quote_result.py +47 -0
  210. webull/data/quotes/subscribe/snapshot_decoder.py +30 -0
  211. webull/data/quotes/subscribe/snapshot_result.py +69 -0
  212. webull/data/quotes/subscribe/tick_decoder.py +29 -0
  213. webull/data/quotes/subscribe/tick_result.py +47 -0
  214. webull/data/request/__init__.py +0 -0
  215. webull/data/request/get_batch_historical_bars_request.py +43 -0
  216. webull/data/request/get_corp_action_request.py +47 -0
  217. webull/data/request/get_eod_bars_request.py +32 -0
  218. webull/data/request/get_historical_bars_request.py +43 -0
  219. webull/data/request/get_instruments_request.py +30 -0
  220. webull/data/request/get_quotes_request.py +35 -0
  221. webull/data/request/get_snapshot_request.py +38 -0
  222. webull/data/request/get_tick_request.py +37 -0
  223. webull/data/request/subscribe_request.py +43 -0
  224. webull/data/request/unsubscribe_request.py +42 -0
  225. webull/trade/__init__.py +2 -0
  226. webull/trade/common/__init__.py +0 -0
  227. webull/trade/common/account_type.py +22 -0
  228. webull/trade/common/category.py +29 -0
  229. webull/trade/common/combo_ticker_type.py +23 -0
  230. webull/trade/common/combo_type.py +31 -0
  231. webull/trade/common/currency.py +24 -0
  232. webull/trade/common/forbid_reason.py +27 -0
  233. webull/trade/common/instrument_type.py +27 -0
  234. webull/trade/common/markets.py +27 -0
  235. webull/trade/common/order_entrust_type.py +21 -0
  236. webull/trade/common/order_side.py +23 -0
  237. webull/trade/common/order_status.py +25 -0
  238. webull/trade/common/order_tif.py +24 -0
  239. webull/trade/common/order_type.py +30 -0
  240. webull/trade/common/trade_policy.py +22 -0
  241. webull/trade/common/trading_date_type.py +24 -0
  242. webull/trade/common/trailing_type.py +23 -0
  243. webull/trade/events/__init__.py +0 -0
  244. webull/trade/events/default_retry_policy.py +64 -0
  245. webull/trade/events/events_pb2.py +43 -0
  246. webull/trade/events/events_pb2_grpc.py +66 -0
  247. webull/trade/events/signature_composer.py +61 -0
  248. webull/trade/events/types.py +21 -0
  249. webull/trade/request/__init__.py +0 -0
  250. webull/trade/request/cancel_order_request.py +28 -0
  251. webull/trade/request/get_account_balance_request.py +28 -0
  252. webull/trade/request/get_account_positions_request.py +30 -0
  253. webull/trade/request/get_account_profile_request.py +26 -0
  254. webull/trade/request/get_app_subscriptions.py +28 -0
  255. webull/trade/request/get_open_orders_request.py +30 -0
  256. webull/trade/request/get_order_detail_request.py +27 -0
  257. webull/trade/request/get_today_orders_request.py +31 -0
  258. webull/trade/request/get_trade_calendar_request.py +30 -0
  259. webull/trade/request/get_trade_instrument_detail_request.py +24 -0
  260. webull/trade/request/get_trade_security_detail_request.py +42 -0
  261. webull/trade/request/get_tradeable_instruments_request.py +27 -0
  262. webull/trade/request/palce_order_request.py +91 -0
  263. webull/trade/request/place_order_request_v2.py +58 -0
  264. webull/trade/request/replace_order_request.py +73 -0
  265. webull/trade/request/replace_order_request_v2.py +38 -0
  266. webull/trade/request/v2/__init__.py +0 -0
  267. webull/trade/request/v2/cancel_option_request.py +28 -0
  268. webull/trade/request/v2/cancel_order_request.py +28 -0
  269. webull/trade/request/v2/get_account_balance_request.py +28 -0
  270. webull/trade/request/v2/get_account_list.py +23 -0
  271. webull/trade/request/v2/get_account_positions_request.py +24 -0
  272. webull/trade/request/v2/get_order_detail_request.py +26 -0
  273. webull/trade/request/v2/get_order_history_request.py +35 -0
  274. webull/trade/request/v2/palce_order_request.py +87 -0
  275. webull/trade/request/v2/place_option_request.py +64 -0
  276. webull/trade/request/v2/preview_option_request.py +28 -0
  277. webull/trade/request/v2/preview_order_request.py +59 -0
  278. webull/trade/request/v2/replace_option_request.py +28 -0
  279. webull/trade/request/v2/replace_order_request.py +57 -0
  280. webull/trade/trade/__init__.py +0 -0
  281. webull/trade/trade/account_info.py +83 -0
  282. webull/trade/trade/order_operation.py +246 -0
  283. webull/trade/trade/trade_calendar.py +37 -0
  284. webull/trade/trade/trade_instrument.py +72 -0
  285. webull/trade/trade/v2/__init__.py +0 -0
  286. webull/trade/trade/v2/account_info_v2.py +55 -0
  287. webull/trade/trade/v2/order_operation_v2.py +206 -0
  288. webull/trade/trade_client.py +43 -0
  289. webull/trade/trade_events_client.py +233 -0
  290. webull_openapi_python_sdk-1.0.0.dist-info/METADATA +28 -0
  291. webull_openapi_python_sdk-1.0.0.dist-info/RECORD +295 -0
  292. webull_openapi_python_sdk-1.0.0.dist-info/WHEEL +5 -0
  293. webull_openapi_python_sdk-1.0.0.dist-info/licenses/LICENSE +202 -0
  294. webull_openapi_python_sdk-1.0.0.dist-info/licenses/NOTICE +56 -0
  295. webull_openapi_python_sdk-1.0.0.dist-info/top_level.txt +2 -0
@@ -0,0 +1,295 @@
1
+ samples/__init__.py,sha256=Pru0BlFBASFCFo7McHdohtKkUtgMPDwbGfyUZlE2_Vw,21
2
+ samples/data/__init__.py,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
3
+ samples/data/data_client.py,sha256=47fvKOxxN0K9kKi8Zlx_80AATn-Pofm-XU9xugCJtnw,2263
4
+ samples/data/data_streaming_client.py,sha256=EILzTCTQ0WkPymdq7V3OW_-JQdfRSZ8aBBYkbpujwqg,3498
5
+ samples/data/data_streaming_client_async.py,sha256=7KyODfZLBFLFRJcux6BtacS05cPKDn78G4lZa978Qgo,3853
6
+ samples/trade/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ samples/trade/trade_client.py,sha256=bXX3onGK6aRFpopeE3yDQAx4Xo9dDc-k9gGbwB9El0A,5678
8
+ samples/trade/trade_client_v2.py,sha256=h_PZCTjdu9rHVUwnbp_mtVtuuDmwDaTTb0hS8WKNys8,6545
9
+ samples/trade/trade_event_client.py,sha256=5OJR886d0pxJeYtfthYyFGgEy_CFk3jbjLrhPapqybc,2085
10
+ webull/__init__.py,sha256=Aj77VL1d5Mdku7sgCgKQmPuYavPpAHuZuJcy6bygQZE,21
11
+ webull/core/__init__.py,sha256=hGFajyDnr9okXoltgLGWoLf91GSnfnurdfqzzzq5ae0,225
12
+ webull/core/client.py,sha256=1xH9XS92AKdUiVUPJYtzeaIl88bwa_ChDALJAxrXWQ0,16229
13
+ webull/core/compat.py,sha256=HDis0D271oQ6OCpA7ViX10NJdhfXdoBfzx6nuV3vrnI,3114
14
+ webull/core/headers.py,sha256=7aMt3_YtaL9Yhqj2T1g7ESQgkI78SAXIk7hMX5U5FgE,2019
15
+ webull/core/request.py,sha256=BMR9kv3KDpaX2hh9BX7qPn5hhTB7XqJkMj2OSXPvoUk,8340
16
+ webull/core/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ webull/core/auth/credentials.py,sha256=n9rjS7VKxwZ1VPNQhENNil5QBO3ApKrYrSxC3eaEEuA,1766
18
+ webull/core/auth/algorithm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ webull/core/auth/algorithm/sha_hmac1.py,sha256=oYHpbwwOK2w9dtSnaOMwGLaw-opBwOxJWpMmA_hLqUs,2150
20
+ webull/core/auth/algorithm/sha_hmac256.py,sha256=jkkWDQOYuJI6nrKVx89KnLI4sTAFi_zmxNc5bPGX0cw,2638
21
+ webull/core/auth/composer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ webull/core/auth/composer/default_signature_composer.py,sha256=dIoZOv6e52MtHENotbyWbcQjfr3iIPG-y65PvPFzq9M,5052
23
+ webull/core/auth/signers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ webull/core/auth/signers/app_key_signer.py,sha256=ojdG3yFefU7olqnQbRElCuJf9VD7UqueFE39-IP_Bfk,2841
25
+ webull/core/auth/signers/signer.py,sha256=GK3cAHmptBQWTsaws-haPJnt02dfgPtUZJq13RYHCpY,1811
26
+ webull/core/auth/signers/signer_factory.py,sha256=jDmguW1CBHenxLaV5sQHzumCluCzwTTfMVycwjvEBr8,2535
27
+ webull/core/cache/__init__.py,sha256=_dME59dRIinH4PXhB3ZOtlN-3J57mFfhegzuFKVedWs,6457
28
+ webull/core/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ webull/core/common/api_type.py,sha256=rXYvwiJs71AX7exvD_szbXcv3UW50V7_ve8ModpkAiM,643
30
+ webull/core/common/easy_enum.py,sha256=3PorEZPQgBT7uFwtNplpwZ9oi76CCwgKIZ0jRiybZYw,1047
31
+ webull/core/common/region.py,sha256=Dj-WN9oHLCsWP1E0bEY7j6Ru0U_CE44CjTWOib3HjrQ,86
32
+ webull/core/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ webull/core/context/request_context_holder.py,sha256=41aSKMtOkS0yHVvMMmP2vjsMg3WHvDPe3_njT0hwi_4,1148
34
+ webull/core/data/endpoints.json,sha256=qymDZFS7GqOIFQyBVmG8xJY_At0R6NjGgpchgyvE6c8,581
35
+ webull/core/data/retry_config.json,sha256=aRKrBfZyLrXt_58LCt7VvunQoxXS_qGon4JGGZnB644,304
36
+ webull/core/endpoint/__init__.py,sha256=hC_6UsVc7NGxD21gMT4i42Crm2zN4K-IAU4zxkLysVo,153
37
+ webull/core/endpoint/chained_endpoint_resolver.py,sha256=YQ-K7w9P3UolgiH0UdXiKsG4ALSManebWlZHeZjxSjY,2256
38
+ webull/core/endpoint/default_endpoint_resolver.py,sha256=BNTY6EJh1OI74Ef7c_GitZklauB_thA0nhoMave-Z5A,2597
39
+ webull/core/endpoint/local_config_regional_endpoint_resolver.py,sha256=OtrL6W0q8pnwnSbP_UOMJGerIcKFR27E8HzqOpREmAk,2817
40
+ webull/core/endpoint/resolver_endpoint_request.py,sha256=UCwfaaqXoczRIz3iyPTdWDBBtiUTi0P3BTfSDdz_ETI,1859
41
+ webull/core/endpoint/user_customized_endpoint_resolver.py,sha256=pOMPFa0E0NiBY8nirGYRzMsjEkcRbqgiTJ4QV-ghbeA,2166
42
+ webull/core/exception/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ webull/core/exception/error_code.py,sha256=Nj36l2WmvxjF-4ZRwLBRM_cOClCvnMFswloKnmQBQhI,902
44
+ webull/core/exception/error_msg.py,sha256=MDrOYpTrhX7LykixeofO5V8HcyUNGVZSwlL-wzO4XE8,653
45
+ webull/core/exception/exceptions.py,sha256=4YViWtnkV-lZc8EMMqa6fqvTIH9wZT65SPlUQ_Vifxg,1662
46
+ webull/core/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
+ webull/core/http/method_type.py,sha256=yCenoUS06aqcRPVvqozs56src0JTxka_YN1ZNp6Sw-0,1632
48
+ webull/core/http/protocol_type.py,sha256=DIPZ3i_r8nxaW5hVRVTyjwpKtWWTSHoGN_nA1SBXa6o,1638
49
+ webull/core/http/request.py,sha256=GUrxb5n2ozVtb45-yBXe9iT0E61guez_udluMKF1k1w,3769
50
+ webull/core/http/response.py,sha256=Q4W2azXn9hqYuR1NVt8NlHmIaFAi0lmD3ejXRygk2KA,5868
51
+ webull/core/http/initializer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
+ webull/core/http/initializer/client_initializer.py,sha256=5ywAPHN7JGQOspxBpEBQLxG_IkNxec6OIPS9ZQVodTk,2751
53
+ webull/core/http/initializer/token/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
+ webull/core/http/initializer/token/token_manager.py,sha256=Gh1PTK1HHdGS8FOuqFhTpoYfakr1ZH0lngqlgdAAFds,10893
55
+ webull/core/http/initializer/token/token_operation.py,sha256=91WpdFvxYJFD92iKraKMsRlxAI6GhXW1x0lrqDXna7E,2593
56
+ webull/core/http/initializer/token/bean/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
+ webull/core/http/initializer/token/bean/access_token.py,sha256=wK5UrTnAMacO_vkhym-BcmbJdkHJcYHIpFcXJrQp1r8,1529
58
+ webull/core/http/initializer/token/bean/check_token_request.py,sha256=6cp0cnTO4NSm9U1NOAwGNmPJHYp2OhSjXp_Xp7XJ66g,1650
59
+ webull/core/http/initializer/token/bean/create_token_request.py,sha256=2Mj4Sb8lI5VX6lhj0RwUro7_LxD56gw_FULZbBtdYw8,1674
60
+ webull/core/http/initializer/token/bean/refresh_token_request.py,sha256=lrjb4cvcGVNsCpP8ZTJM_0RYybLuGXNk20-T8FPV2U4,1654
61
+ webull/core/retry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
+ webull/core/retry/backoff_strategy.py,sha256=PMJe8Kwvf3-hV30_-zhcbJ3egBedgiMIQa861xR7koM,4177
63
+ webull/core/retry/retry_condition.py,sha256=Hel380uhtcgmrK0NZiuY015vyBQWzM2dv4npjoMrv7A,8020
64
+ webull/core/retry/retry_policy.py,sha256=y1Kwc7lw1N4sgvR71AcUbsv8cYYLAJRdDMx7VWO6ubs,2549
65
+ webull/core/retry/retry_policy_context.py,sha256=rVAqF6NE6Aw-OUJY1TaxEhSLLCuYe8Kfs6Poqol0WOk,2036
66
+ webull/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
+ webull/core/utils/common.py,sha256=iQ-HWNhpg8EhtIKS7Iqp2xHrQmwEwcK9PrMwlTmu1C4,1993
68
+ webull/core/utils/data.py,sha256=YUyoWY68_2RkKanh3jsDscgGx__FIPh5VNEGXr1Qotc,852
69
+ webull/core/utils/desensitize.py,sha256=f8_ps9BrG3WfXD8ZAw873-_YoGeke1Q55CeDwRmYkqA,1104
70
+ webull/core/utils/validation.py,sha256=gJcIrHYtgo48yVJ0q6O-f5buTYWOcr6ShhDIBhTp-Yg,1957
71
+ webull/core/vendored/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
+ webull/core/vendored/six.py,sha256=zUt6V23DcJibono2NyeL5-3Q6NY45Y5OrlbKh-Rn6TQ,31456
73
+ webull/core/vendored/requests/__init__.py,sha256=GBgI9LRkPGNSPh_TKxcVvaWeTGIxHwYLQzDypAm9-xU,2470
74
+ webull/core/vendored/requests/__version__.py,sha256=rZ8ABHgr2cUJtpokNQY2njrQh0gc5txKqMaVbP_smt8,1004
75
+ webull/core/vendored/requests/_internal_utils.py,sha256=ENYw2T9ykYURPq3OBykdluv0s0IIKeMD5Ajlji2Rdh4,1664
76
+ webull/core/vendored/requests/adapters.py,sha256=PRdpGDaUmVph5NC4GvdvETYXyUQ_tyA7toMvIwJxUOo,21554
77
+ webull/core/vendored/requests/api.py,sha256=1YxwfU12ZLkqUzt5puKwa69aY0r1k87oXjTbQLuep_A,6805
78
+ webull/core/vendored/requests/auth.py,sha256=LvCJp-ess9nbqGoBrIlvRDTLD3FfLH1KZX_XPmfe6sw,10296
79
+ webull/core/vendored/requests/certs.py,sha256=5N0NQjeFOBXa-PvejbxfxHFila6PHuxo-eDlpmbH62c,1047
80
+ webull/core/vendored/requests/compat.py,sha256=TUz11H0HAUr8UsoWjXU_A51PPO_j0XS3wHoYZ_SbCqE,2316
81
+ webull/core/vendored/requests/cookies.py,sha256=Oky1bPHnKeSIzYiSO3yjE4oudeBg8WrxNeLrNjmITJ8,18761
82
+ webull/core/vendored/requests/exceptions.py,sha256=QpcIv4CNMjc6O5aLjPXNIkxKjxhevrecFdW3MTkH1XU,3681
83
+ webull/core/vendored/requests/help.py,sha256=G7SH0Fb_s5rlmaw0YQK0szljXRY-2KrDxD_gZ345PO4,4184
84
+ webull/core/vendored/requests/hooks.py,sha256=5UioYTKxVpNMXeiektBXJ1QGOV139H5GZst7KA3WfKY,1335
85
+ webull/core/vendored/requests/models.py,sha256=VNzLRE4nHLxinHWjDje5KHfk_bgkoGOZt71PS8FSvM0,34546
86
+ webull/core/vendored/requests/packages.py,sha256=V-p_X1MAsT44Zd7JYq09jU5Z4YcCV-Xk3EDud80SdiE,1110
87
+ webull/core/vendored/requests/sessions.py,sha256=tFhCyH9-xVxXrx1EwGeuzq5AOGq1TOppqixKwzAZxTw,28091
88
+ webull/core/vendored/requests/status_codes.py,sha256=_KvriPA9LjQPZvqDtXYARvGyQuTXnQWvMXZmpf7f89g,3891
89
+ webull/core/vendored/requests/structures.py,sha256=yyw0HW07tqBBTylJufFZgX1EEp5BsjbVE9wfGrjONxE,3582
90
+ webull/core/vendored/requests/utils.py,sha256=VVBZbvhVZaMKdJTQnLNAVa886k68d8wGEPVUzU6Aohg,28136
91
+ webull/core/vendored/requests/packages/__init__.py,sha256=vNMLErUqPb-LSMIpqfL0RHgY6bzT9zVuxTUp1lXfncs,629
92
+ webull/core/vendored/requests/packages/certifi/__init__.py,sha256=MVpL6OAU03lsYn8EftbNjN7Sk0TzRC1eRl72pVJQ6sQ,631
93
+ webull/core/vendored/requests/packages/certifi/__main__.py,sha256=xNsal1i9I2smVSsDgPCMGBcahLF1VqlxzejY2ZehWRY,609
94
+ webull/core/vendored/requests/packages/certifi/cacert.pem,sha256=7CEXfLHxDwvDpwVu0y_2lfJYk63cU-KUKI_DL1Lq8Uo,271088
95
+ webull/core/vendored/requests/packages/certifi/core.py,sha256=lkOzplpwAZMMoc-NKBuCklmi2zB8ica-FRiIsXwq5vs,1404
96
+ webull/core/vendored/requests/packages/chardet/__init__.py,sha256=XeNf4_vJv46BwN9FFOHPPxBBc5cmsZGkpBoQhUN2dYE,2148
97
+ webull/core/vendored/requests/packages/chardet/big5freq.py,sha256=ABUxxFAJT9S06PIXmKGMR-tzJZ2wgC29GBV3Y13Wg5A,31822
98
+ webull/core/vendored/requests/packages/chardet/big5prober.py,sha256=zFAIPfjFlkAyBiTti9iM9Wftsl4QvpzVqacRD6VZpgI,2325
99
+ webull/core/vendored/requests/packages/chardet/chardistribution.py,sha256=2piAfkyig9-GZdmkF-JQ4YTRp7qtRhz2BHBcGVw5J4M,9979
100
+ webull/core/vendored/requests/packages/chardet/charsetgroupprober.py,sha256=IvtsxWPvIBdQSoQamRXgL0VCIVaz4dkpk_sy9_HGLqo,4355
101
+ webull/core/vendored/requests/packages/chardet/charsetprober.py,sha256=0lOKU5JNztn1Tgs_BnR-QA3NjqaxDL0G_r0liwNdXZQ,5678
102
+ webull/core/vendored/requests/packages/chardet/codingstatemachine.py,sha256=tF0jxpxTnVRukf4K_uIfD08gwVe7JDoihlvX2u43hyQ,4158
103
+ webull/core/vendored/requests/packages/chardet/compat.py,sha256=yZ5-hQwUC-BnPfWZmBWKE2GDl_7AMMc5vVK6JUtV9t0,1702
104
+ webull/core/vendored/requests/packages/chardet/cp949prober.py,sha256=PjaJUIhL6TxNjELx1-ZGZd3Cg83WeFZfyhKvVXaWvxI,2423
105
+ webull/core/vendored/requests/packages/chardet/enums.py,sha256=7WpdwqXjrmY-3mBx-yJP1qRArwTOmhdVs-QYwyaARms,2229
106
+ webull/core/vendored/requests/packages/chardet/escprober.py,sha256=3vszAMIj3OVLbTC_r_NnFhRFK8Ajy2Kon3ZAQFSGrdQ,4518
107
+ webull/core/vendored/requests/packages/chardet/escsm.py,sha256=LxHbUCM5I9H9Z9AvUA5fzlXXTVe7Rmek83Ev9mpZS6E,11078
108
+ webull/core/vendored/requests/packages/chardet/eucjpprober.py,sha256=QFhibagC3vblbbFNXKwQc76GYWGB82prSEDALRrLX_U,4317
109
+ webull/core/vendored/requests/packages/chardet/euckrfreq.py,sha256=hS8P77jmzWH3GHfmh5L66b6BGmXLyR9NXbyUz73EjNg,14114
110
+ webull/core/vendored/requests/packages/chardet/euckrprober.py,sha256=I_8j9ueXyyR6fFey5oFbkB1cO46UEnbZrfX3Z9TaY5U,2316
111
+ webull/core/vendored/requests/packages/chardet/euctwfreq.py,sha256=XSSFxoPIaWo74X-EHrsTAYvHldYyt8HhBP4x35UNgPU,32189
112
+ webull/core/vendored/requests/packages/chardet/euctwprober.py,sha256=9nuNNJhI_Rfo1mF7QD6kwwmYNfrf3GkEjh9DIe5ZCi0,2315
113
+ webull/core/vendored/requests/packages/chardet/gb2312freq.py,sha256=6qwdAsnPwnxGriXqsCYnDtw8-bpID4PuJjWpLGziAu0,21283
114
+ webull/core/vendored/requests/packages/chardet/gb2312prober.py,sha256=Nt51ZdNAlKmmWNiFBXP0YseZNpNKD6d75mcyminpfmE,2322
115
+ webull/core/vendored/requests/packages/chardet/hebrewprober.py,sha256=GR4PCk4txdy6_tHWL1A64jlJPV-NuzsZ37DlA9FrJ9o,14406
116
+ webull/core/vendored/requests/packages/chardet/jisfreq.py,sha256=EnJOb_aYYrpylbyzhm4Dzeo8QAsufF-aBxlse3U7ntU,26345
117
+ webull/core/vendored/requests/packages/chardet/jpcntx.py,sha256=FVaQ83k7T_uSGtpFlV2hcRZuzSa7vfSteZV9v_43c9E,20211
118
+ webull/core/vendored/requests/packages/chardet/langbulgarianmodel.py,sha256=m_MAufYkasq5cerLVukVop3mKoqsaDE82z4uijd7jmM,13407
119
+ webull/core/vendored/requests/packages/chardet/langcyrillicmodel.py,sha256=FCMmifsDeOTsSZZWsxEoebzjrGnk9VNUfOs-MKAJb94,18516
120
+ webull/core/vendored/requests/packages/chardet/langgreekmodel.py,sha256=nbB7XEtQ2u_rpimW-0-tkxsC_Gw2m8dkGetaDyjAgtI,13256
121
+ webull/core/vendored/requests/packages/chardet/langhebrewmodel.py,sha256=9tfzf20PZJqjRQNZncRZobdLTSgnRXVEg-63XNmeOXc,11913
122
+ webull/core/vendored/requests/packages/chardet/langhungarianmodel.py,sha256=T44LMmu5vioRQMZqE0V25oCt5CM6aOIJfKr3n_hwPks,13160
123
+ webull/core/vendored/requests/packages/chardet/langthaimodel.py,sha256=K4jEkEVOJ0Er30CwRdTZeVX73o4HAk215vFKusl1mho,11858
124
+ webull/core/vendored/requests/packages/chardet/langturkishmodel.py,sha256=FiJz5S9afuYm5NGurfIx4yKPs82i3ylqTThanY1WBFo,11670
125
+ webull/core/vendored/requests/packages/chardet/latin1prober.py,sha256=t8pO7IxsY-aQLlx01jndmVQ7EIIDfQPlsd9Zx9enCio,5938
126
+ webull/core/vendored/requests/packages/chardet/mbcharsetprober.py,sha256=KKQiAkPPhHr5C2qpo9EAqDzJLpwSbOJkHivc3YVU4YY,3981
127
+ webull/core/vendored/requests/packages/chardet/mbcsgroupprober.py,sha256=KmfJgkfspYEHAgVVo7YprlXAGQyO187RZhPXf00yClY,2580
128
+ webull/core/vendored/requests/packages/chardet/mbcssm.py,sha256=b-Fy65q7ApzmZlWz_zJFDzUuENtfzIXbJdeEU3kCRiY,26049
129
+ webull/core/vendored/requests/packages/chardet/sbcharsetprober.py,sha256=dg_gFVTYeX6RbNYvhJBmNG6rtSyTxMQNkQ50C-gyU9M,6225
130
+ webull/core/vendored/requests/packages/chardet/sbcsgroupprober.py,sha256=GTiKH6M0jxSC2Mcu8enf5yoi6KUCrU7qUb0NWven3Ow,4114
131
+ webull/core/vendored/requests/packages/chardet/sjisprober.py,sha256=lry_rSJwGFCgewiEgdLmSGMzJc-ZfhacHLDsqmCe66U,4342
132
+ webull/core/vendored/requests/packages/chardet/universaldetector.py,sha256=QqMdbmiV0Kn6kMNHgzUCrkaQxO35pz0Mj6_6Z5imb00,13053
133
+ webull/core/vendored/requests/packages/chardet/utf8prober.py,sha256=Hs69NVkariGS5XPLDiDGArARcb_4fll50MAVIRrPY_g,3334
134
+ webull/core/vendored/requests/packages/chardet/version.py,sha256=j9xj2ryKKWFjRDOfkpuSa5_cL336VX7KEmEOnyH27ro,810
135
+ webull/core/vendored/requests/packages/chardet/cli/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
136
+ webull/core/vendored/requests/packages/chardet/cli/chardetect.py,sha256=MU4--tOlF5nwpR7SmLJYG_fWBKahouwuHka_7nXLo_4,3306
137
+ webull/core/vendored/requests/packages/urllib3/__init__.py,sha256=qdH1trCfHb8RK8RVm4yCjEZBzUusFq1g7xP2nsUt2mQ,3480
138
+ webull/core/vendored/requests/packages/urllib3/_collections.py,sha256=wULQjSMETPvRACAPRTQEsZVkdjI9MmJhSSZ1iqzToIw,11409
139
+ webull/core/vendored/requests/packages/urllib3/connection.py,sha256=6yZX2iCIXmlkWxXZtA7i0X2RJGFlXr3cEBLIM9yxvyk,14402
140
+ webull/core/vendored/requests/packages/urllib3/connectionpool.py,sha256=q-msPFwjKQ9h8bNDbOIpGNy2SRE7LPbphKpEgaFv15g,35660
141
+ webull/core/vendored/requests/packages/urllib3/exceptions.py,sha256=jMS7y3eKy22u9NbF_1YLq70lBOgapvIVPLQkLcFJ8J4,7172
142
+ webull/core/vendored/requests/packages/urllib3/fields.py,sha256=mshQOID6OD95umJBKelsvD1WrACsauKLacIH7cVO6cI,6511
143
+ webull/core/vendored/requests/packages/urllib3/filepost.py,sha256=TpK22vWxqobuuvpvlHMynP28YKpdAQj2NjHDUVEMOno,3004
144
+ webull/core/vendored/requests/packages/urllib3/poolmanager.py,sha256=tH3Ganpi-5CwIsK3vSKuroOWtUhmesTYEBjyo77rASo,17555
145
+ webull/core/vendored/requests/packages/urllib3/request.py,sha256=ndT-HDJNYuVjm994LCsOCDa3xSegfZWwvNcGeWe3EO4,6559
146
+ webull/core/vendored/requests/packages/urllib3/response.py,sha256=rkEZs5x5Y9gzZ9HwqwKgFh3LJMqawT1pKoFFc2RZxcA,26218
147
+ webull/core/vendored/requests/packages/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
+ webull/core/vendored/requests/packages/urllib3/contrib/_appengine_environ.py,sha256=hP9k5qM2cppOZWd6Auz7ADiTBzlq7TCuIx7UQUdJQi0,1285
149
+ webull/core/vendored/requests/packages/urllib3/contrib/appengine.py,sha256=ISaT3oX23TUTHma4unYo7eyj5oe4btIAdQS93iqD0NU,11482
150
+ webull/core/vendored/requests/packages/urllib3/contrib/ntlmpool.py,sha256=HHog6SVkjQ-E7SyImKzGNnTDGbCz1Rsao7S3TgOVIBE,5027
151
+ webull/core/vendored/requests/packages/urllib3/contrib/pyopenssl.py,sha256=Z4C6TT38oRML9zTCMfSaKNftYjCRcoaEkZYwq902Z5g,16406
152
+ webull/core/vendored/requests/packages/urllib3/contrib/securetransport.py,sha256=o068CgKX2FEuUqnWOt_-mU-QaeCSSjX245NAbGE5XCU,30853
153
+ webull/core/vendored/requests/packages/urllib3/contrib/socks.py,sha256=Ht_F2xPB93G-uIlLyWk1ftgWw_j89JhIL7OvZu6cDq4,6970
154
+ webull/core/vendored/requests/packages/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
155
+ webull/core/vendored/requests/packages/urllib3/contrib/_securetransport/bindings.py,sha256=VZ9-fn14pQ-Y20mpRpNnVF8ZSQ43Zbjx4NN5fpUjs50,18128
156
+ webull/core/vendored/requests/packages/urllib3/contrib/_securetransport/low_level.py,sha256=DUN-TE65wJKdU-vqN1YoXrn1aDYDLHdpjYBBTGcvb6c,12730
157
+ webull/core/vendored/requests/packages/urllib3/packages/__init__.py,sha256=WZ2gIo62ZTcgL7i12DNvR6YSKqKXtpd0Dw9xnPDizAU,677
158
+ webull/core/vendored/requests/packages/urllib3/packages/ordered_dict.py,sha256=2x9StMgBxl8LFzHzafNXG6Rtpe4QTnX6SewqC65-eBc,9503
159
+ webull/core/vendored/requests/packages/urllib3/packages/six.py,sha256=dszBVzI0QQkbRIS6oQwgbHb7DMB-lww0V5eoTy_YfFQ,30666
160
+ webull/core/vendored/requests/packages/urllib3/packages/socks.py,sha256=PLOMWmCEXGZWQ0Ivvaap4wKplD-RBQJtg2UcUHEQvss,32919
161
+ webull/core/vendored/requests/packages/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
+ webull/core/vendored/requests/packages/urllib3/packages/backports/makefile.py,sha256=UVmO-JUHqkchWqUSPnjG4aOTa5VpAFuB-ZzBwg2cEWI,2024
163
+ webull/core/vendored/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py,sha256=WBVbxQBojNAxfZwNavkox3BgJiMA9BJmm-_fwd0jD_o,688
164
+ webull/core/vendored/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py,sha256=9OlIIY5R_dgpa8uIr-DkurKsa8_iCdOSbRfAcRcuCtQ,6251
165
+ webull/core/vendored/requests/packages/urllib3/util/__init__.py,sha256=oE1nXXJkF13K5lFbu9yQhWzRil1F93pmpL1AEMeQxbo,1612
166
+ webull/core/vendored/requests/packages/urllib3/util/connection.py,sha256=5U8mYgkTJ_0fvWDSHhn9Bd-bOSV25BEPeJw1S8WPTyk,5207
167
+ webull/core/vendored/requests/packages/urllib3/util/queue.py,sha256=2JbPZdOgUTHPs3-_uTnb1zZfpnleVPeG4t8YtuDTUzs,1065
168
+ webull/core/vendored/requests/packages/urllib3/util/request.py,sha256=ig8ir-dyPpY67_mkbVJJ1XKHgPoSdXF-5lpK7WwPnf4,4273
169
+ webull/core/vendored/requests/packages/urllib3/util/response.py,sha256=6rIoW5TB4eOku8-Bw5v9YYBM_MasEig9vNwZuwtryGs,3154
170
+ webull/core/vendored/requests/packages/urllib3/util/retry.py,sha256=64iUUfC8KG5KZMmN71GU8vrXrVbkuWvOWddydGWidPA,15718
171
+ webull/core/vendored/requests/packages/urllib3/util/selectors.py,sha256=O---YmquPjH-q366MQUdv2kvBWM5G1ZAQIp3ou5b5fg,21809
172
+ webull/core/vendored/requests/packages/urllib3/util/ssl_.py,sha256=aRUKc1WIyS-sUQ7saz5xh7ofNcxT89-DINRuuYsLSPc,13809
173
+ webull/core/vendored/requests/packages/urllib3/util/timeout.py,sha256=sAyiBBds7eOk1oM3ulvVMWZiqx1B743puHqK92XwBcY,10325
174
+ webull/core/vendored/requests/packages/urllib3/util/url.py,sha256=_CgqbyNrQWubrv_y5aWhuutz3mnbj1cvTUe4VYbGYWA,7367
175
+ webull/core/vendored/requests/packages/urllib3/util/wait.py,sha256=0FHS8R3OrMU-97XWt8AxuUStkSGXTct9CfOwY_fWn7U,5971
176
+ webull/data/__init__.py,sha256=vRmFc88LSPy3AB6RdeXcRxkvw-tnp8oFvSwnMoxyF3s,37
177
+ webull/data/data_client.py,sha256=MVVVUFp0m0O0olCiy1LBWDxCgtrxxsv9NBPvetwoOB0,1590
178
+ webull/data/data_streaming_client.py,sha256=hYqrdKTeIB3Xmp7LMjMwN1XE6Y7bKXX0y-lGX1ty6W4,3870
179
+ webull/data/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
180
+ webull/data/common/category.py,sha256=DV6L1DhtNq6q4jg_VvqsAYMm_RXM6KolPpJMXCJCXck,867
181
+ webull/data/common/connect_ack.py,sha256=PGhtTzb1hAciHRvMSqMUasyEMC6vdV52taP8RbTB8t8,1209
182
+ webull/data/common/direction.py,sha256=N0Me8CJD3oQDmx2EpNzlvFQDjmmhxa4qKorpV11OLM0,987
183
+ webull/data/common/exchange_code.py,sha256=cgnuDRolW6ZZzv3FJQ3UJdf535c3jgHcWzMmVWesSl4,1183
184
+ webull/data/common/exercise_style.py,sha256=Ikg-I2vegCG6IYQS8JeLbwN1UWPEyKnruysQCjXJi9s,745
185
+ webull/data/common/expiration_cycle.py,sha256=f1yyOVBnw8jQX16t_QIhyWgfAsaQn8asjdPYGXIg2Ik,837
186
+ webull/data/common/instrument_status.py,sha256=T8lMZxvhwV-19XprrvbajEfGQ9gaWVjf0p0UASrCxSQ,789
187
+ webull/data/common/option_type.py,sha256=E4lzZJS-6iX167l6b3mMhWUbNVD0joPxwqGL_mnOGRI,705
188
+ webull/data/common/subscribe_type.py,sha256=2EpBsPXCDjx5q25GonbUur2upQFfGvT6dcSYQ3BolyY,745
189
+ webull/data/common/timespan.py,sha256=Mg-dnvIWclVZRhIkjDiGzRlnOK457PWZ8sY5I8NXRBA,938
190
+ webull/data/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
191
+ webull/data/internal/default_retry_policy.py,sha256=g94o5LKtbB5XoDiZWHp7yKGOWTTTOT89bz1ZSlT79mI,3307
192
+ webull/data/internal/exceptions.py,sha256=qtInXjns6ce6KQTtJOxz8M4bywuOJe2sNSAwGJqTWDs,1800
193
+ webull/data/internal/quotes_client.py,sha256=9cg6FS_vUgaQTuC5Eb0ASau6A0yyCrBDj5Q1FXden1M,12822
194
+ webull/data/internal/quotes_decoder.py,sha256=Y849H41h-cnKPjFe9xDsvG3bWD3l7FnMcCM16yu5RuM,1420
195
+ webull/data/internal/quotes_payload_decoder.py,sha256=x2XGYDu4wSdc1LLrcIo3BXeb5jgqylFK7_8pfWv_xFU,998
196
+ webull/data/internal/quotes_topic.py,sha256=kG4RZTjj01U0e54qoOrJHlLrPeBzXekySasm2uoyXVo,1138
197
+ webull/data/quotes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
198
+ webull/data/quotes/instrument.py,sha256=FX5sdxGce17wxGBCgZxiki2-YyJoe2S2dzumS8czrLI,1270
199
+ webull/data/quotes/market_data.py,sha256=VBPoqop4O1CblsDxkboV15CrXFrwtFqXJEHVrmDTP9Y,10044
200
+ webull/data/quotes/market_streaming_data.py,sha256=cI9xxGpKV_KDS8cgh9azHifBji0yeSuKmH7Jxaqij38,3139
201
+ webull/data/quotes/subscribe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
202
+ webull/data/quotes/subscribe/ask_bid_result.py,sha256=EWu5dFMb_BwFGYPLe-f9uCD8_Ftl1wguhpU1qXi2zaY,1552
203
+ webull/data/quotes/subscribe/basic_result.py,sha256=l9pxGlt8HLHwE3plq_6J0OPZ_X4ZjjRfa1f9nExu2dE,1450
204
+ webull/data/quotes/subscribe/broker_result.py,sha256=E6pM0Ydr6tU_bPSOeyu1KJf7oYgbO-lIXLIdJQANH4I,1013
205
+ webull/data/quotes/subscribe/message_pb2.py,sha256=I6scR0qacKJWWhBdZq9tvCzSYUXZ9-TuPwpAmnp-FgY,2570
206
+ webull/data/quotes/subscribe/order_result.py,sha256=bqLjRzCDK0jpQBMm00QxfgV-SPg04lOLYxc8SgpkFDw,912
207
+ webull/data/quotes/subscribe/payload_type.py,sha256=nacQubAzKjutfddNdilckpsbamCUt6nrBnzrxgMOrWQ,674
208
+ webull/data/quotes/subscribe/quote_decoder.py,sha256=vTDKi3TaQ79ODTydVcEEiJR2g0fQLPf5hUOqo7Mi1gw,1016
209
+ webull/data/quotes/subscribe/quote_result.py,sha256=2SoRzSGANphAut1jleNnfZtUhpqqbELRcs1biu440p8,1442
210
+ webull/data/quotes/subscribe/snapshot_decoder.py,sha256=dukBHXa971LHp9oPkgQ4mqL_8yIAU5XSlUIUjpMz2NY,1045
211
+ webull/data/quotes/subscribe/snapshot_result.py,sha256=T46uw-hxmWDCJdhXfFsdSn3UtE50Bsc3oYJ9rYS1f6o,2311
212
+ webull/data/quotes/subscribe/tick_decoder.py,sha256=Qb__nJth2vsDMk2bWfNxY-mUGTUPzSZPO-ukHVxq80g,1008
213
+ webull/data/quotes/subscribe/tick_result.py,sha256=i2-4ZD1GK5EI3NhxkhSmUXfKnkBMjrwVBzLoDUY95OU,1467
214
+ webull/data/request/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
215
+ webull/data/request/get_batch_historical_bars_request.py,sha256=JKoKnBFOU1nHfwWDXNFZg_RAQqVBV6YVdk0nHk9jzA8,1628
216
+ webull/data/request/get_corp_action_request.py,sha256=6Ssnn0bZNQfFBt8Asl2DzHMBaXEOA2CZHUWGdA87Uik,1851
217
+ webull/data/request/get_eod_bars_request.py,sha256=CwbyXeAE-iPKu43zNxcekSw5qOlfEwZsztFxCQvAXuQ,1234
218
+ webull/data/request/get_historical_bars_request.py,sha256=0u--nrhCFdK7DfN3kvrtv3ShYK6lJJ0vzmBI2TNzTug,1619
219
+ webull/data/request/get_instruments_request.py,sha256=PtrDZOj9FB6UIGolTnwzQrtxqGay0rCj-SkQeVIc4QM,1115
220
+ webull/data/request/get_quotes_request.py,sha256=ZdlWAZ-edlCpZl9OAG2S5Fd0LKsxaOPrKozwH42e6BI,1230
221
+ webull/data/request/get_snapshot_request.py,sha256=L5PZXYMkmUre_ZyzbDcAYYwokBYM2Yx-wb4B8cfSvIk,1457
222
+ webull/data/request/get_tick_request.py,sha256=qXSknYTm1ePFZbGB6Sw4WRGj-I2DVBfJTSURRTCaruc,1352
223
+ webull/data/request/subscribe_request.py,sha256=dm93Q5Q4gigAMqAobolaYYSs3wM6QddPUZOjEtJsX-8,1471
224
+ webull/data/request/unsubscribe_request.py,sha256=hQA4mYM64PgmQEA2otl47-3nCXqjsSY_weFA3_wNbMM,1446
225
+ webull/trade/__init__.py,sha256=uyfGiipFnhOCQlqywx7wsgp6d-SYnqPqsPQd_xePZl8,23
226
+ webull/trade/trade_client.py,sha256=btEbAFjR6pipJIeNv_vQGBz94_cqZmLOIvSMTvMe4w8,2062
227
+ webull/trade/trade_events_client.py,sha256=4a7qupeT3dKJRKBQqXNhCai6ENzX6PA4yjTDHHxPR0w,8892
228
+ webull/trade/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
+ webull/trade/common/account_type.py,sha256=haVAB33MERN6XyPsbrfVQhK9_CpU90VltI6_KDkxzlE,715
230
+ webull/trade/common/category.py,sha256=wdMPCaMPPJRuQJ4gk4Q5_H7TO98q-GqRBcKR4U0TEj8,932
231
+ webull/trade/common/combo_ticker_type.py,sha256=lvyH9Pk3QTBKSwY4N_bpWFdwAeOBPKH2ZEsCF6lfkzg,748
232
+ webull/trade/common/combo_type.py,sha256=yC7KKF-xjtw9YzD49ijph-sq8W98HRBRefGK7ovJaDM,1084
233
+ webull/trade/common/currency.py,sha256=5y3vPnvV2K-1Xlg9WDJ6QtokL4-glytXsypvyjG2ArY,746
234
+ webull/trade/common/forbid_reason.py,sha256=S3lfFEJrsfdn-qxvbkqI8fi97n1qq6Sy7AUaS0SA5MM,983
235
+ webull/trade/common/instrument_type.py,sha256=HBBGIuPE9wY5ciykxQtZ7Q60x7hbPyMynOMBz876_Yc,863
236
+ webull/trade/common/markets.py,sha256=eZ_vH4OJupCqOJS5vgAparYysqm38EFjrjDj2C0XkzQ,753
237
+ webull/trade/common/order_entrust_type.py,sha256=FvaKSDWtllPq7aZBrSJmGzPmcU3bUJ0KLtipoYtiDoE,722
238
+ webull/trade/common/order_side.py,sha256=9kfuMnMzG3a_8Qq9jbeei9tQCVn3sTFA0jYAu6uRAAs,732
239
+ webull/trade/common/order_status.py,sha256=A9fSZR3x2EyQ87IFtj08QvPHxoxNJ7yTN0162u877FU,828
240
+ webull/trade/common/order_tif.py,sha256=ehP2gFgReW11aiqQFcO4k3EtqVC7NRaqldIPEfE6EOY,759
241
+ webull/trade/common/order_type.py,sha256=dXOaTtRQiubudg3A5sj3imaGjaedqUJvG_6bkco7vxc,1099
242
+ webull/trade/common/trade_policy.py,sha256=Tm3RN2_fZSXl5APPWeg8riEHlrvFURPt-dGIK6zDbPU,800
243
+ webull/trade/common/trading_date_type.py,sha256=xw8-oxBZNB-jdF25-PRv_5gwpXs8MksVZyZ7ZXRMLqY,747
244
+ webull/trade/common/trailing_type.py,sha256=w-wi2Gy-v-8b2oUprQHobwql639Je4FIlPKxojlagz4,729
245
+ webull/trade/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
246
+ webull/trade/events/default_retry_policy.py,sha256=zWoaJFJSUTtHw_qLj9_AIPBzFW6UHX295IfcuBHzYaI,2748
247
+ webull/trade/events/events_pb2.py,sha256=NLolj5VOws1LJT5YIvnuZab9YYhR4lm2-iCkztaARPo,2440
248
+ webull/trade/events/events_pb2_grpc.py,sha256=ebxp_VCJHBQFCKvxBKRUMhW67TZoUn6NwCBvKpiTEpg,2482
249
+ webull/trade/events/signature_composer.py,sha256=zcfBgwQ6XpoEOmeqSnKlgl0j0oDQ0x80_KS_11W3gwA,2496
250
+ webull/trade/events/types.py,sha256=jRX198gzHd5z_xke9yzfrJhclEBVTbCsDoln2PA-q0g,689
251
+ webull/trade/request/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
+ webull/trade/request/cancel_order_request.py,sha256=JbyeVNOVu9xvwzba7Ntw2Sh4BrNVUbBTkYLTKgXIU5U,1016
253
+ webull/trade/request/get_account_balance_request.py,sha256=S9M1rz6HFlIwRpWfkQKVfRo996_DWF8Qe6bGirSnkV0,1042
254
+ webull/trade/request/get_account_positions_request.py,sha256=Nr7fyzsZfcCqQlyapu7KagZEagM60IG7PFU9Qempv9w,1117
255
+ webull/trade/request/get_account_profile_request.py,sha256=SgF-eDkL6XM3IC-I-Mqmi8lFrTPa0iM4CkTjkZwZx_U,899
256
+ webull/trade/request/get_app_subscriptions.py,sha256=ViITk9Tt164LceijAq0harcO_5eoTRyCDnFsvr-ZJ4Y,962
257
+ webull/trade/request/get_open_orders_request.py,sha256=USAN2LKVtJ0CK-lJlLQ8ihhM5M78du5rYoD2lMAV85g,1129
258
+ webull/trade/request/get_order_detail_request.py,sha256=X42LnDBBh1shJ5DFB31ukgS8u1l-JM-Z2kumJnbutfw,1008
259
+ webull/trade/request/get_today_orders_request.py,sha256=DC09eXlWWoJgCHw-uKcA0usoV7wopbOPqNghJmayWZM,1139
260
+ webull/trade/request/get_trade_calendar_request.py,sha256=h70H27CWDeIYipxDINcjdQa-rNS-5K_N4X6NjIWlLNY,1020
261
+ webull/trade/request/get_trade_instrument_detail_request.py,sha256=pDQKeNC3v5hCWnt_lkQddoOdMlwZ6pK_hnysiDCXrOU,910
262
+ webull/trade/request/get_trade_security_detail_request.py,sha256=X_8wBBPLTAJZf-l0e7t4R2T_W8XWRl-hgAuLztfAnWE,1534
263
+ webull/trade/request/get_tradeable_instruments_request.py,sha256=7z57iT2Wqb43Kz-kdu09gkTGRPNzo4Aipq4VDbbqAMo,1030
264
+ webull/trade/request/palce_order_request.py,sha256=mIlzXoK8D76NASfz4T492-eGZ_8LZRGyihwananl9J4,3276
265
+ webull/trade/request/place_order_request_v2.py,sha256=gUuIWLARiOCumnXKNkJDgWJ2eV7dz4U4pNH6GpWxS5s,2192
266
+ webull/trade/request/replace_order_request.py,sha256=LGDynTVm0AXyfv3inpCa-KVanKMqxJ3N1G6x99eKqo8,2578
267
+ webull/trade/request/replace_order_request_v2.py,sha256=5R94VCYyStImQptcEMsTWRjNj7weYFCO6-2mLySmcj8,1612
268
+ webull/trade/request/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
269
+ webull/trade/request/v2/cancel_option_request.py,sha256=KKfJi7NE-m3uBa21nE3vdI45fMe4_f84lbb-Emy7xo0,1018
270
+ webull/trade/request/v2/cancel_order_request.py,sha256=poXMFDAI3vTpuHkMXIytJIij0S7-G2fcOTZ8DGrUGas,1027
271
+ webull/trade/request/v2/get_account_balance_request.py,sha256=S3GtaVbquSzaoql5XJAX8TMgabOgyQ7qs2JznFLpdoI,1050
272
+ webull/trade/request/v2/get_account_list.py,sha256=f9PAKtLKgCOFBNdptvlNwGsWQAJDTBCI8jTBDQ4Lr1Y,799
273
+ webull/trade/request/v2/get_account_positions_request.py,sha256=4mGlLvkkcItKdW_lIaOcB3ODR7spoKpYPUoOVO1JCAU,901
274
+ webull/trade/request/v2/get_order_detail_request.py,sha256=DcofpPxYtn1NJG7oRhwBTNsJventBcVf01ieXvis74s,1003
275
+ webull/trade/request/v2/get_order_history_request.py,sha256=807g7duWd6azJVLyWAwFUNRr4R7iAoU53nIK-dUEsws,1307
276
+ webull/trade/request/v2/palce_order_request.py,sha256=KnPmdRVx-klyMoq9rO_UqVC76SaigpmTmFh2g-5761w,3222
277
+ webull/trade/request/v2/place_option_request.py,sha256=bHxQpqQgrqyLyynf87B4VBJ9qkXi0fgb2oWBf4edxIw,2399
278
+ webull/trade/request/v2/preview_option_request.py,sha256=Ed_s3c1WwVlv4GFNbiJizLdFUNCb13Innpw8iMfHcDk,1000
279
+ webull/trade/request/v2/preview_order_request.py,sha256=cMAzXpK0WeDXCR42fOyDBNvpb28MoyWhL9teLXlZbDs,2267
280
+ webull/trade/request/v2/replace_option_request.py,sha256=qsHvQM_4ZhNDrm61NjRqMEIB3LMaW4IeTwm1waOdWqo,1012
281
+ webull/trade/request/v2/replace_order_request.py,sha256=0a4aHcPkV4fB4WyQCvW-Wv0aJ_pCR57N8yLqm8X0wD4,2304
282
+ webull/trade/trade/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
283
+ webull/trade/trade/account_info.py,sha256=C3YcBDZfYOe5QSJEbysblye-W90RbQ7xNing5gLsIng,3622
284
+ webull/trade/trade/order_operation.py,sha256=M4o8eQTyUqbvtRBkRH1TNKyaXWLF5qcgL4PIpUKFktM,12846
285
+ webull/trade/trade/trade_calendar.py,sha256=rGSiR5GZggQnZOmmpbC-06trgPQgFTvdpUzGMpw2ycw,1415
286
+ webull/trade/trade/trade_instrument.py,sha256=293IaiLnhw0mAc1IuF3LSgwgve_XZ1Dyf1VeFtmClc8,3474
287
+ webull/trade/trade/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
288
+ webull/trade/trade/v2/account_info_v2.py,sha256=neI3taHZKQK0pqNFh1H3FgBCCQ-mdDx_X_GUJ3sjqpo,2543
289
+ webull/trade/trade/v2/order_operation_v2.py,sha256=v_In-u0DUlodl_mlWDM5-XGzGBAK7hAkf_CrkVCNd9g,10580
290
+ webull_openapi_python_sdk-1.0.0.dist-info/licenses/LICENSE,sha256=ALOnsLtb1aHxmDJg3-oMi0BO-i-cjfyZaOBfnnavKMc,11359
291
+ webull_openapi_python_sdk-1.0.0.dist-info/licenses/NOTICE,sha256=X5TApte6CPV10b96Cb70IRLusXmiRmK_R-dB-1tQM_I,2018
292
+ webull_openapi_python_sdk-1.0.0.dist-info/METADATA,sha256=vgdmcjNQ1tMhZzLywmX3zpTs3f4_x9DdPSU7Yy55CXs,702
293
+ webull_openapi_python_sdk-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
294
+ webull_openapi_python_sdk-1.0.0.dist-info/top_level.txt,sha256=h8pEjNDGWS2ZUZ2vYFpUShoMQT0ZRIQaD57QJWD8_aI,15
295
+ webull_openapi_python_sdk-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ https://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ https://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,56 @@
1
+ Webull OpenAPI Python SDK
2
+ Copyright 2022 Webull
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ https://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+
16
+ There are some license terms of the components that this product depends on.
17
+ Please refer to the separate license files in the 'licenses' directory.
18
+
19
+ =======================================================================
20
+
21
+ aliyun-python-sdk-core:
22
+ -----
23
+ This product contains a modified portion of 'aliyun-python-sdk-core' developed by Alibaba Group Holding Ltd.
24
+ (https://github.com/aliyun/aliyun-openapi-python-sdk).
25
+
26
+ * Copyright 1999-2015 Alibaba Group Holding Ltd.
27
+
28
+ This product has a dependency on 'Python gRPC implementation':
29
+
30
+ * LICENSE: licenses/LICENSE.grpc.txt (Apache License 2.0)
31
+ * HOMEPAGE: https://grpc.io/
32
+
33
+ This product has a dependency on 'Eclipse Paho™ MQTT Python Client':
34
+
35
+ * LICENSE: licenses/LICENSE.paho-mqtt-python.txt (Eclipse Public License 2.0)
36
+ * HOMEPAGE: https://www.eclipse.org/
37
+
38
+ This product has a dependency on 'Cache tools':
39
+
40
+ * LICENSE: licenses/LICENSE.cachetools.txt (MIT License)
41
+ * HOMEPAGE: https://github.com/tkem/cachetools
42
+
43
+ This product has a dependency on 'JMESPath':
44
+
45
+ * LICENSE: licenses/LICENSE.jmespath.txt (MIT License)
46
+ * HOMEPAGE: https://jmespath.org/
47
+
48
+ This product has a dependency on 'Cryptography':
49
+
50
+ * LICENSE: licenses/LICENSE/cryptography/LICENSE (Apache License 2.0 AND BSD)
51
+ * HOMEPAGE: https://cryptography.io/
52
+
53
+ This product has a dependency on 'Protocol Buffers':
54
+
55
+ * LICENSE: licenses/LICENSE.protobuf.txt (BSD-3-Clause)
56
+ * HOMEPAGE: https://github.com/protocolbuffers
@@ -0,0 +1,2 @@
1
+ samples
2
+ webull