lib-x17-fintech 2.1.3__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 (282) hide show
  1. lib_x17_fintech-2.1.3.dist-info/METADATA +633 -0
  2. lib_x17_fintech-2.1.3.dist-info/RECORD +282 -0
  3. lib_x17_fintech-2.1.3.dist-info/WHEEL +5 -0
  4. lib_x17_fintech-2.1.3.dist-info/licenses/LICENSE +1 -0
  5. lib_x17_fintech-2.1.3.dist-info/top_level.txt +1 -0
  6. xfintech/__init__.py +0 -0
  7. xfintech/connect/__init__.py +18 -0
  8. xfintech/connect/artifact/__init__.py +5 -0
  9. xfintech/connect/artifact/artifact.py +168 -0
  10. xfintech/connect/artifact/tests/__init__.py +3 -0
  11. xfintech/connect/artifact/tests/test_class_artifact_all.py +564 -0
  12. xfintech/connect/common/__init__.py +12 -0
  13. xfintech/connect/common/connect.py +49 -0
  14. xfintech/connect/common/connectref.py +119 -0
  15. xfintech/connect/common/error.py +62 -0
  16. xfintech/connect/common/tests/__init__.py +1 -0
  17. xfintech/connect/common/tests/test_class_connectlike_all.py +544 -0
  18. xfintech/connect/common/tests/test_class_connectref_all.py +586 -0
  19. xfintech/connect/common/tests/test_class_errors_all.py +524 -0
  20. xfintech/connect/instance/__init__.py +7 -0
  21. xfintech/connect/instance/macos.py +121 -0
  22. xfintech/connect/instance/s3.py +176 -0
  23. xfintech/connect/instance/tests/__init__.py +1 -0
  24. xfintech/connect/instance/tests/test_class_macosconnect_all.py +692 -0
  25. xfintech/connect/instance/tests/test_class_s3connect_all.py +603 -0
  26. xfintech/data/__init__.py +20 -0
  27. xfintech/data/common/__init__.py +15 -0
  28. xfintech/data/common/cache.py +186 -0
  29. xfintech/data/common/coolant.py +171 -0
  30. xfintech/data/common/metric.py +138 -0
  31. xfintech/data/common/paginate.py +132 -0
  32. xfintech/data/common/params.py +162 -0
  33. xfintech/data/common/retry.py +201 -0
  34. xfintech/data/common/tests/__init__.py +1 -0
  35. xfintech/data/common/tests/test_class_cache_all.py +681 -0
  36. xfintech/data/common/tests/test_class_coolant_all.py +534 -0
  37. xfintech/data/common/tests/test_class_metric_all.py +705 -0
  38. xfintech/data/common/tests/test_class_paginate_all.py +508 -0
  39. xfintech/data/common/tests/test_class_params_all.py +891 -0
  40. xfintech/data/common/tests/test_class_retry_all.py +714 -0
  41. xfintech/data/job/__init__.py +17 -0
  42. xfintech/data/job/errors.py +112 -0
  43. xfintech/data/job/house.py +156 -0
  44. xfintech/data/job/job.py +247 -0
  45. xfintech/data/job/joblike.py +47 -0
  46. xfintech/data/job/tests/__init__.py +1 -0
  47. xfintech/data/job/tests/test_class_errors_all.py +275 -0
  48. xfintech/data/job/tests/test_class_house_all.py +801 -0
  49. xfintech/data/job/tests/test_class_job_all.py +684 -0
  50. xfintech/data/job/tests/test_class_joblike_all.py +482 -0
  51. xfintech/data/relay/__init__.py +7 -0
  52. xfintech/data/relay/client.py +114 -0
  53. xfintech/data/relay/clientlike.py +45 -0
  54. xfintech/data/relay/tests/test_class_relayclient_all.py +484 -0
  55. xfintech/data/relay/tests/test_class_relayclientlike_all.py +500 -0
  56. xfintech/data/source/__init__.py +7 -0
  57. xfintech/data/source/baostock/__init__.py +21 -0
  58. xfintech/data/source/baostock/job/__init__.py +5 -0
  59. xfintech/data/source/baostock/job/job.py +217 -0
  60. xfintech/data/source/baostock/job/tests/__init__.py +0 -0
  61. xfintech/data/source/baostock/job/tests/test_class_baostockjob_all.py +547 -0
  62. xfintech/data/source/baostock/session/__init__.py +8 -0
  63. xfintech/data/source/baostock/session/relay.py +223 -0
  64. xfintech/data/source/baostock/session/session.py +241 -0
  65. xfintech/data/source/baostock/session/tests/__init__.py +0 -0
  66. xfintech/data/source/baostock/session/tests/test_class_relay_all.py +694 -0
  67. xfintech/data/source/baostock/session/tests/test_class_session_all.py +505 -0
  68. xfintech/data/source/baostock/stock/__init__.py +0 -0
  69. xfintech/data/source/baostock/stock/hs300stock/__init__.py +3 -0
  70. xfintech/data/source/baostock/stock/hs300stock/constant.py +49 -0
  71. xfintech/data/source/baostock/stock/hs300stock/hs300stock.py +133 -0
  72. xfintech/data/source/baostock/stock/hs300stock/tests/__init__.py +1 -0
  73. xfintech/data/source/baostock/stock/hs300stock/tests/test_class_hs300index_all.py +413 -0
  74. xfintech/data/source/baostock/stock/minuteline/__init__.py +19 -0
  75. xfintech/data/source/baostock/stock/minuteline/constant.py +89 -0
  76. xfintech/data/source/baostock/stock/minuteline/minuteline.py +163 -0
  77. xfintech/data/source/baostock/stock/minuteline/tests/__init__.py +0 -0
  78. xfintech/data/source/baostock/stock/minuteline/tests/test_class_minuteline_all.py +582 -0
  79. xfintech/data/source/baostock/stock/stock/__init__.py +19 -0
  80. xfintech/data/source/baostock/stock/stock/constant.py +55 -0
  81. xfintech/data/source/baostock/stock/stock/stock.py +149 -0
  82. xfintech/data/source/baostock/stock/stock/tests/__init__.py +0 -0
  83. xfintech/data/source/baostock/stock/stock/tests/test_class_stock_all.py +508 -0
  84. xfintech/data/source/baostock/stock/stockinfo/__init__.py +5 -0
  85. xfintech/data/source/baostock/stock/stockinfo/constant.py +66 -0
  86. xfintech/data/source/baostock/stock/stockinfo/stockinfo.py +176 -0
  87. xfintech/data/source/baostock/stock/stockinfo/tests/__init__.py +1 -0
  88. xfintech/data/source/baostock/stock/stockinfo/tests/test_class_stockinfo_all.py +617 -0
  89. xfintech/data/source/baostock/stock/sz50stock/__init__.py +3 -0
  90. xfintech/data/source/baostock/stock/sz50stock/constant.py +49 -0
  91. xfintech/data/source/baostock/stock/sz50stock/sz50stock.py +133 -0
  92. xfintech/data/source/baostock/stock/sz50stock/tests/__init__.py +1 -0
  93. xfintech/data/source/baostock/stock/sz50stock/tests/test_class_sz50stock_all.py +397 -0
  94. xfintech/data/source/baostock/stock/tradedate/__init__.py +19 -0
  95. xfintech/data/source/baostock/stock/tradedate/constant.py +72 -0
  96. xfintech/data/source/baostock/stock/tradedate/tests/__init__.py +0 -0
  97. xfintech/data/source/baostock/stock/tradedate/tests/test_class_tradedate_all.py +695 -0
  98. xfintech/data/source/baostock/stock/tradedate/tradedate.py +208 -0
  99. xfintech/data/source/baostock/stock/zz500stock/__init__.py +3 -0
  100. xfintech/data/source/baostock/stock/zz500stock/constant.py +55 -0
  101. xfintech/data/source/baostock/stock/zz500stock/tests/__init__.py +1 -0
  102. xfintech/data/source/baostock/stock/zz500stock/tests/test_class_zz500stock_all.py +421 -0
  103. xfintech/data/source/baostock/stock/zz500stock/zz500stock.py +133 -0
  104. xfintech/data/source/tushare/__init__.py +61 -0
  105. xfintech/data/source/tushare/job/__init__.py +5 -0
  106. xfintech/data/source/tushare/job/job.py +257 -0
  107. xfintech/data/source/tushare/job/tests/test_class_tusharejob_all.py +589 -0
  108. xfintech/data/source/tushare/session/__init__.py +5 -0
  109. xfintech/data/source/tushare/session/relay.py +231 -0
  110. xfintech/data/source/tushare/session/session.py +239 -0
  111. xfintech/data/source/tushare/session/tests/test_class_relay_all.py +719 -0
  112. xfintech/data/source/tushare/session/tests/test_class_session_all.py +705 -0
  113. xfintech/data/source/tushare/stock/__init__.py +55 -0
  114. xfintech/data/source/tushare/stock/adjfactor/__init__.py +19 -0
  115. xfintech/data/source/tushare/stock/adjfactor/adjfactor.py +150 -0
  116. xfintech/data/source/tushare/stock/adjfactor/constant.py +71 -0
  117. xfintech/data/source/tushare/stock/adjfactor/tests/__init__.py +0 -0
  118. xfintech/data/source/tushare/stock/adjfactor/tests/test_class_adjfactor_all.py +372 -0
  119. xfintech/data/source/tushare/stock/capflow/__init__.py +19 -0
  120. xfintech/data/source/tushare/stock/capflow/capflow.py +171 -0
  121. xfintech/data/source/tushare/stock/capflow/constant.py +105 -0
  122. xfintech/data/source/tushare/stock/capflow/tests/__init__.py +0 -0
  123. xfintech/data/source/tushare/stock/capflow/tests/test_class_capflow_all.py +589 -0
  124. xfintech/data/source/tushare/stock/capflowdc/__init__.py +19 -0
  125. xfintech/data/source/tushare/stock/capflowdc/capflowdc.py +167 -0
  126. xfintech/data/source/tushare/stock/capflowdc/constant.py +95 -0
  127. xfintech/data/source/tushare/stock/capflowdc/tests/__init__.py +0 -0
  128. xfintech/data/source/tushare/stock/capflowdc/tests/test_class_capflowdc_all.py +814 -0
  129. xfintech/data/source/tushare/stock/capflowths/__init__.py +19 -0
  130. xfintech/data/source/tushare/stock/capflowths/capflowths.py +173 -0
  131. xfintech/data/source/tushare/stock/capflowths/constant.py +92 -0
  132. xfintech/data/source/tushare/stock/capflowths/tests/__init__.py +0 -0
  133. xfintech/data/source/tushare/stock/capflowths/tests/test_class_capflowths_all.py +551 -0
  134. xfintech/data/source/tushare/stock/company/__init__.py +19 -0
  135. xfintech/data/source/tushare/stock/company/company.py +188 -0
  136. xfintech/data/source/tushare/stock/company/constant.py +92 -0
  137. xfintech/data/source/tushare/stock/company/tests/__init__.py +1 -0
  138. xfintech/data/source/tushare/stock/company/tests/test_class_company_all.py +829 -0
  139. xfintech/data/source/tushare/stock/companybusiness/__init__.py +21 -0
  140. xfintech/data/source/tushare/stock/companybusiness/companybusiness.py +183 -0
  141. xfintech/data/source/tushare/stock/companybusiness/constant.py +91 -0
  142. xfintech/data/source/tushare/stock/companybusiness/tests/__init__.py +0 -0
  143. xfintech/data/source/tushare/stock/companybusiness/tests/test_class_companybusiness_all.py +633 -0
  144. xfintech/data/source/tushare/stock/companycashflow/__init__.py +21 -0
  145. xfintech/data/source/tushare/stock/companycashflow/companycashflow.py +277 -0
  146. xfintech/data/source/tushare/stock/companycashflow/constant.py +293 -0
  147. xfintech/data/source/tushare/stock/companycashflow/tests/__init__.py +0 -0
  148. xfintech/data/source/tushare/stock/companycashflow/tests/test_class_companycashflow_all.py +619 -0
  149. xfintech/data/source/tushare/stock/companydebt/__init__.py +19 -0
  150. xfintech/data/source/tushare/stock/companydebt/companydebt.py +339 -0
  151. xfintech/data/source/tushare/stock/companydebt/constant.py +403 -0
  152. xfintech/data/source/tushare/stock/companydebt/tests/__init__.py +0 -0
  153. xfintech/data/source/tushare/stock/companydebt/tests/test_class_companydebt_all.py +655 -0
  154. xfintech/data/source/tushare/stock/companyoverview/__init__.py +21 -0
  155. xfintech/data/source/tushare/stock/companyoverview/companyoverview.py +214 -0
  156. xfintech/data/source/tushare/stock/companyoverview/constant.py +152 -0
  157. xfintech/data/source/tushare/stock/companyoverview/tests/__init__.py +0 -0
  158. xfintech/data/source/tushare/stock/companyoverview/tests/test_class_companyoverview_all.py +647 -0
  159. xfintech/data/source/tushare/stock/companyprofit/__init__.py +21 -0
  160. xfintech/data/source/tushare/stock/companyprofit/companyprofit.py +272 -0
  161. xfintech/data/source/tushare/stock/companyprofit/constant.py +259 -0
  162. xfintech/data/source/tushare/stock/companyprofit/tests/__init__.py +0 -0
  163. xfintech/data/source/tushare/stock/companyprofit/tests/test_class_companyprofit_all.py +635 -0
  164. xfintech/data/source/tushare/stock/conceptcapflowdc/__init__.py +21 -0
  165. xfintech/data/source/tushare/stock/conceptcapflowdc/conceptcapflowdc.py +175 -0
  166. xfintech/data/source/tushare/stock/conceptcapflowdc/constant.py +106 -0
  167. xfintech/data/source/tushare/stock/conceptcapflowdc/tests/__init__.py +0 -0
  168. xfintech/data/source/tushare/stock/conceptcapflowdc/tests/test_class_conceptcapflowdc_all.py +568 -0
  169. xfintech/data/source/tushare/stock/conceptcapflowths/__init__.py +21 -0
  170. xfintech/data/source/tushare/stock/conceptcapflowths/conceptcapflowths.py +188 -0
  171. xfintech/data/source/tushare/stock/conceptcapflowths/constant.py +89 -0
  172. xfintech/data/source/tushare/stock/conceptcapflowths/tests/__init__.py +0 -0
  173. xfintech/data/source/tushare/stock/conceptcapflowths/tests/test_class_conceptcapflowths_all.py +516 -0
  174. xfintech/data/source/tushare/stock/dayline/__init__.py +19 -0
  175. xfintech/data/source/tushare/stock/dayline/constant.py +87 -0
  176. xfintech/data/source/tushare/stock/dayline/dayline.py +177 -0
  177. xfintech/data/source/tushare/stock/dayline/tests/__init__.py +0 -0
  178. xfintech/data/source/tushare/stock/dayline/tests/test_class_dayline_all.py +585 -0
  179. xfintech/data/source/tushare/stock/industrycapflowths/__init__.py +21 -0
  180. xfintech/data/source/tushare/stock/industrycapflowths/constant.py +89 -0
  181. xfintech/data/source/tushare/stock/industrycapflowths/industrycapflowths.py +192 -0
  182. xfintech/data/source/tushare/stock/industrycapflowths/tests/__init__.py +0 -0
  183. xfintech/data/source/tushare/stock/industrycapflowths/tests/test_class_industrycapflowths_all.py +683 -0
  184. xfintech/data/source/tushare/stock/marketindexcapflowdc/__init__.py +21 -0
  185. xfintech/data/source/tushare/stock/marketindexcapflowdc/constant.py +90 -0
  186. xfintech/data/source/tushare/stock/marketindexcapflowdc/marketindexcapflowdc.py +173 -0
  187. xfintech/data/source/tushare/stock/marketindexcapflowdc/tests/__init__.py +0 -0
  188. xfintech/data/source/tushare/stock/marketindexcapflowdc/tests/test_class_marketindexcapflowdc_all.py +793 -0
  189. xfintech/data/source/tushare/stock/monthline/__init__.py +19 -0
  190. xfintech/data/source/tushare/stock/monthline/constant.py +87 -0
  191. xfintech/data/source/tushare/stock/monthline/monthline.py +180 -0
  192. xfintech/data/source/tushare/stock/monthline/tests/__init__.py +0 -0
  193. xfintech/data/source/tushare/stock/monthline/tests/test_class_monthline_all.py +574 -0
  194. xfintech/data/source/tushare/stock/stock/__init__.py +19 -0
  195. xfintech/data/source/tushare/stock/stock/constant.py +105 -0
  196. xfintech/data/source/tushare/stock/stock/stock.py +193 -0
  197. xfintech/data/source/tushare/stock/stock/tests/__init__.py +0 -0
  198. xfintech/data/source/tushare/stock/stock/tests/test_class_stock_all.py +788 -0
  199. xfintech/data/source/tushare/stock/stockdividend/__init__.py +21 -0
  200. xfintech/data/source/tushare/stock/stockdividend/constant.py +111 -0
  201. xfintech/data/source/tushare/stock/stockdividend/stockdividend.py +180 -0
  202. xfintech/data/source/tushare/stock/stockdividend/tests/__init__.py +0 -0
  203. xfintech/data/source/tushare/stock/stockdividend/tests/test_class_stockdividend_all.py +725 -0
  204. xfintech/data/source/tushare/stock/stockinfo/__init__.py +19 -0
  205. xfintech/data/source/tushare/stock/stockinfo/constant.py +104 -0
  206. xfintech/data/source/tushare/stock/stockinfo/stockinfo.py +208 -0
  207. xfintech/data/source/tushare/stock/stockinfo/tests/__init__.py +0 -0
  208. xfintech/data/source/tushare/stock/stockinfo/tests/test_class_stockinfo_all.py +881 -0
  209. xfintech/data/source/tushare/stock/stockipo/__init__.py +19 -0
  210. xfintech/data/source/tushare/stock/stockipo/constant.py +90 -0
  211. xfintech/data/source/tushare/stock/stockipo/stockipo.py +234 -0
  212. xfintech/data/source/tushare/stock/stockipo/tests/__init__.py +1 -0
  213. xfintech/data/source/tushare/stock/stockipo/tests/test_class_stockipo_all.py +750 -0
  214. xfintech/data/source/tushare/stock/stockpledge/__init__.py +19 -0
  215. xfintech/data/source/tushare/stock/stockpledge/constant.py +72 -0
  216. xfintech/data/source/tushare/stock/stockpledge/stockpledge.py +158 -0
  217. xfintech/data/source/tushare/stock/stockpledge/tests/__init__.py +0 -0
  218. xfintech/data/source/tushare/stock/stockpledge/tests/test_class_stockpledge_all.py +664 -0
  219. xfintech/data/source/tushare/stock/stockpledgedetail/__init__.py +21 -0
  220. xfintech/data/source/tushare/stock/stockpledgedetail/constant.py +85 -0
  221. xfintech/data/source/tushare/stock/stockpledgedetail/stockpledgedetail.py +171 -0
  222. xfintech/data/source/tushare/stock/stockpledgedetail/tests/__init__.py +0 -0
  223. xfintech/data/source/tushare/stock/stockpledgedetail/tests/test_class_stockpledgedetail_all.py +112 -0
  224. xfintech/data/source/tushare/stock/stockst/__init__.py +19 -0
  225. xfintech/data/source/tushare/stock/stockst/constant.py +80 -0
  226. xfintech/data/source/tushare/stock/stockst/stockst.py +189 -0
  227. xfintech/data/source/tushare/stock/stockst/tests/__init__.py +0 -0
  228. xfintech/data/source/tushare/stock/stockst/tests/test_class_stockst_all.py +693 -0
  229. xfintech/data/source/tushare/stock/stocksuspend/__init__.py +21 -0
  230. xfintech/data/source/tushare/stock/stocksuspend/constant.py +75 -0
  231. xfintech/data/source/tushare/stock/stocksuspend/stocksuspend.py +151 -0
  232. xfintech/data/source/tushare/stock/stocksuspend/tests/__init__.py +0 -0
  233. xfintech/data/source/tushare/stock/stocksuspend/tests/test_class_stocksuspend_all.py +626 -0
  234. xfintech/data/source/tushare/stock/techindex/__init__.py +19 -0
  235. xfintech/data/source/tushare/stock/techindex/constant.py +600 -0
  236. xfintech/data/source/tushare/stock/techindex/techindex.py +314 -0
  237. xfintech/data/source/tushare/stock/techindex/tests/__init__.py +0 -0
  238. xfintech/data/source/tushare/stock/techindex/tests/test_class_techindex_all.py +576 -0
  239. xfintech/data/source/tushare/stock/tradedate/__init__.py +19 -0
  240. xfintech/data/source/tushare/stock/tradedate/constant.py +93 -0
  241. xfintech/data/source/tushare/stock/tradedate/tests/__init__.py +0 -0
  242. xfintech/data/source/tushare/stock/tradedate/tests/test_class_tradedate_all.py +947 -0
  243. xfintech/data/source/tushare/stock/tradedate/tradedate.py +234 -0
  244. xfintech/data/source/tushare/stock/weekline/__init__.py +19 -0
  245. xfintech/data/source/tushare/stock/weekline/constant.py +87 -0
  246. xfintech/data/source/tushare/stock/weekline/tests/__init__.py +0 -0
  247. xfintech/data/source/tushare/stock/weekline/tests/test_class_weekline_all.py +575 -0
  248. xfintech/data/source/tushare/stock/weekline/weekline.py +182 -0
  249. xfintech/fabric/__init__.py +18 -0
  250. xfintech/fabric/column/__init__.py +7 -0
  251. xfintech/fabric/column/info.py +202 -0
  252. xfintech/fabric/column/kind.py +102 -0
  253. xfintech/fabric/column/tests/__init__.py +0 -0
  254. xfintech/fabric/column/tests/test_class_info_all.py +207 -0
  255. xfintech/fabric/column/tests/test_class_kind_all.py +80 -0
  256. xfintech/fabric/table/__init__.py +5 -0
  257. xfintech/fabric/table/info.py +263 -0
  258. xfintech/fabric/table/tests/__init__.py +0 -0
  259. xfintech/fabric/table/tests/test_class_info_all.py +547 -0
  260. xfintech/serde/__init__.py +35 -0
  261. xfintech/serde/common/__init__.py +9 -0
  262. xfintech/serde/common/dataformat.py +78 -0
  263. xfintech/serde/common/deserialiserlike.py +38 -0
  264. xfintech/serde/common/error.py +182 -0
  265. xfintech/serde/common/serialiserlike.py +38 -0
  266. xfintech/serde/common/tests/__init__.py +1 -0
  267. xfintech/serde/common/tests/test_class_dataformat_all.py +694 -0
  268. xfintech/serde/common/tests/test_class_deserialiserlike_all.py +500 -0
  269. xfintech/serde/common/tests/test_class_errors_all.py +518 -0
  270. xfintech/serde/common/tests/test_class_serialiserlike_all.py +401 -0
  271. xfintech/serde/deserialiser/__init__.py +7 -0
  272. xfintech/serde/deserialiser/pandas.py +113 -0
  273. xfintech/serde/deserialiser/python.py +68 -0
  274. xfintech/serde/deserialiser/tests/__init__.py +1 -0
  275. xfintech/serde/deserialiser/tests/test_class_pandasdeserialiser_all.py +503 -0
  276. xfintech/serde/deserialiser/tests/test_class_pythondeserialiser_all.py +570 -0
  277. xfintech/serde/serialiser/__init__.py +7 -0
  278. xfintech/serde/serialiser/pandas.py +116 -0
  279. xfintech/serde/serialiser/python.py +71 -0
  280. xfintech/serde/serialiser/tests/__init__.py +1 -0
  281. xfintech/serde/serialiser/tests/test_class_pandasserialiser_all.py +474 -0
  282. xfintech/serde/serialiser/tests/test_class_pythonserialiser_all.py +508 -0
@@ -0,0 +1,282 @@
1
+ lib_x17_fintech-2.1.3.dist-info/licenses/LICENSE,sha256=q7KJbcPCqUAvkBuI1QNc8Kg9XPfBfnNkLN9WKwudO8U,11
2
+ xfintech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ xfintech/connect/__init__.py,sha256=-yFZTDIq3DMLALHwPRX-FFp2RoYhBw4nP9yWrGTpr4g,498
4
+ xfintech/connect/artifact/__init__.py,sha256=v9oFkDsLYY_JxsKDEKqaSaL5W3UY4NhC44I2-Rb5uVU,87
5
+ xfintech/connect/artifact/artifact.py,sha256=f-D3yDKA06AI_J28_IG3em7OBQAQbCYM6AWMry25dZ4,5206
6
+ xfintech/connect/artifact/tests/__init__.py,sha256=22Zu_sdDuzW5WddiF1VKULlbCyZvOHhkRK_wus8GM3E,34
7
+ xfintech/connect/artifact/tests/test_class_artifact_all.py,sha256=JjVYEFKfGaP_QRnSAyn9FexaY0ShT-SsxdPwyX09SBU,18240
8
+ xfintech/connect/common/__init__.py,sha256=qRHGGGvogYTYSdx9T4wKs0_sLHik_Q6jk-pdZOgXXqw,308
9
+ xfintech/connect/common/connect.py,sha256=7qiGArrpidlPUgOTe233lV-oiwuS8oXuazApRM2XsWQ,1355
10
+ xfintech/connect/common/connectref.py,sha256=8VVRs7cVTPL0nCRadw9NZN5MfIn6-CiToyT5FVdAg18,3301
11
+ xfintech/connect/common/error.py,sha256=R1fOXSK-7fEt2PWlCxedocttmCh5h5XH8orqEQqfO_k,1370
12
+ xfintech/connect/common/tests/__init__.py,sha256=6VTX6BAziTSqCXP-qyjyz8wi6x3eM-45F-wfw5HcG5k,48
13
+ xfintech/connect/common/tests/test_class_connectlike_all.py,sha256=KGrrRrpIM_4DHPfpzPCnrSzOe7DgycJURH-Yles9p-Q,16879
14
+ xfintech/connect/common/tests/test_class_connectref_all.py,sha256=zRWutuLO2sPs47jhJVdBjHX1YI4voRctDQd5ncey-C0,17500
15
+ xfintech/connect/common/tests/test_class_errors_all.py,sha256=a1NeWB3T-RhF60SG5GWuphXtUuC1mWjdt82MrxklOVA,15483
16
+ xfintech/connect/instance/__init__.py,sha256=Y0hZVuAsASnQmCuKp5TRh3oinYYa7EtEfvsjRDcUub8,110
17
+ xfintech/connect/instance/macos.py,sha256=CAv3eBIEBENJJ1uazemn1lqYng03Flhg0IUhfHlynjk,3164
18
+ xfintech/connect/instance/s3.py,sha256=9iZCP0q-yZQ7rGD0oMx996cxh5WlHZ5DWWCnl7xUutY,4952
19
+ xfintech/connect/instance/tests/__init__.py,sha256=PUJzxsKmuQQ8R7HKg-DxmoS-oRoyuyp1LC5Kgr7IJHw,50
20
+ xfintech/connect/instance/tests/test_class_macosconnect_all.py,sha256=-l0Ai66lhq3IcGlRYhNibC05PWf-69K4o5Fkm1eBtsU,20750
21
+ xfintech/connect/instance/tests/test_class_s3connect_all.py,sha256=05gcWb3hUHKy26lNF-I404S4gVmXhmu4D6MKt5A206E,18647
22
+ xfintech/data/__init__.py,sha256=f9s_NEs6rZrx7LnqdEL2pWz9S6j4kOi7MQ_EKh8ZjMs,465
23
+ xfintech/data/common/__init__.py,sha256=UxpTx5myMdwlf-Kn6A_X_18euGSRQq2Ln0cO0UcyZHc,264
24
+ xfintech/data/common/cache.py,sha256=bau_HKtOhVeKddXqozvB2PU6P64niWCHI3YkAkLhlBo,5114
25
+ xfintech/data/common/coolant.py,sha256=5HeL9_i5vKGkdi6H39EFTvXi_ck7GkD_ZSu8280HECA,5345
26
+ xfintech/data/common/metric.py,sha256=7ekUdqDrJtVIqLGLHtxPhw-rR0ixh27jQffTyS7FJ_c,4330
27
+ xfintech/data/common/paginate.py,sha256=ZyPXxSF6LQ_jn5GrDfNJwQ6znsYgTZe_oRzpgbE7Cvg,3672
28
+ xfintech/data/common/params.py,sha256=ov_Sy1ll0x1781f-t448zE3loigkn8OZShmP_GiRsdE,4691
29
+ xfintech/data/common/retry.py,sha256=3beJLoja5f-zw0TuRy1ITSXnPMSzMgrsy66PtKq8uo0,5975
30
+ xfintech/data/common/tests/__init__.py,sha256=pl6StwRixDD_R2ZPpWVLx33ELfwHTu5pnepFLyVjFe8,47
31
+ xfintech/data/common/tests/test_class_cache_all.py,sha256=9-ixy9TAgnEZiFq60ort7JLXqhr5zdFPiv9lmGL3Nkw,16114
32
+ xfintech/data/common/tests/test_class_coolant_all.py,sha256=5HGskHQQpV76G9s7yOFAwMoE-M09xFRDmizv3s-bIhk,15224
33
+ xfintech/data/common/tests/test_class_metric_all.py,sha256=EmrhLPU1MxlMrv1KG5AYOw_IDDEn8mPEX1RRcR_iA5M,17504
34
+ xfintech/data/common/tests/test_class_paginate_all.py,sha256=Teo9I-saYFYdEQnJiNCfpomGAdrMC2B3Z0M_LmB5Enk,15348
35
+ xfintech/data/common/tests/test_class_params_all.py,sha256=seLLTKZ9VMw1vEnGvkls5BLSjsgZ766-_NgSHmzKw8M,27248
36
+ xfintech/data/common/tests/test_class_retry_all.py,sha256=ETMdK0OA7WOvGYOy8xgFhu38ruGK3uwF-wVnuxeH2ww,17346
37
+ xfintech/data/job/__init__.py,sha256=ERE8t4HhSpeoiXVJOG5nzb1Vh0KHNYUW1j_w3KXwJJo,384
38
+ xfintech/data/job/errors.py,sha256=Ux3uxw_jHq1Ukr6WvuUT2ZJO3wH_VAAPBUzM8URhx3Q,2822
39
+ xfintech/data/job/house.py,sha256=kZlxnmoymCkksz4_dNNYZqsLKcPVtrB_lMWdy7AAp5E,4630
40
+ xfintech/data/job/job.py,sha256=bVA5lbJ-RG--axR_zCOqVObi3vVEAL5HdwbscYkfGH4,7841
41
+ xfintech/data/job/joblike.py,sha256=Fx5kTpqrEzkCOjPZGQHuNa6tCbo-ALDVAAMePFa9n5g,1380
42
+ xfintech/data/job/tests/__init__.py,sha256=vcyAJzG1GNgOiJKeodQcEuF0zL8tLo97zM8gCxggLEs,37
43
+ xfintech/data/job/tests/test_class_errors_all.py,sha256=0X_a5K5fvIs63ltv_mdb8j3x9Wzwo_rDNGVbkipRiWE,8078
44
+ xfintech/data/job/tests/test_class_house_all.py,sha256=5NsxycbCGMx3xPd4oWwb_4Irx4lw0VM6gbr_UyYL1Nk,19082
45
+ xfintech/data/job/tests/test_class_job_all.py,sha256=r5liKqzAaeSQThEATonn1Wca6PjUprXNfzRFyzKA0zU,20129
46
+ xfintech/data/job/tests/test_class_joblike_all.py,sha256=ZkdFDvXOf8jWm3A8NPQZKqKEMr7rI8SuFO8n27mPWdQ,11488
47
+ xfintech/data/relay/__init__.py,sha256=FmhfAqMEfblMgID53pfZ2hWB5Zqq0Ki24Bj5k2ft5-Y,129
48
+ xfintech/data/relay/client.py,sha256=mmVOCEwx8DEmAkgHy6a7ARtgxNDaXKNDLY5JDKwNqF0,3290
49
+ xfintech/data/relay/clientlike.py,sha256=lAaHjr7kcxLuhiSPCNwaHu21_I2x7APtnJrG8JPkys8,1255
50
+ xfintech/data/relay/tests/test_class_relayclient_all.py,sha256=zUOY_mxo83TnmwthyvMQcW4lISuyHw_TAc1JxF310Y4,16332
51
+ xfintech/data/relay/tests/test_class_relayclientlike_all.py,sha256=kjD3Elw71UFwHw56oOVumMFfaJSyaCgRAqe1BTaAi_o,13934
52
+ xfintech/data/source/__init__.py,sha256=jt2Eh_1MckMeagrIkJ3Pxbszf72Yv-ndzOGgFeQwiIk,244
53
+ xfintech/data/source/baostock/__init__.py,sha256=gxOdXgwcAlqZexnpTpfnuKYGIOeLnCJxH5GeR3k_7Xs,577
54
+ xfintech/data/source/baostock/job/__init__.py,sha256=p_Uhf_BGG1vE8yHDFqo2ZHiblmnozuefGaVu82cheE8,63
55
+ xfintech/data/source/baostock/job/job.py,sha256=8AkygoOOT3QWWTmm0aZQl4g09Y-MSKvRQo9gOeD1lYU,7468
56
+ xfintech/data/source/baostock/job/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
+ xfintech/data/source/baostock/job/tests/test_class_baostockjob_all.py,sha256=rDQXF7nnbJkiGAcnWJeGR8l5cFe2WCgNtvikHe1nhF4,17946
58
+ xfintech/data/source/baostock/session/__init__.py,sha256=T3FURDjIgJC04qwWhA8K5rnbJV3BW7nJGPpZE1djYjg,165
59
+ xfintech/data/source/baostock/session/relay.py,sha256=JpRQuGZ1lmTdgl-M6gpPmdpQMwwDosuIrQJbveTwejQ,6524
60
+ xfintech/data/source/baostock/session/session.py,sha256=QvbDpDpbyRUWEyS6lDPia2cBjX8Gp1fCeIMF9eXp2zE,7209
61
+ xfintech/data/source/baostock/session/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
+ xfintech/data/source/baostock/session/tests/test_class_relay_all.py,sha256=vutWuLHUUVVV9fbCJIumyvmh-BCGQCu6-5oA_I_fmrg,22846
63
+ xfintech/data/source/baostock/session/tests/test_class_session_all.py,sha256=w6uIlmdq7gfFe_6k6x9mrORUvMRkpo2jfaMD1dOMHn0,15072
64
+ xfintech/data/source/baostock/stock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
+ xfintech/data/source/baostock/stock/hs300stock/__init__.py,sha256=em8ENELMuY2sxnQRp_OR_aAdpp_q_6UMogj1wPkn0Po,61
66
+ xfintech/data/source/baostock/stock/hs300stock/constant.py,sha256=TwSLhqeCFyGNTzKcEXIPBtyWySW2qpxHYQjgRfcL86c,1475
67
+ xfintech/data/source/baostock/stock/hs300stock/hs300stock.py,sha256=-5f2trHn6zUpH_U96dzA8G5W_i19LjMHm-2FcxKYARY,4115
68
+ xfintech/data/source/baostock/stock/hs300stock/tests/__init__.py,sha256=BreuHdeHlkJFUkOG8FE8H55NwHzvXVM46oD5hrYYjEc,35
69
+ xfintech/data/source/baostock/stock/hs300stock/tests/test_class_hs300index_all.py,sha256=p2NSYAeY2wyN5xykQRcYQFFc24J40l6k2_niJVkbuiU,13515
70
+ xfintech/data/source/baostock/stock/minuteline/__init__.py,sha256=dxFGVSBA5Ma6Wfg2fsxE3rVcqRFrdo-2WJm7kZhbQZQ,346
71
+ xfintech/data/source/baostock/stock/minuteline/constant.py,sha256=usbcoaHBu5HBQQsWRK2HGZdCzB5iKFnQLZMbXtmTywc,3526
72
+ xfintech/data/source/baostock/stock/minuteline/minuteline.py,sha256=HjbgxUQilJEpb1FSsyHfWgsxDI3ObnNv9BLCjZzZ1Tw,5120
73
+ xfintech/data/source/baostock/stock/minuteline/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
+ xfintech/data/source/baostock/stock/minuteline/tests/test_class_minuteline_all.py,sha256=kA8nvymd5LEEmBjcs_3OjKt7b5-shl8Xcn-nIs2j_RM,20147
75
+ xfintech/data/source/baostock/stock/stock/__init__.py,sha256=hiHzHgrssGdbaB8t1-ndcbUCQoHt5NOCy7sotEcNYa0,319
76
+ xfintech/data/source/baostock/stock/stock/constant.py,sha256=17SbpeG2HlXVGbBPGjJYKOpcbUXZvJVSUdXVA0G2Kuw,1635
77
+ xfintech/data/source/baostock/stock/stock/stock.py,sha256=--a8gKCwpKIA6fAttNjXIzFwndQDtfJ0qWIh3wwDgFQ,4623
78
+ xfintech/data/source/baostock/stock/stock/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
+ xfintech/data/source/baostock/stock/stock/tests/test_class_stock_all.py,sha256=37AKqdymAXVfunlm_K1nVzRpUnFz8TxO_P7cH_hZjMA,16233
80
+ xfintech/data/source/baostock/stock/stockinfo/__init__.py,sha256=tA8Vc9d8ZzpoI8ICy9vqbnJ6nAGaOKl9SgMhNYh5dPE,139
81
+ xfintech/data/source/baostock/stock/stockinfo/constant.py,sha256=4_EMZQg6hwxN0j0vzqRlIt85wPGMm5U2JSF6OvPCwkg,2314
82
+ xfintech/data/source/baostock/stock/stockinfo/stockinfo.py,sha256=56CfL5Sy7DL3Z-3gGXCuByHD0SJxBU8aOPyy83gcdA8,5459
83
+ xfintech/data/source/baostock/stock/stockinfo/tests/__init__.py,sha256=WcMH1fHYrA5TRK47NaiRLJrc1fc0lNf-SCsB2ItMXFg,28
84
+ xfintech/data/source/baostock/stock/stockinfo/tests/test_class_stockinfo_all.py,sha256=FoHkxdlPVTo-eNlJAuyB6rmSssmcZ7bLoFAQtm7qHug,20574
85
+ xfintech/data/source/baostock/stock/sz50stock/__init__.py,sha256=mZB8PxOgxLRvDdAhaDuC4YipRLhw9jbFAnWoeSd1poo,58
86
+ xfintech/data/source/baostock/stock/sz50stock/constant.py,sha256=SIlxjvp-0JXVsp49PWI6DHfFcA_O9w-lICbzgotT_GY,1469
87
+ xfintech/data/source/baostock/stock/sz50stock/sz50stock.py,sha256=u9h8gI2ph0a7qvLGDrrluslF53teayJmnatN2XH_9MM,4101
88
+ xfintech/data/source/baostock/stock/sz50stock/tests/__init__.py,sha256=RAh9muYdBZFrdieT4vySbnarg37_nwOuK93_BD1hT0M,34
89
+ xfintech/data/source/baostock/stock/sz50stock/tests/test_class_sz50stock_all.py,sha256=HKLM3FgD9tXWTSPgdaMQOOhP8_69xTyHdk3dE2hGFdQ,12878
90
+ xfintech/data/source/baostock/stock/tradedate/__init__.py,sha256=4HLpN-6i-_C15pkFtbzWB0ixG5nb_wp5e8o2qCeFtvY,339
91
+ xfintech/data/source/baostock/stock/tradedate/constant.py,sha256=mieP312z-edTYf4mhm4yuQNi9B0v7osftxvK4OyEviI,2463
92
+ xfintech/data/source/baostock/stock/tradedate/tradedate.py,sha256=6T-VDZcD1Lb4eaWunaa3lsQ0K9LQW5FwFawhXxlBBZY,6817
93
+ xfintech/data/source/baostock/stock/tradedate/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
94
+ xfintech/data/source/baostock/stock/tradedate/tests/test_class_tradedate_all.py,sha256=RNSgpFLF9Q8LUfYLgggpb-pLUoOGD5jkedcmNXPPTN4,23206
95
+ xfintech/data/source/baostock/stock/zz500stock/__init__.py,sha256=ulpXdL-Sh9JTYJKmPkv6Va8W1Skto_dX6NQxZYJ6mmM,61
96
+ xfintech/data/source/baostock/stock/zz500stock/constant.py,sha256=BAbMY76qFyn_p_UMsZJVG-uiBF5xdxFk-HnFwGbbAeA,1616
97
+ xfintech/data/source/baostock/stock/zz500stock/zz500stock.py,sha256=mBs17Oz5Pl7nA0i5RuHqUG_jj2ivUP6cDwgc2vt_Xto,4115
98
+ xfintech/data/source/baostock/stock/zz500stock/tests/__init__.py,sha256=JOtZncF6gO8v4ga4GvZQ6HQyZYld63vsE7HrXnRf5tY,35
99
+ xfintech/data/source/baostock/stock/zz500stock/tests/test_class_zz500stock_all.py,sha256=RG_HbkkQrgCac__abEUhHCn5_y6qypAl6fSoigQeScQ,13737
100
+ xfintech/data/source/tushare/__init__.py,sha256=f2HPg9I-JHJxBw7IBIYmwtH6FzSy2cM0TkUs8ZMpz_I,2137
101
+ xfintech/data/source/tushare/job/__init__.py,sha256=MfYwlRzRHEQUFdfyrAU6mXO1eRiSCLyBUDpH7d5sUZY,61
102
+ xfintech/data/source/tushare/job/job.py,sha256=j7rsTsspsvEgwoHtPixsJJC3417dKivcEd2zfk91pQQ,8333
103
+ xfintech/data/source/tushare/job/tests/test_class_tusharejob_all.py,sha256=kMMyW7YiA72rfJ5JfzLOHjlI-aM04VwhKfk9XkexQgI,19024
104
+ xfintech/data/source/tushare/session/__init__.py,sha256=RPXXmSvak7CNurL4FHyU6-PJtj97wqacaqb8pXq1Xyg,95
105
+ xfintech/data/source/tushare/session/relay.py,sha256=LQOeRHivrCFqJqr0teLAVfBPJW6zGjZWpSFq65NbDlE,6708
106
+ xfintech/data/source/tushare/session/session.py,sha256=L_nfRfxdEuhfVCI0YTc6gLM0rUGyC_Zlji9NFKZKjM0,7246
107
+ xfintech/data/source/tushare/session/tests/test_class_relay_all.py,sha256=ySmMzgnm3LvYtNd6nI4GCDJTTMFmiecsO8ZQNLThUWo,23460
108
+ xfintech/data/source/tushare/session/tests/test_class_session_all.py,sha256=BKlh4qinf9nKfcunvALBRiO0XD7EiUDkr1Fc9gzo4VY,22234
109
+ xfintech/data/source/tushare/stock/__init__.py,sha256=NDXltCHg1H1WtnojX3LxMPxPJDmlQdSSw-0YdTQZuV4,1803
110
+ xfintech/data/source/tushare/stock/adjfactor/__init__.py,sha256=YMBUEZeRl1ZOCvBICSqY6m1gEnOke-eLqWZp0QoITvg,339
111
+ xfintech/data/source/tushare/stock/adjfactor/adjfactor.py,sha256=8t5zZxf_wJ30Q7ytwRzyGyGnScJJal3TtvLApTHH-lQ,4597
112
+ xfintech/data/source/tushare/stock/adjfactor/constant.py,sha256=nAmhwy8kQXbb2qB8m0bM9tQm5qJ_K3fianaG2gGJtc4,2073
113
+ xfintech/data/source/tushare/stock/adjfactor/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
114
+ xfintech/data/source/tushare/stock/adjfactor/tests/test_class_adjfactor_all.py,sha256=UD5wXiPrIpsIfRp0KMS9FAuyZynuhce8280cPtNmZMo,12662
115
+ xfintech/data/source/tushare/stock/capflow/__init__.py,sha256=dYQwniIkxHjY5RAWZOWqFDyOyfkCEsEvQrQTfBqdMZw,329
116
+ xfintech/data/source/tushare/stock/capflow/capflow.py,sha256=eOerjqLnAZmF5mSqcSWyykr7OWr1Ehkt4NhdTDbb8to,5244
117
+ xfintech/data/source/tushare/stock/capflow/constant.py,sha256=pPIhm3pZwqIz07md2H6jM7tMRcN1TJU-5Q1t7gPYW-4,5449
118
+ xfintech/data/source/tushare/stock/capflow/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
+ xfintech/data/source/tushare/stock/capflow/tests/test_class_capflow_all.py,sha256=BJHJ4rGa2JPUwUP0tXKSYWLRS7zTvrh7O3qhVsP2zDQ,22200
120
+ xfintech/data/source/tushare/stock/capflowdc/__init__.py,sha256=gxSk5AqCNb-OxNMgSDyY3Ta31V29T_GBfYfcXZklH5c,339
121
+ xfintech/data/source/tushare/stock/capflowdc/capflowdc.py,sha256=0pX4Cr5_d-flL9tR4Vg4fWkDlu3KsPOHbKPDA6622bw,5183
122
+ xfintech/data/source/tushare/stock/capflowdc/constant.py,sha256=NijUo0pqLSiCtcYvEaLkwihwgECyL9_SUetRVgFCotI,4635
123
+ xfintech/data/source/tushare/stock/capflowdc/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
+ xfintech/data/source/tushare/stock/capflowdc/tests/test_class_capflowdc_all.py,sha256=CP0SJ5GXYhWomxWlOyYlujmMzuqxV6_1bnLymBEPpLQ,30711
125
+ xfintech/data/source/tushare/stock/capflowths/__init__.py,sha256=cPQzo50oi2ix40SHNxiwmmOqwIT-aqJcQnd-pMKl5CQ,344
126
+ xfintech/data/source/tushare/stock/capflowths/capflowths.py,sha256=HYFBmzM5RRr_Y-YiZ3qDi44Sadu3_QZwds2jJ6BnlFA,5465
127
+ xfintech/data/source/tushare/stock/capflowths/constant.py,sha256=UjPUyZ2RaAZLq2PloygbJLJEztwb2_QXOObi2v9sYIQ,4128
128
+ xfintech/data/source/tushare/stock/capflowths/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
+ xfintech/data/source/tushare/stock/capflowths/tests/test_class_capflowths_all.py,sha256=0MNamhn0XZpjb8uwLccuY-fYnfNMDNi6QDG3cr3uTPc,20669
130
+ xfintech/data/source/tushare/stock/company/__init__.py,sha256=UR6wADUmH1Y9dZWpcKIXzE4eAqqZSYzv77-L1IZoccw,329
131
+ xfintech/data/source/tushare/stock/company/company.py,sha256=oE9uhIRy9EpMCmIBgpNAuH1QuGOH6zxm3ZTA8DbuB8k,6217
132
+ xfintech/data/source/tushare/stock/company/constant.py,sha256=XR7cvQ-ZMa8BgTILHI8EN2EopMG0CCij5yJFaP3zrUw,4353
133
+ xfintech/data/source/tushare/stock/company/tests/__init__.py,sha256=v9U-mHadyL_MxaUOOcASVRbUVcG3TFHDL3CAA4M1xRM,34
134
+ xfintech/data/source/tushare/stock/company/tests/test_class_company_all.py,sha256=iU6eq-St72JDm1vcQVUFDMwzxlRPzo5iwAXCQTe8aVU,29654
135
+ xfintech/data/source/tushare/stock/companybusiness/__init__.py,sha256=Dg21x1acty-TGCQegtkvBGSRPCWpUrNkj0DnSHWun1c,378
136
+ xfintech/data/source/tushare/stock/companybusiness/companybusiness.py,sha256=eyTb98zscmfMkd0WOEqk8Mh1jUtCAUMyZYNsf7UEQH4,5767
137
+ xfintech/data/source/tushare/stock/companybusiness/constant.py,sha256=CSZ09hz_wUBi7gZudaaZOTvjL-vSSk-p6sMAJB9dOnE,3234
138
+ xfintech/data/source/tushare/stock/companybusiness/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
+ xfintech/data/source/tushare/stock/companybusiness/tests/test_class_companybusiness_all.py,sha256=XIyghziUFGWrBeKahVrco_qrMKgXjW2VXyEn9jxagB4,21022
140
+ xfintech/data/source/tushare/stock/companycashflow/__init__.py,sha256=U2IbrEuYwS336NaNnubYQFrRKkPcMLmJllNlJdFYr-8,378
141
+ xfintech/data/source/tushare/stock/companycashflow/companycashflow.py,sha256=w_8oAq3hQ_4F8-RdBGdzxhXnHosWgOOVZbb9556Dr28,8936
142
+ xfintech/data/source/tushare/stock/companycashflow/constant.py,sha256=_2edDNDJsf-F0y-Qs7tQvSPSDNWkBfGDaDxCVYuim_g,23581
143
+ xfintech/data/source/tushare/stock/companycashflow/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
144
+ xfintech/data/source/tushare/stock/companycashflow/tests/test_class_companycashflow_all.py,sha256=s6Nva6nykmzml73DQ36ha9RmwjQqVNA40w0KltfyGHw,20882
145
+ xfintech/data/source/tushare/stock/companydebt/__init__.py,sha256=394OR2juVGA-0IeyWiTIh_Ddm-3L8Gj8sZEIY0c8TnM,349
146
+ xfintech/data/source/tushare/stock/companydebt/companydebt.py,sha256=aTuJkf5C1J1biEWK-WZl9isSTXnrrnZQSKG5pQWQL-c,10409
147
+ xfintech/data/source/tushare/stock/companydebt/constant.py,sha256=K3LRKASbVPq--lomi-v3WHV7XaDLke0_q5cKJIDIug0,31831
148
+ xfintech/data/source/tushare/stock/companydebt/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
+ xfintech/data/source/tushare/stock/companydebt/tests/test_class_companydebt_all.py,sha256=TioSh4z9GOLHwjodQj0vCeBuJ6we6jeq__S4DYBlGts,21757
150
+ xfintech/data/source/tushare/stock/companyoverview/__init__.py,sha256=NMlL7IjomaUtH4uoTowwpXtxUcYDzm4adVBwAagWinY,378
151
+ xfintech/data/source/tushare/stock/companyoverview/companyoverview.py,sha256=4_WoCWefcXIUtGNmXvwx9KZqYsT_7yWeILfvlRkvH9c,6737
152
+ xfintech/data/source/tushare/stock/companyoverview/constant.py,sha256=OCLSwR-xLvOuIrP6w-MxkXeNT6B18Rq6FvAPhUqErLI,8210
153
+ xfintech/data/source/tushare/stock/companyoverview/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
154
+ xfintech/data/source/tushare/stock/companyoverview/tests/test_class_companyoverview_all.py,sha256=mm1NG4ONx1rALqe0aBp96oVF3yp8ZRJfaxB6Cqc0XOE,22135
155
+ xfintech/data/source/tushare/stock/companyprofit/__init__.py,sha256=VSGwQitk-MVjZWbkix_toKOOPCzazMNV0gSYJ9CbU6A,368
156
+ xfintech/data/source/tushare/stock/companyprofit/companyprofit.py,sha256=FCC2NqJopKJVIyXyJZlqccchhnaD2U2Y6hxXLdKYNl8,8305
157
+ xfintech/data/source/tushare/stock/companyprofit/constant.py,sha256=F2UEMkTl4zQFQ2th1LoTqnwEG1xyCqDsDtqnDu4ob8Q,19967
158
+ xfintech/data/source/tushare/stock/companyprofit/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
159
+ xfintech/data/source/tushare/stock/companyprofit/tests/test_class_companyprofit_all.py,sha256=YyQc--V7IyE5aF8owfMjmOsnCGp4RGh1v3WXYAdHGSM,23360
160
+ xfintech/data/source/tushare/stock/conceptcapflowdc/__init__.py,sha256=5D2LO_bhax2Kp_I60hofNoOVRqB9APNGwaguJMHX0WI,383
161
+ xfintech/data/source/tushare/stock/conceptcapflowdc/conceptcapflowdc.py,sha256=s7AUEf8pLoph2qTN1O5UmDWzS2Wn_Gqu3bl8RaaTs1M,5525
162
+ xfintech/data/source/tushare/stock/conceptcapflowdc/constant.py,sha256=Cuv5bafI2JP02AGUQbNr9huPSqn5Vsj_gRC683lRdfw,5405
163
+ xfintech/data/source/tushare/stock/conceptcapflowdc/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
+ xfintech/data/source/tushare/stock/conceptcapflowdc/tests/test_class_conceptcapflowdc_all.py,sha256=MivWQfm0F1wyPIDbHCoJGhTJf_i8FfaD5WSuZIHbdoQ,22873
165
+ xfintech/data/source/tushare/stock/conceptcapflowths/__init__.py,sha256=91cbnB1kJLQ65ttnWYvPnz58tTknR-TdvtWFLp4W_ec,388
166
+ xfintech/data/source/tushare/stock/conceptcapflowths/conceptcapflowths.py,sha256=SdRaKTtYnxOWRT1GZrSyvDX7iS8OqOtlSwPpH7cJXj4,5983
167
+ xfintech/data/source/tushare/stock/conceptcapflowths/constant.py,sha256=Qrfa1vlRRUaUPNuGpAUWdeICMNradqzXmEj6gBnAupQ,3768
168
+ xfintech/data/source/tushare/stock/conceptcapflowths/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
+ xfintech/data/source/tushare/stock/conceptcapflowths/tests/test_class_conceptcapflowths_all.py,sha256=HHDULLKwXkmQDWlK0Q2RgFpWiKE17xJlPes8MESP2Z8,20036
170
+ xfintech/data/source/tushare/stock/dayline/__init__.py,sha256=4YoOdXDtf8C43hIcwXL-qbVnCZW4C9NoDE9qFslM9RY,329
171
+ xfintech/data/source/tushare/stock/dayline/constant.py,sha256=GgmLVoX5-kFpKw9ongVcu9epfugI5Qi6Wv6KkYE0W-M,3414
172
+ xfintech/data/source/tushare/stock/dayline/dayline.py,sha256=bw0czDwYp6MowppTZYgwWN9oTEN2FfPs0j7Ss0fe1LA,5416
173
+ xfintech/data/source/tushare/stock/dayline/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
174
+ xfintech/data/source/tushare/stock/dayline/tests/test_class_dayline_all.py,sha256=a2x8X28njMpgmtWw4LEVNUKeHlTBnD7TDnXprQp3Fyg,19379
175
+ xfintech/data/source/tushare/stock/industrycapflowths/__init__.py,sha256=SXZ05mGW9hSvIbUDOUr-nGh4WIQ2HXKbRHbVfHFuBGI,393
176
+ xfintech/data/source/tushare/stock/industrycapflowths/constant.py,sha256=bxfE4xrkmjWbVSDzB0iFmO6Ruowy5X4m2Wz7xHzihfE,3710
177
+ xfintech/data/source/tushare/stock/industrycapflowths/industrycapflowths.py,sha256=GJjvv_x8fc7NcfVqdGZj6lkMJXatMpTRmpYdJSizj-g,6025
178
+ xfintech/data/source/tushare/stock/industrycapflowths/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
179
+ xfintech/data/source/tushare/stock/industrycapflowths/tests/test_class_industrycapflowths_all.py,sha256=_2k5jXdZzHJfmpUZJ-3hShPC7ZywQvZg_b81fkEfWnY,25397
180
+ xfintech/data/source/tushare/stock/marketindexcapflowdc/__init__.py,sha256=S31C-exK352qwyj5Cq929zjbYZzOrjxOIzCKmgvcOb4,403
181
+ xfintech/data/source/tushare/stock/marketindexcapflowdc/constant.py,sha256=WNXeH9Ny2xdBdpDNwKuPhpfcBCaf1jmi7NT3JlpZbJo,4622
182
+ xfintech/data/source/tushare/stock/marketindexcapflowdc/marketindexcapflowdc.py,sha256=9BanrVxK8mT8MYbUet0PygR4XABPP9hrGm6v6Xppxyw,5383
183
+ xfintech/data/source/tushare/stock/marketindexcapflowdc/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
184
+ xfintech/data/source/tushare/stock/marketindexcapflowdc/tests/test_class_marketindexcapflowdc_all.py,sha256=4YBbwi0m0SeiA0myB_ZSTeIxCCDypaFWK5aTktzu2jc,30853
185
+ xfintech/data/source/tushare/stock/monthline/__init__.py,sha256=fQGh8TLls7unT08_s03Phc1hOsFkO_CxII3uwK1vDAc,339
186
+ xfintech/data/source/tushare/stock/monthline/constant.py,sha256=q-dxY-gsH2p0N5INd_NuYsUPBn7FiF1qvI3r9Ay7H1k,3352
187
+ xfintech/data/source/tushare/stock/monthline/monthline.py,sha256=8UCWWJkHP-TPInXmuO-D_0sb2BJIumttCNLRstjJmsc,5468
188
+ xfintech/data/source/tushare/stock/monthline/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
+ xfintech/data/source/tushare/stock/monthline/tests/test_class_monthline_all.py,sha256=b2gInBBeyEoiZ_IGSh93DjFzt_c1xMfM1VswPsvuBXI,19053
190
+ xfintech/data/source/tushare/stock/stock/__init__.py,sha256=hiHzHgrssGdbaB8t1-ndcbUCQoHt5NOCy7sotEcNYa0,319
191
+ xfintech/data/source/tushare/stock/stock/constant.py,sha256=tJvVAaI1u6y8k994pF2j13aubjlVqAM5XhID_fE-6q4,4551
192
+ xfintech/data/source/tushare/stock/stock/stock.py,sha256=cVztlKWKdON76czdDhr3lN_CB52OV8j-kB7VBI9mbKY,6489
193
+ xfintech/data/source/tushare/stock/stock/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
+ xfintech/data/source/tushare/stock/stock/tests/test_class_stock_all.py,sha256=UJKA0IqKB8Rn3AVELq9wejFNuIflll1mXHKV-i_mGio,26810
195
+ xfintech/data/source/tushare/stock/stockdividend/__init__.py,sha256=ZI2JITtWzF60lROwaIpOwFX7wqvUUQ769fUvZ7iUl3I,368
196
+ xfintech/data/source/tushare/stock/stockdividend/constant.py,sha256=Q6nQA0orRTl_7hDJTOB7MSFX_vZepG0F9ZecFMCPO-0,5030
197
+ xfintech/data/source/tushare/stock/stockdividend/stockdividend.py,sha256=LfZ9xvWeI_9BrnQriyc9EXOQDLn-TzSGk27EF7eeXo8,5972
198
+ xfintech/data/source/tushare/stock/stockdividend/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
199
+ xfintech/data/source/tushare/stock/stockdividend/tests/test_class_stockdividend_all.py,sha256=3PyGm-2oD0GgZDF-KcUZJBVLO6pOGpSpFf0bk0XEr-A,24289
200
+ xfintech/data/source/tushare/stock/stockinfo/__init__.py,sha256=A14l3cMuqvYzw6rYks0zCmw3fiCD98nlNw3LAZiGV5Y,339
201
+ xfintech/data/source/tushare/stock/stockinfo/constant.py,sha256=pdPDaNfxHNIQRjzfCHNNB2Wpeq5SwlL_qlhFUC_jseU,5426
202
+ xfintech/data/source/tushare/stock/stockinfo/stockinfo.py,sha256=79bGRChbUcgE6b4evt-erCUom2JZ70RCyeqopRK55Lk,6414
203
+ xfintech/data/source/tushare/stock/stockinfo/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
204
+ xfintech/data/source/tushare/stock/stockinfo/tests/test_class_stockinfo_all.py,sha256=90QjgQt8l2RlPhQ9AzWPXUQyZ6j-mlzg2z0BxWagOac,32473
205
+ xfintech/data/source/tushare/stock/stockipo/__init__.py,sha256=JDPSSM4VNhKVjEBzgYHuU6gOLHA7KrPJNSf50DGpVW8,334
206
+ xfintech/data/source/tushare/stock/stockipo/constant.py,sha256=WSKWZQ4vzeELXNAirQVuQNJzZ8eGy9zQURPVB9S83cU,3690
207
+ xfintech/data/source/tushare/stock/stockipo/stockipo.py,sha256=kVBGEKTPC35SBxreqIgD9_6SZvVIqQZKTeezNXAffps,7168
208
+ xfintech/data/source/tushare/stock/stockipo/tests/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
209
+ xfintech/data/source/tushare/stock/stockipo/tests/test_class_stockipo_all.py,sha256=0HNMZ6unn7G5p_BC1IhKO41DfO2WWfPELsucrjixPZs,24223
210
+ xfintech/data/source/tushare/stock/stockpledge/__init__.py,sha256=FtBWcO8uYDgnAjWQIRq9pZKuadzqR-dyyL3F1-2oPfc,349
211
+ xfintech/data/source/tushare/stock/stockpledge/constant.py,sha256=NusytJlf5dHm6IYX6e0Sb9gPVYyJMzo7oBLWqzVGsV0,2593
212
+ xfintech/data/source/tushare/stock/stockpledge/stockpledge.py,sha256=RqPxJYE-rWEHdsAl2QNLIxFHqfiXu1y4-NgbWyNLHv8,4888
213
+ xfintech/data/source/tushare/stock/stockpledge/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
214
+ xfintech/data/source/tushare/stock/stockpledge/tests/test_class_stockpledge_all.py,sha256=JoNq-w2bnX7VoprZalEwwtsfpFsuJLAuOxFthkCzw0E,21622
215
+ xfintech/data/source/tushare/stock/stockpledgedetail/__init__.py,sha256=jg7xA4YOIenRoGGLWw8_dsneh-QDSn-weIjGD303vtU,388
216
+ xfintech/data/source/tushare/stock/stockpledgedetail/constant.py,sha256=iM0sRWhpDdh5aYbmWGewDANxCewJnTQiv2BdwILewi0,4069
217
+ xfintech/data/source/tushare/stock/stockpledgedetail/stockpledgedetail.py,sha256=KlsBOrz5f0J78VE3rx1g4iJQExA8tWRdEKm_yt5NVlg,5591
218
+ xfintech/data/source/tushare/stock/stockpledgedetail/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
219
+ xfintech/data/source/tushare/stock/stockpledgedetail/tests/test_class_stockpledgedetail_all.py,sha256=X83FBPe_U_p9KmIH2FTT6bS3NIziuuM6eSnX5Rms-8s,3577
220
+ xfintech/data/source/tushare/stock/stockst/__init__.py,sha256=ez96fefh71VfJ7QNBtA5odr-Ip6AonSve6dgbTUSXfc,329
221
+ xfintech/data/source/tushare/stock/stockst/constant.py,sha256=mvqhL-bC2XCQ5faIi1xmhAHkQU6nLTeqUWzTcC0yEaM,2464
222
+ xfintech/data/source/tushare/stock/stockst/stockst.py,sha256=0xC0ENaOKM-_6bkM_sPrwwJy6RuWDk5ajx4fTFHEUFQ,6033
223
+ xfintech/data/source/tushare/stock/stockst/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
224
+ xfintech/data/source/tushare/stock/stockst/tests/test_class_stockst_all.py,sha256=3ARyH3Hf_aTZbyCygZpnsMipICPS6q3pvm8CcsQMmEg,21663
225
+ xfintech/data/source/tushare/stock/stocksuspend/__init__.py,sha256=mw5cV0XpRb03JE2U_m-MFIV7PsnXd7kU2IkmfICC65E,363
226
+ xfintech/data/source/tushare/stock/stocksuspend/constant.py,sha256=_hcpt5F5BBDv5yE-lnCIHYh-EHCh1h9qzGs6kkaLY78,2309
227
+ xfintech/data/source/tushare/stock/stocksuspend/stocksuspend.py,sha256=tZM4FqlLzqVPVsA_fExb3gZKjb-8uMzo7t2GQJB8Rqs,4770
228
+ xfintech/data/source/tushare/stock/stocksuspend/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
+ xfintech/data/source/tushare/stock/stocksuspend/tests/test_class_stocksuspend_all.py,sha256=GniTjZgS-MeVLNSyalSjERR3oYCvZDfqWOEjY8FAqGg,20498
230
+ xfintech/data/source/tushare/stock/techindex/__init__.py,sha256=UB07c-uvycyiS1S9muQyJlhS1uerBl8t7FlJkLWvamg,339
231
+ xfintech/data/source/tushare/stock/techindex/constant.py,sha256=wJNKL9pj0qg8ffqpaVn7A7zE-EfoQWwKlumiNJjkQO0,53492
232
+ xfintech/data/source/tushare/stock/techindex/techindex.py,sha256=sFsSnUBjqjYwGDe1d75h0KuJH_FtmRAqGYH91V3XSDM,11024
233
+ xfintech/data/source/tushare/stock/techindex/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
234
+ xfintech/data/source/tushare/stock/techindex/tests/test_class_techindex_all.py,sha256=k2kEFRxpoR18aPTGXy7R6fIUJerA7_en3qtWuGXONW8,21863
235
+ xfintech/data/source/tushare/stock/tradedate/__init__.py,sha256=4HLpN-6i-_C15pkFtbzWB0ixG5nb_wp5e8o2qCeFtvY,339
236
+ xfintech/data/source/tushare/stock/tradedate/constant.py,sha256=-T1TlLE6LmyFclPOS8qbhb4vGjW9wRE49fkmel3zlg8,2946
237
+ xfintech/data/source/tushare/stock/tradedate/tradedate.py,sha256=DbdP1dQkhYTm5lYPCrfLgeMjqzpxnumci9JtCwZ6BbM,7622
238
+ xfintech/data/source/tushare/stock/tradedate/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
239
+ xfintech/data/source/tushare/stock/tradedate/tests/test_class_tradedate_all.py,sha256=HPPmMH1tWuOEe2YvWRcdCArMGPRZMdNwm-AXhbwmMAU,31050
240
+ xfintech/data/source/tushare/stock/weekline/__init__.py,sha256=tbekg2lxee5Hw3yuP1Ldu3_Zt7PlxY_I_bLGdOdUIfY,334
241
+ xfintech/data/source/tushare/stock/weekline/constant.py,sha256=uSJT68zef0pnwS_V3G7GMcsskLWyKefTFdQGTAG1yqA,3349
242
+ xfintech/data/source/tushare/stock/weekline/weekline.py,sha256=H0o0bBgBhMV5PJ-Mf1qNzs6gY_SA5KidYvcKssXOfWk,5513
243
+ xfintech/data/source/tushare/stock/weekline/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
244
+ xfintech/data/source/tushare/stock/weekline/tests/test_class_weekline_all.py,sha256=tEvRRCxkggTKJcPq7kN_FIKhwzMxd8astGWtzvxcx9w,19007
245
+ xfintech/fabric/__init__.py,sha256=g4QlKWLV101llsz_IP9g7jvqcjZiGUgNtWaatZguy2Y,506
246
+ xfintech/fabric/column/__init__.py,sha256=7EI4DJIXZ94FqqYD3XvDAyjeoKcbHgn20NgKbesORuA,109
247
+ xfintech/fabric/column/info.py,sha256=sCFKvP-kldPbAU8vaKS-pJUuqAcZ2oI1Qsgb7Hq80qY,5783
248
+ xfintech/fabric/column/kind.py,sha256=iXd3m40BSm__FR7ePHOjpFva_DB5EWHSdJW4y32bBE0,2962
249
+ xfintech/fabric/column/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
250
+ xfintech/fabric/column/tests/test_class_info_all.py,sha256=1zLh-PG8aVWMCMLw4pYorGwOcC7rr3eMtww885x8oqU,4928
251
+ xfintech/fabric/column/tests/test_class_kind_all.py,sha256=bI779ZJOXm__5qRvpcThhKLMHLz9_rQMvZptWZAlyWs,2863
252
+ xfintech/fabric/table/__init__.py,sha256=axrfd8iCwZkHsoEenf3BmAu-TidnXlwJO2pvoJL6Xng,60
253
+ xfintech/fabric/table/info.py,sha256=tuoFnGcUWVfbjUPUFadHojSJEJIa5DlLUc0984QAjtg,7653
254
+ xfintech/fabric/table/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
255
+ xfintech/fabric/table/tests/test_class_info_all.py,sha256=q5QXGf6xaBoFXriN92SBMaIRQhbuWl9qWUE4tpvQJNY,13643
256
+ xfintech/serde/__init__.py,sha256=Xp-Y0NdP_TW9TDgDW-zCM6R9elkzLhfSdh-E2QyZ0VM,1055
257
+ xfintech/serde/common/__init__.py,sha256=sZoUmi664VYt69_J0naq1IdYkFqxs8IJiBfsUdYj190,204
258
+ xfintech/serde/common/dataformat.py,sha256=E8cKAJe2bGkphBedWQfDzPDqOdn29885lUif-B8dNTg,2213
259
+ xfintech/serde/common/deserialiserlike.py,sha256=kpNfLasaCOiwWvE0nMDQ49O6PsrlxX-13994-f9FAjo,1000
260
+ xfintech/serde/common/error.py,sha256=Zfq-HMt5ZHRTYCrmzSAna1oHAMucMMsYtgNcg7u7kDY,4357
261
+ xfintech/serde/common/serialiserlike.py,sha256=5wPUNPOIMZWhpk4IG5MLUoHrzSptIcJWKVSGvm4Zq_0,970
262
+ xfintech/serde/common/tests/__init__.py,sha256=E0RWvsyjqLJD4ieR7F_0PiEzwNEkwQn4iCx2hR0LaCw,41
263
+ xfintech/serde/common/tests/test_class_dataformat_all.py,sha256=29-4eBpV77zEqCHQRh4KIyOBEeuZc-QsRJU7fbFRZr0,18102
264
+ xfintech/serde/common/tests/test_class_deserialiserlike_all.py,sha256=pHKdjJw9fmSuCtVri8V7231mA_BJ0vL-p1J9l34RQdM,15705
265
+ xfintech/serde/common/tests/test_class_errors_all.py,sha256=ho-P_om6Hue-jcfJjl9ugJAJZZASo4oK-InsqmLXV9E,17696
266
+ xfintech/serde/common/tests/test_class_serialiserlike_all.py,sha256=L3qudv0LaiDwnV0YnTdFDBe4_dVcHNeVfJzlGYFuuNU,12221
267
+ xfintech/serde/deserialiser/__init__.py,sha256=UbE3nLV3BgKKtK3-VAunuwRVBqYaDiO0TAfJMHW49wU,145
268
+ xfintech/serde/deserialiser/pandas.py,sha256=T5OMBIbGfTgl2x7jNFKSCa3I0zNVvOH3C-xnyV-DpR0,3754
269
+ xfintech/serde/deserialiser/python.py,sha256=SJiw43Z0azeFzsmtDuxHmoEjZtZX3SGmdnXqCOuC8Gw,2103
270
+ xfintech/serde/deserialiser/tests/__init__.py,sha256=mxGYaDRfM7xlH7av3oYlOClXAxYECjfGQFvLKJw4Frg,33
271
+ xfintech/serde/deserialiser/tests/test_class_pandasdeserialiser_all.py,sha256=fQDI5eePRK1FX4bb4U_bzx1cwBoiHEwfBA3D7VmwasQ,19592
272
+ xfintech/serde/deserialiser/tests/test_class_pythondeserialiser_all.py,sha256=v06ArT3MDBqBb9pSFJvzVPIqzl12bBEkA0slLf9wHm4,19326
273
+ xfintech/serde/serialiser/__init__.py,sha256=gEj0MqEPMjd8Kc5V74RrcDJARcbDRGctZJqGCmNDIJI,137
274
+ xfintech/serde/serialiser/pandas.py,sha256=hu6dZUA6bjpc4od_tHDNNB2yDfba8H6zQAitaZWQxAs,3860
275
+ xfintech/serde/serialiser/python.py,sha256=iE0_xmxzOSgcdKiKEe5iHMg9cq2Ea-9OI5V2DdMpAec,2175
276
+ xfintech/serde/serialiser/tests/__init__.py,sha256=KVpk92y0IlNwj-6OYL1trW_JTACwmMuWzy8Ipw6ZyQI,31
277
+ xfintech/serde/serialiser/tests/test_class_pandasserialiser_all.py,sha256=YWeAeLUkFG4aMBWyk7NNeLF2Yzh-n4y4Yy5EpWBTZkw,15845
278
+ xfintech/serde/serialiser/tests/test_class_pythonserialiser_all.py,sha256=DxpuQ2iT-epWg9uI4tVgaKy4NLcG2RkUOJRM-EGftdI,16712
279
+ lib_x17_fintech-2.1.3.dist-info/METADATA,sha256=Vw4DNwALmOfnQPLyyjwl8Nyne-BU9fXtZkOOitzev4U,15590
280
+ lib_x17_fintech-2.1.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
281
+ lib_x17_fintech-2.1.3.dist-info/top_level.txt,sha256=ug-1rxDMx-tqwW6Aw_zyhPmQlQg1Kj45LRrQsL8UrlE,9
282
+ lib_x17_fintech-2.1.3.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 @@
1
+ MIT License
@@ -0,0 +1 @@
1
+ xfintech
xfintech/__init__.py ADDED
File without changes
@@ -0,0 +1,18 @@
1
+ from .artifact.artifact import Artifact
2
+ from .common.connect import ConnectLike
3
+ from .common.connectref import ConnectRef, ConnectRefLike
4
+ from .common.error import ConnectFailedError, ConnectKeyError, ConnectRefKeyError
5
+ from .instance.macos import MacOSConnect
6
+ from .instance.s3 import S3Connect
7
+
8
+ __all__ = [
9
+ "Artifact",
10
+ "ConnectLike",
11
+ "ConnectRef",
12
+ "ConnectRefLike",
13
+ "ConnectFailedError",
14
+ "ConnectKeyError",
15
+ "ConnectRefKeyError",
16
+ "MacOSConnect",
17
+ "S3Connect",
18
+ ]
@@ -0,0 +1,5 @@
1
+ from xfintech.connect.artifact.artifact import Artifact
2
+
3
+ __all__ = [
4
+ "Artifact",
5
+ ]
@@ -0,0 +1,168 @@
1
+ from __future__ import annotations
2
+
3
+ from typing import Any, Dict, Mapping, Optional
4
+
5
+ from xfintech.connect.common.connect import ConnectLike
6
+ from xfintech.connect.common.connectref import ConnectRef, ConnectRefLike
7
+ from xfintech.serde.common.dataformat import DataFormat
8
+ from xfintech.serde.common.deserialiserlike import DeserialiserLike
9
+ from xfintech.serde.common.serialiserlike import SerialiserLike
10
+
11
+
12
+ class Artifact:
13
+ """
14
+ 描述:
15
+ 数据制品类,用于管理数据引用、内容和元数据
16
+
17
+ 属性:
18
+ ref: ConnectRefLike, 数据引用对象
19
+ data: Any, 数据内容(可选)
20
+ meta: Dict[str, Any], 元数据(可选)
21
+
22
+ 方法:
23
+ from_dict(data): 从字典创建Artifact实例
24
+ write(connect, serialiser, format): 写入数据到存储
25
+ read(connect, deserialiser, format): 从存储读取数据
26
+ describe(): 返回制品描述信息
27
+ to_dict(): 转换为字典格式
28
+
29
+ 例子:
30
+ ```python
31
+ from xfintech.connect.artifact import Artifact
32
+ from xfintech.connect.common.connectref import ConnectRef
33
+
34
+ # 创建制品
35
+ ref = ConnectRef(location="s3://bucket/data.json")
36
+ artifact = Artifact(ref=ref, data={"key": "value"})
37
+
38
+ # 写入数据
39
+ artifact.write(connect=s3_connect, serialiser=json_serialiser, format="json")
40
+
41
+ # 读取数据
42
+ artifact2 = Artifact(ref=ref)
43
+ artifact2.read(connect=s3_connect, deserialiser=json_deserialiser, format="json")
44
+ ```
45
+ """
46
+
47
+ @classmethod
48
+ def from_dict(
49
+ cls,
50
+ data: Mapping[str, Any],
51
+ ) -> "Artifact":
52
+ return cls(
53
+ ref=data["ref"],
54
+ data=data.get("data"),
55
+ meta=data.get("meta"),
56
+ )
57
+
58
+ def __init__(
59
+ self,
60
+ ref: ConnectRefLike | Dict[str, str],
61
+ data: Optional[Any] = None,
62
+ meta: Optional[Mapping[str, Any]] = None,
63
+ ) -> None:
64
+ self.ref = self._resolve_ref(ref)
65
+ self.data = data
66
+ self.meta = self._resolve_meta(meta)
67
+
68
+ def _resolve_ref(
69
+ self,
70
+ ref: ConnectRefLike | Dict[str, str],
71
+ ) -> ConnectRefLike:
72
+ if isinstance(ref, ConnectRef):
73
+ return ref
74
+ if isinstance(ref, dict):
75
+ return ConnectRef.from_dict(ref)
76
+ msg = f"Invalid type for ref: {type(ref)}, expected ConnectRefLike or dict"
77
+ raise TypeError(msg)
78
+
79
+ def _resolve_meta(
80
+ self,
81
+ meta: Optional[Mapping[str, Any]],
82
+ ) -> Optional[Dict[str, Any]]:
83
+ if meta is None:
84
+ return None
85
+ return dict(meta)
86
+
87
+ def __str__(self) -> str:
88
+ return str(self.ref)
89
+
90
+ def __repr__(self) -> str:
91
+ return f"{self.__class__.__name__}(ref={self.ref})"
92
+
93
+ def write(
94
+ self,
95
+ connect: ConnectLike,
96
+ serialiser: Optional[SerialiserLike] = None,
97
+ format: Optional[DataFormat | str] = None,
98
+ **kwargs: Any,
99
+ ) -> None:
100
+ if self.data is None:
101
+ raise ValueError("No data to write")
102
+ try:
103
+ if serialiser is not None and format is not None:
104
+ payload = serialiser.serialise(
105
+ self.data,
106
+ format=format,
107
+ **kwargs,
108
+ )
109
+ else:
110
+ payload = self.data
111
+
112
+ self.ref = connect.put_object(
113
+ data=payload,
114
+ location=self.ref.location,
115
+ **kwargs,
116
+ )
117
+ except ValueError:
118
+ raise
119
+ except Exception as e:
120
+ raise Exception(f"Failed to write artifact: {e}") from e
121
+
122
+ def read(
123
+ self,
124
+ connect: ConnectLike,
125
+ deserialiser: Optional[DeserialiserLike] = None,
126
+ format: Optional[DataFormat | str] = None,
127
+ **kwargs: Any,
128
+ ) -> "Artifact":
129
+ try:
130
+ payload = connect.get_object(
131
+ location=self.ref.location,
132
+ **kwargs,
133
+ )
134
+ if deserialiser is not None and format is not None:
135
+ self.data = deserialiser.deserialise(
136
+ payload,
137
+ format=format,
138
+ **kwargs,
139
+ )
140
+ else:
141
+ self.data = payload
142
+ return self
143
+ except Exception as e:
144
+ raise Exception(f"Failed to read artifact: {e}") from e
145
+
146
+ def describe(self) -> Dict[str, Any]:
147
+ if hasattr(self.ref, "describe") and callable(self.ref.describe):
148
+ result = {"ref": self.ref.describe()}
149
+ else:
150
+ result = {"ref": str(self.ref)}
151
+
152
+ if self.meta is not None:
153
+ result["meta"] = self.meta
154
+ if self.data is not None:
155
+ result["data_type"] = str(type(self.data).__name__)
156
+ return result
157
+
158
+ def to_dict(self) -> Dict[str, Any]:
159
+ if hasattr(self.ref, "to_dict") and callable(self.ref.to_dict):
160
+ result = {"ref": self.ref.to_dict()}
161
+ else:
162
+ result = {"ref": str(self.ref)}
163
+
164
+ if self.meta is not None:
165
+ result["meta"] = self.meta
166
+ if self.data is not None:
167
+ result["data"] = self.data
168
+ return result
@@ -0,0 +1,3 @@
1
+ """
2
+ Tests for Artifact module
3
+ """