maxframe 1.0.0rc1__cp37-cp37m-win_amd64.whl → 1.0.0rc3__cp37-cp37m-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of maxframe might be problematic. Click here for more details.

Files changed (138) hide show
  1. maxframe/_utils.cp37-win_amd64.pyd +0 -0
  2. maxframe/codegen.py +3 -6
  3. maxframe/config/config.py +49 -10
  4. maxframe/config/validators.py +42 -11
  5. maxframe/conftest.py +15 -2
  6. maxframe/core/__init__.py +2 -13
  7. maxframe/core/entity/__init__.py +0 -4
  8. maxframe/core/entity/objects.py +46 -3
  9. maxframe/core/entity/output_types.py +0 -3
  10. maxframe/core/entity/tests/test_objects.py +43 -0
  11. maxframe/core/entity/tileables.py +5 -78
  12. maxframe/core/graph/__init__.py +2 -2
  13. maxframe/core/graph/builder/__init__.py +0 -1
  14. maxframe/core/graph/builder/base.py +5 -4
  15. maxframe/core/graph/builder/tileable.py +4 -4
  16. maxframe/core/graph/builder/utils.py +4 -8
  17. maxframe/core/graph/core.cp37-win_amd64.pyd +0 -0
  18. maxframe/core/graph/entity.py +9 -33
  19. maxframe/core/operator/__init__.py +2 -9
  20. maxframe/core/operator/base.py +3 -5
  21. maxframe/core/operator/objects.py +0 -9
  22. maxframe/core/operator/utils.py +55 -0
  23. maxframe/dataframe/__init__.py +1 -1
  24. maxframe/dataframe/arithmetic/around.py +5 -17
  25. maxframe/dataframe/arithmetic/core.py +15 -7
  26. maxframe/dataframe/arithmetic/docstring.py +5 -55
  27. maxframe/dataframe/arithmetic/tests/test_arithmetic.py +22 -0
  28. maxframe/dataframe/core.py +5 -5
  29. maxframe/dataframe/datasource/date_range.py +2 -2
  30. maxframe/dataframe/datasource/read_odps_query.py +7 -1
  31. maxframe/dataframe/datasource/read_odps_table.py +3 -2
  32. maxframe/dataframe/datasource/tests/test_datasource.py +14 -0
  33. maxframe/dataframe/datastore/to_odps.py +1 -1
  34. maxframe/dataframe/groupby/cum.py +0 -1
  35. maxframe/dataframe/groupby/tests/test_groupby.py +4 -0
  36. maxframe/dataframe/indexing/add_prefix_suffix.py +1 -1
  37. maxframe/dataframe/indexing/rename.py +3 -37
  38. maxframe/dataframe/indexing/sample.py +0 -1
  39. maxframe/dataframe/indexing/set_index.py +68 -1
  40. maxframe/dataframe/merge/merge.py +236 -2
  41. maxframe/dataframe/merge/tests/test_merge.py +123 -0
  42. maxframe/dataframe/misc/apply.py +3 -10
  43. maxframe/dataframe/misc/case_when.py +1 -1
  44. maxframe/dataframe/misc/describe.py +2 -2
  45. maxframe/dataframe/misc/drop_duplicates.py +4 -25
  46. maxframe/dataframe/misc/eval.py +4 -0
  47. maxframe/dataframe/misc/pct_change.py +1 -83
  48. maxframe/dataframe/misc/transform.py +1 -30
  49. maxframe/dataframe/misc/value_counts.py +4 -17
  50. maxframe/dataframe/missing/dropna.py +1 -1
  51. maxframe/dataframe/missing/fillna.py +5 -5
  52. maxframe/dataframe/operators.py +1 -17
  53. maxframe/dataframe/reduction/core.py +2 -2
  54. maxframe/dataframe/sort/sort_values.py +1 -11
  55. maxframe/dataframe/statistics/quantile.py +5 -17
  56. maxframe/dataframe/utils.py +4 -7
  57. maxframe/io/objects/__init__.py +24 -0
  58. maxframe/io/objects/core.py +140 -0
  59. maxframe/io/objects/tensor.py +76 -0
  60. maxframe/io/objects/tests/__init__.py +13 -0
  61. maxframe/io/objects/tests/test_object_io.py +97 -0
  62. maxframe/{odpsio → io/odpsio}/__init__.py +3 -1
  63. maxframe/{odpsio → io/odpsio}/arrow.py +12 -8
  64. maxframe/{odpsio → io/odpsio}/schema.py +15 -12
  65. maxframe/io/odpsio/tableio.py +702 -0
  66. maxframe/io/odpsio/tests/__init__.py +13 -0
  67. maxframe/{odpsio → io/odpsio}/tests/test_schema.py +19 -18
  68. maxframe/{odpsio → io/odpsio}/tests/test_tableio.py +50 -23
  69. maxframe/{odpsio → io/odpsio}/tests/test_volumeio.py +4 -6
  70. maxframe/io/odpsio/volumeio.py +57 -0
  71. maxframe/learn/contrib/xgboost/classifier.py +26 -2
  72. maxframe/learn/contrib/xgboost/core.py +87 -2
  73. maxframe/learn/contrib/xgboost/dmatrix.py +3 -6
  74. maxframe/learn/contrib/xgboost/predict.py +21 -7
  75. maxframe/learn/contrib/xgboost/regressor.py +3 -10
  76. maxframe/learn/contrib/xgboost/train.py +27 -17
  77. maxframe/{core/operator/fuse.py → learn/core.py} +7 -10
  78. maxframe/lib/mmh3.cp37-win_amd64.pyd +0 -0
  79. maxframe/protocol.py +41 -17
  80. maxframe/remote/core.py +4 -8
  81. maxframe/serialization/__init__.py +1 -0
  82. maxframe/serialization/core.cp37-win_amd64.pyd +0 -0
  83. maxframe/serialization/serializables/core.py +48 -9
  84. maxframe/tensor/__init__.py +69 -2
  85. maxframe/tensor/arithmetic/isclose.py +1 -0
  86. maxframe/tensor/arithmetic/tests/test_arithmetic.py +21 -17
  87. maxframe/tensor/core.py +5 -136
  88. maxframe/tensor/datasource/array.py +3 -0
  89. maxframe/tensor/datasource/full.py +1 -1
  90. maxframe/tensor/datasource/tests/test_datasource.py +1 -1
  91. maxframe/tensor/indexing/flatnonzero.py +1 -1
  92. maxframe/tensor/merge/__init__.py +2 -0
  93. maxframe/tensor/merge/concatenate.py +98 -0
  94. maxframe/tensor/merge/tests/test_merge.py +30 -1
  95. maxframe/tensor/merge/vstack.py +70 -0
  96. maxframe/tensor/{base → misc}/__init__.py +2 -0
  97. maxframe/tensor/{base → misc}/atleast_1d.py +0 -2
  98. maxframe/tensor/misc/atleast_2d.py +70 -0
  99. maxframe/tensor/misc/atleast_3d.py +85 -0
  100. maxframe/tensor/misc/tests/__init__.py +13 -0
  101. maxframe/tensor/{base → misc}/transpose.py +22 -18
  102. maxframe/tensor/{base → misc}/unique.py +2 -2
  103. maxframe/tensor/operators.py +1 -7
  104. maxframe/tensor/random/core.py +1 -1
  105. maxframe/tensor/reduction/count_nonzero.py +1 -0
  106. maxframe/tensor/reduction/mean.py +1 -0
  107. maxframe/tensor/reduction/nanmean.py +1 -0
  108. maxframe/tensor/reduction/nanvar.py +2 -0
  109. maxframe/tensor/reduction/tests/test_reduction.py +12 -1
  110. maxframe/tensor/reduction/var.py +2 -0
  111. maxframe/tensor/statistics/quantile.py +2 -2
  112. maxframe/tensor/utils.py +2 -22
  113. maxframe/tests/utils.py +11 -2
  114. maxframe/typing_.py +4 -1
  115. maxframe/udf.py +8 -9
  116. maxframe/utils.py +32 -70
  117. {maxframe-1.0.0rc1.dist-info → maxframe-1.0.0rc3.dist-info}/METADATA +2 -2
  118. {maxframe-1.0.0rc1.dist-info → maxframe-1.0.0rc3.dist-info}/RECORD +133 -123
  119. maxframe_client/fetcher.py +60 -68
  120. maxframe_client/session/graph.py +8 -2
  121. maxframe_client/session/odps.py +58 -22
  122. maxframe_client/tests/test_fetcher.py +21 -3
  123. maxframe_client/tests/test_session.py +27 -4
  124. maxframe/core/entity/chunks.py +0 -68
  125. maxframe/core/entity/fuse.py +0 -73
  126. maxframe/core/graph/builder/chunk.py +0 -430
  127. maxframe/odpsio/tableio.py +0 -322
  128. maxframe/odpsio/volumeio.py +0 -95
  129. /maxframe/{odpsio → core/entity}/tests/__init__.py +0 -0
  130. /maxframe/{tensor/base/tests → io}/__init__.py +0 -0
  131. /maxframe/{odpsio → io/odpsio}/tests/test_arrow.py +0 -0
  132. /maxframe/tensor/{base → misc}/astype.py +0 -0
  133. /maxframe/tensor/{base → misc}/broadcast_to.py +0 -0
  134. /maxframe/tensor/{base → misc}/ravel.py +0 -0
  135. /maxframe/tensor/{base/tests/test_base.py → misc/tests/test_misc.py} +0 -0
  136. /maxframe/tensor/{base → misc}/where.py +0 -0
  137. {maxframe-1.0.0rc1.dist-info → maxframe-1.0.0rc3.dist-info}/WHEEL +0 -0
  138. {maxframe-1.0.0rc1.dist-info → maxframe-1.0.0rc3.dist-info}/top_level.txt +0 -0
@@ -1,65 +1,64 @@
1
1
  maxframe/__init__.py,sha256=RujkARDvD6mhFpR330UQ0UfogvIdae5EjR1euFpTiYA,1036
2
- maxframe/_utils.cp37-win_amd64.pyd,sha256=KgF6Y-Z4Tn6X54AvWeAu8orJLwPLUcmi9sikFm3cLPc,309248
2
+ maxframe/_utils.cp37-win_amd64.pyd,sha256=-OiqUgyWjQbMovxcwvXz-3CEHV2hoU-YVpakT3Zl4Z8,309248
3
3
  maxframe/_utils.pxd,sha256=_qHN-lCY1FQgDFIrrqA79Ys0SBdonp9kXRMS93xKSYk,1187
4
4
  maxframe/_utils.pyx,sha256=_3p6aJEJ6WZYLcNZ6o4DxoxsxqadTlJXFlgDeFPxqUQ,17564
5
- maxframe/codegen.py,sha256=t56uoJpfbyLvrctodXn-q3VoLzbwPgNSaXUsL4Ig4Ao,18345
6
- maxframe/conftest.py,sha256=JE9I-5mP4u-vgUqYL22mNY3tqpGofM8VMe8c8VUYkzk,4403
5
+ maxframe/codegen.py,sha256=14zhlXF2O0ET6Om_F5zxiUMuyq-bqpLpwcEl_zeOChY,18190
6
+ maxframe/conftest.py,sha256=fx0swj3k0NYVEIn8I8m-as5PK_KkbhtHKmB7lDOswWA,4878
7
7
  maxframe/env.py,sha256=xY4wjMWIJ4qLsFAQ5F-X5CrVR7dDSWiryPXni0YSK5c,1435
8
8
  maxframe/errors.py,sha256=nhQVjRbH5EsyLZhyAufvHpMhfDN6eR8vcrv4sjaI7p8,1000
9
9
  maxframe/extension.py,sha256=XKgK2b42i-jfnLc0lBPiBMsGA6HMQ4a12mJc09tMAFc,2752
10
10
  maxframe/mixin.py,sha256=QfX0KqVIWDlVDSFs0lwdzLexw7lS7W_IUuK7aY1Ib8c,3624
11
11
  maxframe/opcodes.py,sha256=4Gj2svgrNNxylfUbQYs8WbDqTpoCoLtlNCtAYdHr-BU,10781
12
- maxframe/protocol.py,sha256=3SvkrIxd-NoDpUdJnYPUhzIkX5G53krG_DkynO96ivQ,18330
12
+ maxframe/protocol.py,sha256=1chsSG184gWP4d6GuobNARy5qJRFbQziqSfmBpORa9I,19378
13
13
  maxframe/session.py,sha256=CfDT2iwjl5NAisPrZ6LF0xG_hr75Wr0cfHd6rvtHajw,37515
14
- maxframe/typing_.py,sha256=pAgOhHHSM376N7PJLtNXvS5LHNYywz5dIjnA_hHRWSM,1133
15
- maxframe/udf.py,sha256=GJre7snHQxkoyUWX0rpDkrGGU8-qA-SmSe2H9nSMEfo,4422
16
- maxframe/utils.py,sha256=ame3LYmU3ByXNk9YLDi5aEru0SpIdMcEb7XCXh08qts,35489
14
+ maxframe/typing_.py,sha256=EsgH2QO4VF0TRdjshKyL0Tmgiy3Ow8doTwEuam5nStE,1220
15
+ maxframe/udf.py,sha256=Xrx3wrZCVX6zDggS1QGmHpuJhLgTG9HqLziId_NFnic,4471
16
+ maxframe/utils.py,sha256=YzVkoCst-Dj8q1Pp5XVEy__8ejtqViWlEtm2Fe3tFFE,34217
17
17
  maxframe/config/__init__.py,sha256=AHo3deaCm1JnbbRX_udboJEDYrYytdvivp9RFxJcumI,671
18
- maxframe/config/config.py,sha256=Z5a2FIBAXD_r9qWv_V6i_ei9zk4h4qOAUsZJxlVtWCM,14181
19
- maxframe/config/validators.py,sha256=pKnloh2kEOBRSsT8ks-zL8XVSaMMVIEvHvwNJlideeo,1672
18
+ maxframe/config/config.py,sha256=bH7dW_0xFNm8QTmh2hLba_WpCdetpKkk8ONCu26vNQM,15421
19
+ maxframe/config/validators.py,sha256=vs82UJa4xdY7tvbM7U4vOtXDJHrfdAOTvDkbrFtuGLU,2599
20
20
  maxframe/config/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
21
21
  maxframe/config/tests/test_config.py,sha256=FWQZ6KBUG_jY1-KaR-GKXl7khhlTbuLlk3uaEV8koM8,2839
22
22
  maxframe/config/tests/test_validators.py,sha256=kz9Yxiqvl_BJq2CT61JTzfpRyrjm6lFrjqIfqeld_yo,1274
23
- maxframe/core/__init__.py,sha256=KxXGWHijQZqmI4yIpQO7N6kQ0ok1UiUnae7Jh0jSgBA,1678
23
+ maxframe/core/__init__.py,sha256=uNccOOfZ1aCxvUsz8ic5kObQkrBgfUv8ExU7OScyW1w,1508
24
24
  maxframe/core/base.py,sha256=43qZ_sJFgW857qhT1jqgsjdAsBy9tzCeqeX62CPm4vM,4691
25
25
  maxframe/core/mode.py,sha256=a-2AjLrIaqemN3pZPFhdfrPYXR7ryCLcsT1KJwWKPb0,3107
26
- maxframe/core/entity/__init__.py,sha256=pUaRpxYxgP1pQuAjGEl9DxAJEvz5Tp_Tpzh4dnxmII0,1251
27
- maxframe/core/entity/chunks.py,sha256=zKk8Iyc3IkakIDW1bMYq_zZNLrR4ZMdXH-mBuOiFerM,2202
26
+ maxframe/core/entity/__init__.py,sha256=G3cRUyYuSNZ7HS13BLJAj7KBCaAqNSd2wx-MiHU0Hxc,1108
28
27
  maxframe/core/entity/core.py,sha256=aFwjNMhTJ4ybr1WzmMVSTG211fzutzaATs14QoNh-JM,4170
29
28
  maxframe/core/entity/executable.py,sha256=CKxFGvFPfY_8JBprhpyndhTSLgVLtUG4G5n7Dw0dHnw,11275
30
- maxframe/core/entity/fuse.py,sha256=X1lI0WXj5t0flgGI5-qlVl5LoYkAdLJHk2Vv767C9G4,2350
31
- maxframe/core/entity/objects.py,sha256=-cnPtk7LBIcFk4d7CY6MwDhlkoW42Xv3qdI2CD03puA,1898
32
- maxframe/core/entity/output_types.py,sha256=NnNeDBVAEhD8dtPBWzpM7n6s8neVFrahjd0zMGWroCc,2735
33
- maxframe/core/entity/tileables.py,sha256=6jJyFscvb8sH5K_k2VaNGeUm8YrpevCtou3WSUl4Dw8,13973
29
+ maxframe/core/entity/objects.py,sha256=-9Yi8pcy-Rk-mYgrrClNUwPgq65b5Ns3L3yOvGKyCX8,3882
30
+ maxframe/core/entity/output_types.py,sha256=eNjyM_4Z8V5LjEaDz3D6eJ_Ly6JyZy0LfSiHVmfKdyw,2623
31
+ maxframe/core/entity/tileables.py,sha256=Unv_pZSlqDfXKVpIkPjHcRDueUdKqb55ifQGwkBlhO0,11636
34
32
  maxframe/core/entity/utils.py,sha256=454RYVbTMVW_8KnfDqUPec4kz1p98izVTC2OrzhOkao,966
35
- maxframe/core/graph/__init__.py,sha256=n1WiszgVu0VdXsk12oiAyggduNwu-1-9YKnfZqvmmXk,838
36
- maxframe/core/graph/core.cp37-win_amd64.pyd,sha256=TO0OdO15Vbm1kasC7AdG9OYWdrYoMwHBQg9vlysdaYE,253440
33
+ maxframe/core/entity/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
34
+ maxframe/core/entity/tests/test_objects.py,sha256=8OAMgphXRVri3UewnCYoXfS3lJ_53yxFmR3rv2pWiMY,1392
35
+ maxframe/core/graph/__init__.py,sha256=IRTkHcVzI57tPXZ3agJJb-atpoD-9Jk4vtcRj3XQXzg,782
36
+ maxframe/core/graph/core.cp37-win_amd64.pyd,sha256=Lr9jcmyiSzWZEYa1UfV880hU7z_ZyAqGCWr8D3j7zM8,253440
37
37
  maxframe/core/graph/core.pyx,sha256=J619C6xfVCF8NQ8oeinhICYSg-w5ecX-dnBI7NB-6n0,16390
38
- maxframe/core/graph/entity.py,sha256=RT_xbP5niUN5D6gqZ5Pg1vUegHn8bqPk8G8A30quOVA,5730
39
- maxframe/core/graph/builder/__init__.py,sha256=vTRY5xRPOMHUsK0jAtNIb1BjSPGqi_6lv86AroiiiL4,718
40
- maxframe/core/graph/builder/base.py,sha256=IzNYD4A2alnYaOvZnipDzC-ZIfNsYR80wLnFcx7bJzc,2635
41
- maxframe/core/graph/builder/chunk.py,sha256=2fMJUC1mcw-0CJU42GJo3PulJLrCjd0WfdKbi38dKkU,16619
42
- maxframe/core/graph/builder/tileable.py,sha256=-xSeO8uVzq6QXJ_HnreebirRwG2rZs3nOysycmOXMXc,1264
43
- maxframe/core/graph/builder/utils.py,sha256=vO7_4ykzI1G194Oqn_tM6zVWwxLReJ0GL4lCXfOg-Zk,1565
38
+ maxframe/core/graph/entity.py,sha256=7DJtHi7Xum_Yp16caiQd2AMZd34PWDPy7kocjWhgl3o,5010
39
+ maxframe/core/graph/builder/__init__.py,sha256=fL_blRc623cJ5CQTiFG1d4OK8M97FcFqGbX9chwbUQs,655
40
+ maxframe/core/graph/builder/base.py,sha256=vfU9zeEQv-BP4f11CdIJD_opiU6uDjnEVknMJGUtzPw,2596
41
+ maxframe/core/graph/builder/tileable.py,sha256=ZgvTbndsd1TVA6iQK1xcwupTuZSsmeQSTgbd2hP0BiE,1207
42
+ maxframe/core/graph/builder/utils.py,sha256=656KxKPwE8Il8S8OefItfqkhHQ8kyfSjfqDag1Ie3UE,1353
44
43
  maxframe/core/graph/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
45
44
  maxframe/core/graph/tests/test_graph.py,sha256=nkVn_dLk0oT42HWJxnSjniC5ElXjsHxC1Jzlg1CKHcQ,7667
46
- maxframe/core/operator/__init__.py,sha256=IHBCB3KC6dlVnfJryHSd__3Xnso9CtwYJrbfsSJ6siE,1162
47
- maxframe/core/operator/base.py,sha256=3d2_iNxp06XCiiY_zZRNxm2Cvy2kR-5x9Di6tqbuuxA,15701
45
+ maxframe/core/operator/__init__.py,sha256=s2r2k2-5iP57gByVSg8K_fTj6iQPXOgSto0kW6bvOoM,1098
46
+ maxframe/core/operator/base.py,sha256=owRYDDMvnL_4bOdlQXLTq6NFeE6RiZYKSrFrDglkBqc,15635
48
47
  maxframe/core/operator/core.py,sha256=cDzq0_9k7pfUiyAkaIq2eLaP6fAw7uRS-7bacon0Acg,9539
49
48
  maxframe/core/operator/fetch.py,sha256=4g9kyJbIco7cDgbdUJOJNtC3NCploUU45jnateGYG8c,1563
50
- maxframe/core/operator/fuse.py,sha256=1XBA2T6X4WSMj8xssZoC8bSALuNIdYSg7NTKTgR14-E,954
51
- maxframe/core/operator/objects.py,sha256=bA8taaGQYVuKh3CxLjKTlAw4LNUar5Agol75-G8dhjY,2224
49
+ maxframe/core/operator/objects.py,sha256=OylWHC78AIpxM4M3ns4MzqGF7HzTJaWU9QJv-B3zKzQ,2028
52
50
  maxframe/core/operator/shuffle.py,sha256=fUp5dm6cOEL4JXVz2Vr33dzycQQwC5mNExO0-2GPwkE,4857
51
+ maxframe/core/operator/utils.py,sha256=91Doo94Yj7VPZBiu-0AEWs4eqGJwBqMxgWPokt09Qes,1761
53
52
  maxframe/core/operator/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
54
53
  maxframe/core/operator/tests/test_core.py,sha256=iqZk4AWubFLO24V_VeV6SEy5xrzBFLP9qKK6tKO0SGs,1755
55
54
  maxframe/core/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
56
55
  maxframe/core/tests/test_mode.py,sha256=fyRH-ksa6MogEs6kNhtXhCZyvhYqflgaXJYI3nSo-ps,2507
57
- maxframe/dataframe/__init__.py,sha256=6wzq6JcohLtvR9kkE2Pc476ExNGslCFRijKFE_R6PB8,2318
56
+ maxframe/dataframe/__init__.py,sha256=FqEhQAdEx5W8-P8mG3Wwzx-gJcScVpcqkaDAp6ejWgU,2323
58
57
  maxframe/dataframe/arrays.py,sha256=rOvhxMQars9E3SOYSu0ygBuuRVY0QV6xzengnMqKs4s,29616
59
- maxframe/dataframe/core.py,sha256=fOrn9ehPmZnymO-r586jpWW9DTMGt7HWvFMwv-JOrjM,76830
58
+ maxframe/dataframe/core.py,sha256=TYdl7KJwaJStivYErdT-57OhFn6S-OzP9SaCIacq7fA,76791
60
59
  maxframe/dataframe/initializer.py,sha256=WW96yQjquofNFt6RPZvgWW4SBmH0OEDj8-BxpuyKThY,10552
61
- maxframe/dataframe/operators.py,sha256=jl611oPN5TGpf6UDuIwcLUsjmTcbVBNLLd6cvq8TvKo,8144
62
- maxframe/dataframe/utils.py,sha256=nYpTY5TmpJGs2_1VQBNxR_6miPTcdpIbqgw0aqh1Axo,45539
60
+ maxframe/dataframe/operators.py,sha256=7u2v-yRl2wcTg8BmIXh-IFrj4TcKoegqf06gm-t0wGQ,7834
61
+ maxframe/dataframe/utils.py,sha256=sonPqTu6vwXg5lxYFsZg3ZjUsQhTokpdngH_R0-3Kjg,45477
63
62
  maxframe/dataframe/arithmetic/__init__.py,sha256=MPnITPuO7DDjAMTBawpennv6D0V9AnT6oF0nz2KUIqc,12837
64
63
  maxframe/dataframe/arithmetic/abs.py,sha256=EgyzciSwjE_I3ZBuzeVJFVzBHsxn9MWzCtvHgyEl6ek,1016
65
64
  maxframe/dataframe/arithmetic/add.py,sha256=wbmfAZgxjuP02ZUV4-VEsNhJlyo9tytXwkEx65ahuxI,1766
@@ -69,16 +68,16 @@ maxframe/dataframe/arithmetic/arcsin.py,sha256=z1s2UUosWOjKxp3qkC2XKJ4MeK3l3txQ2
69
68
  maxframe/dataframe/arithmetic/arcsinh.py,sha256=EbGXb8IrpHjBrGLDJxFpVgSUpJ3oiFgbzoVHKH4SzHo,963
70
69
  maxframe/dataframe/arithmetic/arctan.py,sha256=bYEkgWV7Etqq8DjnSaXWdTn736NHW-R7Va4wy83DcL0,958
71
70
  maxframe/dataframe/arithmetic/arctanh.py,sha256=USWdXHQU99W4PCsLpaen5kN3QlqaxMp-e9LIGnbIa4Y,963
72
- maxframe/dataframe/arithmetic/around.py,sha256=7x5GprO-pivegVZwJJxP6BEYRKHqVNOLVxVFUMau9Fg,4290
71
+ maxframe/dataframe/arithmetic/around.py,sha256=L5Akz-F4F-6zNSp9VamH-VZ0OkmbVBDjtAIO9m2kP6Y,3963
73
72
  maxframe/dataframe/arithmetic/bitwise_and.py,sha256=NWbfauXqEUW9N0mjy9SfdTMYpP6-Qjb1rFMM63OwSEw,1473
74
73
  maxframe/dataframe/arithmetic/bitwise_or.py,sha256=a3HW12Wz_XTGJQU0yuhFm_USY4A4ex4aSNNKh6yMFxM,1596
75
74
  maxframe/dataframe/arithmetic/bitwise_xor.py,sha256=jQmUMreUiOTlYraPEDhcdrYrtZisTRTX68Lll3uk818,1472
76
75
  maxframe/dataframe/arithmetic/ceil.py,sha256=YnNA0N6GRd3GfJfmq3Yc5nu95vqIteKzf7pRQ_sQ9Wk,948
77
- maxframe/dataframe/arithmetic/core.py,sha256=R5TklGPxLmbasTJLdHe7XTC0RsGJIErMon0nTpu-7eQ,14101
76
+ maxframe/dataframe/arithmetic/core.py,sha256=GJWdYOXmKhvessF1c7AiKl_-uHE6SQR-FzNfkgBnYNk,14409
78
77
  maxframe/dataframe/arithmetic/cos.py,sha256=7eWAEOvO8RePY6Bs3FDoSFtL57fBJdvLJRslx8Or63o,943
79
78
  maxframe/dataframe/arithmetic/cosh.py,sha256=X15rxbk0RymYTTG0ISUvtZCl2T3YIQvx-w3aTtMVjyc,948
80
79
  maxframe/dataframe/arithmetic/degrees.py,sha256=AdkR27ECvXJxNtie2pdiTcSu_mlX5zuhnljO_DL9OzQ,963
81
- maxframe/dataframe/arithmetic/docstring.py,sha256=K_l-akPUZ_XgDscehXWzk_QRKYH4rvszBWmXi_z1KO0,12961
80
+ maxframe/dataframe/arithmetic/docstring.py,sha256=bgj6BB3g_mRH1WqG2MMD4fRnG8LOxEu4krVVWmZhhRM,11466
82
81
  maxframe/dataframe/arithmetic/equal.py,sha256=PUlH2Hxmg2PJxSLCFPzec_EDgTX5x4iuxqSaJzziYnk,1519
83
82
  maxframe/dataframe/arithmetic/exp.py,sha256=22_EHcKx3d0x880QqPQYY_x8rUqaRhgTqAgvPrSt0PM,943
84
83
  maxframe/dataframe/arithmetic/exp2.py,sha256=3dRamSqFmgnRFVbjP3-8K4MX46uryNuZZwoif4zHsRI,948
@@ -109,26 +108,26 @@ maxframe/dataframe/arithmetic/tanh.py,sha256=mbGIJLCLPypcwbZhGdqfboFKVQ7RSy-B0lA
109
108
  maxframe/dataframe/arithmetic/truediv.py,sha256=MpvDwQ4SZ6ugXF04oFv0kheMcx-EcgkXeIBiPjh6MQQ,1872
110
109
  maxframe/dataframe/arithmetic/trunc.py,sha256=ji9K9VRxvDPfODJmZ_yKBY885YKTWwdGK99kx4ZEZ5U,953
111
110
  maxframe/dataframe/arithmetic/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
112
- maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=O7hK1y2mYwV15CYF1Ce9h9BbXStaKO3lGyqVbwBgLgI,25067
111
+ maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=VGoBadh4ahFXR5TJEVE3BK-dRqYCf5jo1yus5ekyjBM,25974
113
112
  maxframe/dataframe/datasource/__init__.py,sha256=SX8ZXJsvQYntLZiEk-X1LmbF6v6k-Kaueh0R04N2eCQ,655
114
113
  maxframe/dataframe/datasource/core.py,sha256=1X32MxCU3Y5vxTVEIkNNXx29eIARyRCvnkVe7ThT0wI,2768
115
114
  maxframe/dataframe/datasource/dataframe.py,sha256=P3kvDS_Jh6EGgJRVfh_rHVkVfMaHeGQ2U7rZT5Gr2Tk,2082
116
- maxframe/dataframe/datasource/date_range.py,sha256=At-TQwqMiTEshSk4gQvxpq0wSEibC0FwpMDnwcjaI4o,17748
115
+ maxframe/dataframe/datasource/date_range.py,sha256=wmralVkR1F7vYKnOAQA34gXqHE6MwqUuKAgVodsk8f8,17731
117
116
  maxframe/dataframe/datasource/from_index.py,sha256=c6ecX7miuig3-uZB3-aj68TkpUypzpaogZsUZSbTtBs,1911
118
117
  maxframe/dataframe/datasource/from_records.py,sha256=ygpKOMXZnDdWzGxMxQ4KdGv-tJFT_yhpLGnDlS1rNLc,3549
119
118
  maxframe/dataframe/datasource/from_tensor.py,sha256=mShHYi0fZcG7ZShFVgIezaphh8tSFqR9-nQMm5YKIhw,15146
120
119
  maxframe/dataframe/datasource/index.py,sha256=X_NShW67nYJGxaWp3qOrvyInNkz9L-XHjbApU4fHoes,4518
121
120
  maxframe/dataframe/datasource/read_csv.py,sha256=IvQihmpcZIdzSD7ziX92aTAHNyP5WnTgd2cZz_h43sQ,24668
122
- maxframe/dataframe/datasource/read_odps_query.py,sha256=6Z8yCSIG96PJFq8B3wk2D29xGedj7y3vV24vGbpoSUA,10269
123
- maxframe/dataframe/datasource/read_odps_table.py,sha256=d_8jeOMuxyo69l2BYR_kSMI6Ixv25BtqF95YtY9r1Pk,9425
121
+ maxframe/dataframe/datasource/read_odps_query.py,sha256=WpcYcNtncgVs3ACKF7M2-VGXzxLx1CGw4ZaAzglijb0,10525
122
+ maxframe/dataframe/datasource/read_odps_table.py,sha256=Uvld7GlDh9eofQOKlo3bNx8MnFYW7TnXM6zYMMgs8hs,9482
124
123
  maxframe/dataframe/datasource/read_parquet.py,sha256=SZPrWoax2mwMBNvRk_3lkS72pZLe-_X_GwQ1JROBMs4,14952
125
124
  maxframe/dataframe/datasource/series.py,sha256=elQVupKETh-hUHI2fTu8TRxBE729Vyrmpjx17XlRV-8,1964
126
125
  maxframe/dataframe/datasource/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
127
- maxframe/dataframe/datasource/tests/test_datasource.py,sha256=UumRBjE-bIuCi7Z4_3t8qb58ZcF8ePRZf3xF7DTvqIA,15041
126
+ maxframe/dataframe/datasource/tests/test_datasource.py,sha256=1RbSSg2WBs3d4E1m-kk70-begcdQuBcJ2RiZzBu3kn0,15488
128
127
  maxframe/dataframe/datastore/__init__.py,sha256=MmlHYvFacMReOHDQMXF-z2bCsLyrSHYBVwIlCsZGOK4,810
129
128
  maxframe/dataframe/datastore/core.py,sha256=HCqrZN47RP-IC6zDqLX_RErDUAWkcTB58FHNU70V2b4,762
130
129
  maxframe/dataframe/datastore/to_csv.py,sha256=sns4bBgNpq7Ihb-goNqaBRdiEtrG-V6jqhNkWGZ1YaE,7974
131
- maxframe/dataframe/datastore/to_odps.py,sha256=joTDca3-fF27ASoksjnuz6JT4ozn3x8t7nDpAG_OSaw,6596
130
+ maxframe/dataframe/datastore/to_odps.py,sha256=25D7h8QphJIb3PHSqTmrBJ8S01VBbccaEbj_pLsRbG4,6599
132
131
  maxframe/dataframe/datastore/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
133
132
  maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=385SCJK_XkddV9dJrRqSOuaXurpGjWd_QwRSeGTOTNU,1344
134
133
  maxframe/dataframe/extensions/__init__.py,sha256=x6QCVQIfpa8JP2Vu-nZwHJ1CzATnyPoKCBMqxjXwpO0,1439
@@ -142,16 +141,16 @@ maxframe/dataframe/groupby/__init__.py,sha256=wMjmvk4ced1uCm7bw0oodIKvaep61Khupr
142
141
  maxframe/dataframe/groupby/aggregation.py,sha256=cUnu-Bj6YD1TVkaafwL2aGIIqixLEq7s9-7BQ_1T2DI,12303
143
142
  maxframe/dataframe/groupby/apply.py,sha256=DQHyEfqj-3tfK-CxwpdVgya0_YC9dImeWYPZJDw7ckk,9735
144
143
  maxframe/dataframe/groupby/core.py,sha256=NG6e3sqIu5dnBw9_DCQEDtsnxM5e4Yl1oD7Z_qjdtWA,6254
145
- maxframe/dataframe/groupby/cum.py,sha256=A7vIWLsb50VLu3yAngO-BfZecjWj0Fk6TZ5v4uQEAPM,3879
144
+ maxframe/dataframe/groupby/cum.py,sha256=T5fVdcy8XzLjrTE7NNqkwVgydg_aKM8xhlcWCsjsHwM,3806
146
145
  maxframe/dataframe/groupby/fill.py,sha256=AXRmA_j-m7ig0udLCJ02FwIce2GLQ2U8KlnuCe-NY3U,4862
147
146
  maxframe/dataframe/groupby/getitem.py,sha256=owNzoE8UEfM41dfuntKkRBjjYYbY8O8CMJchIhCEyds,3344
148
147
  maxframe/dataframe/groupby/head.py,sha256=idlO3MCVKgHYmLsBrPMsUpxt3Zbha07r_ZJXJZy5P3k,3371
149
148
  maxframe/dataframe/groupby/sample.py,sha256=bM7xrF4dzAM8lA0gtkglEfmys1og27dwCm9UiFayJTU,7149
150
149
  maxframe/dataframe/groupby/transform.py,sha256=1Gn4uOydtRMwFo-CUXrSTyOwlbuJyeWNIzcf6VAIN2w,8841
151
150
  maxframe/dataframe/groupby/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
152
- maxframe/dataframe/groupby/tests/test_groupby.py,sha256=GiFRklxfp9RAD7jwuvNRbhg9mROpKPFxfXGtNhFWFCI,12516
151
+ maxframe/dataframe/groupby/tests/test_groupby.py,sha256=oidpLtSA3fhZldVRQ5-3PnfXKnyclqR-ApiNgzh-yzk,12740
153
152
  maxframe/dataframe/indexing/__init__.py,sha256=AkjowbPJu6kM4fJF5baU6g6FA7n2ux5__f4_2budLSs,3297
154
- maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=YMHFXnVcFsRJfVIOHlTWkOGCqzxWAJam3SXmIRjKGKk,3076
153
+ maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=YT8sIKWWy_t0dkuzvTlWM4n9Ni9m2TeCvADrhS5xX6E,3080
155
154
  maxframe/dataframe/indexing/align.py,sha256=-kV91o_-pq7rFsv0zgnGZuEyn8HqyUK_Ejv4VWF5fps,12434
156
155
  maxframe/dataframe/indexing/at.py,sha256=7Igb4I9_9drZSCZITFRNL3Q-7EI_mtfklUrnNP0apHo,2300
157
156
  maxframe/dataframe/indexing/getitem.py,sha256=eS8dnlMEP2zaYvzYZFlBNfwjD89UqT0MRIlNuDcAJQc,7958
@@ -160,12 +159,12 @@ maxframe/dataframe/indexing/iloc.py,sha256=O4lCMV2Q0GtSM3_FbKY6rl_1WUGcae-H2wHvC
160
159
  maxframe/dataframe/indexing/insert.py,sha256=bvKdAswI688hOIaL9EvU7LnbjpELUdv5QS7rogSn_5U,2997
161
160
  maxframe/dataframe/indexing/loc.py,sha256=senwgO_ijLJtbzaeqS_CMefV8nlf3guEQXKdSQcwYy0,15256
162
161
  maxframe/dataframe/indexing/reindex.py,sha256=v4Rd85aNfh3onzcFqOhdUjiLrDv9QuNtGh-OaWpnG-4,19699
163
- maxframe/dataframe/indexing/rename.py,sha256=E7gI6lHGoBbMnldtErxv5StmS7jrGDdXGtpDusavihA,14009
162
+ maxframe/dataframe/indexing/rename.py,sha256=ZNmURKN4DjMc9jsH8l8uyTXuu4QRFIqMT3TH0bD0oQM,12891
164
163
  maxframe/dataframe/indexing/rename_axis.py,sha256=ugKcve4Kp8EuSmokQFUL-mVhGQ1cd6IDZ3UauHPiFeQ,6511
165
164
  maxframe/dataframe/indexing/reset_index.py,sha256=_NFQZTjHzc_IgiqC-aqFJUfjneyJUN42-ujxGPfBVnQ,13524
166
- maxframe/dataframe/indexing/sample.py,sha256=cVpmTV4q0Lo5dK3RdIpP3G5Yo6A6rwCRcqQ-rBEKnPs,8393
165
+ maxframe/dataframe/indexing/sample.py,sha256=XrgzEugAL_WXJc_OkrWAugXUOIaqg3_OwWBp-hMee9U,8391
167
166
  maxframe/dataframe/indexing/set_axis.py,sha256=ECRV5rRfbsKAQ90nEZVWCtGyu_0hN8ZPTmWNRGIJ0zo,5724
168
- maxframe/dataframe/indexing/set_index.py,sha256=XHX9CA0nvPd0War2GTKgr_FKuir_Tiu1bfQ5qz3vBKo,2180
167
+ maxframe/dataframe/indexing/set_index.py,sha256=sJmXxBh-veIbf0LohLo69FSB2FTuYc0qOsyO7WQFX4k,4323
169
168
  maxframe/dataframe/indexing/setitem.py,sha256=N82AVPJ6iENXNJx7m662jPp2HH-Sb5QZvuOIoDlQJ7w,5134
170
169
  maxframe/dataframe/indexing/where.py,sha256=puKc4XR45KmJxCar8AwWbjJouEqYxW5-SdAWLuwCZ44,8875
171
170
  maxframe/dataframe/indexing/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
@@ -173,31 +172,31 @@ maxframe/dataframe/indexing/tests/test_indexing.py,sha256=F0tHjhVTZyGrE2khpxGIAv
173
172
  maxframe/dataframe/merge/__init__.py,sha256=QpaBvmmhCpnHqvJ35nX4FZ-MpPxkTrQod4UxnJWt_II,1069
174
173
  maxframe/dataframe/merge/append.py,sha256=9CgzHZEdnJjDwzuzdTMhodJAeOJJuUVjYT4RMFOW4nI,4973
175
174
  maxframe/dataframe/merge/concat.py,sha256=cIlwVguZTWFx6GX5fTZ3YctKNkn9wP72TpbxKR-F6ng,11807
176
- maxframe/dataframe/merge/merge.py,sha256=2bqjWlpW_EAbeyYhzQo1nKJ3l7DZJoSuxFmTfHej1X4,22231
175
+ maxframe/dataframe/merge/merge.py,sha256=_HZTybk_XKaSiBG_WLVYyQf1Z9FZVSpAyDK53h1giOI,31250
177
176
  maxframe/dataframe/merge/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
178
- maxframe/dataframe/merge/tests/test_merge.py,sha256=Mkk2f_NnxPqtG_2AyeG_Bt-CdY-JOcNuJ9ADCDA30H4,7480
177
+ maxframe/dataframe/merge/tests/test_merge.py,sha256=qRreRSpPIq3Yp1ARKhYgrNmwAIcWfF014imrlL3qJqk,11488
179
178
  maxframe/dataframe/misc/__init__.py,sha256=Lq82VMR4qWhYD1lYTbj8Wr7ndOh0CNATdOtlOikuZRQ,5401
180
179
  maxframe/dataframe/misc/_duplicate.py,sha256=EYNv1_sKm14d91Gm4_Buxo7b5Tuy93MOvaq1TTAUkis,1516
181
180
  maxframe/dataframe/misc/accessor.py,sha256=XtbMV6QrYb2m9oAd8swkFoKAq5mxj_QO0LVLVw5uJB4,10303
182
- maxframe/dataframe/misc/apply.py,sha256=hAuN5P9DrWVfHwXi1MZBQrAe0nRiTDHUc4nJvKC2XMk,24130
181
+ maxframe/dataframe/misc/apply.py,sha256=BIaBSjx-KxkdubPc_N_C_F5uuaV4aIdRdiPsZhN-7Qg,24057
183
182
  maxframe/dataframe/misc/astype.py,sha256=9CO4BEW98Flqk7HHWScjxRK8EdeTRgQDYcyRwEnyIB0,8033
184
- maxframe/dataframe/misc/case_when.py,sha256=txasRkyfwn2QCEVZ7W0lrI3_ia0PKwBRFBy6TLrQh1I,4992
183
+ maxframe/dataframe/misc/case_when.py,sha256=ApjsHykW53a61Rfe034S0wT1X6lzWk5zYJ7vIsaiQIc,5002
185
184
  maxframe/dataframe/misc/check_monotonic.py,sha256=LDltdmPq90fZn8A0ucqpNy0uswKo2hJx59Y4EHSN9l4,2506
186
185
  maxframe/dataframe/misc/cut.py,sha256=dOKWwd1D2CYU9LVQvfonMrD8E2eGeBONZvWN1ArCfMM,14288
187
186
  maxframe/dataframe/misc/datetimes.py,sha256=zR99O-8EKKWt4UtNdPI22K8N9mP9XSs9lDQLBPEmFlo,2582
188
- maxframe/dataframe/misc/describe.py,sha256=jPj3NZuWJ0T37kWFEs2kVWcKxJzoCXel5FuudGVJ0vU,4495
187
+ maxframe/dataframe/misc/describe.py,sha256=PaddhvhKVZDkG6WuWGWi3LL7Vg8uny_3WzlVbdKZseQ,4478
189
188
  maxframe/dataframe/misc/diff.py,sha256=j6C0PNb4eufB7ZU-mAXNNIC8y1wzHd6MHS-IWTz606E,5701
190
189
  maxframe/dataframe/misc/drop.py,sha256=UDP1EWpHPa0tkpjvNPIcstAiWoMainCMcvV7wefH7RA,13469
191
- maxframe/dataframe/misc/drop_duplicates.py,sha256=r-DMTWbDvEFGU4xKYFxgmMo64-dGV5WYzNwsrFtgou0,8595
190
+ maxframe/dataframe/misc/drop_duplicates.py,sha256=1Ax1QXghtk3bNZnvBaVDr4OMpR33WM_NU0dgZBYZMgc,8078
192
191
  maxframe/dataframe/misc/duplicated.py,sha256=w5aXwtDn5_ZbvnB0oCOoTE7EJQ6cdSnhTjL8SMci0Tw,8826
193
- maxframe/dataframe/misc/eval.py,sha256=1QdME2QuWOacxLxO2DjpeBYe8wJLx-SwBvH-GLDS0-0,24991
192
+ maxframe/dataframe/misc/eval.py,sha256=3UuqaMW0Pe6CRh82XtKiNNuWeJOyz_hzhzRZ2zqpBLQ,25091
194
193
  maxframe/dataframe/misc/explode.py,sha256=aWQObjpxgPCCm87Lc1cavqotETz6xVLm8HSsPhM3n5k,5182
195
194
  maxframe/dataframe/misc/get_dummies.py,sha256=fkoGya2HUVMlJviEfCy1toedfa_gOro_E0xrl-azGDg,7295
196
195
  maxframe/dataframe/misc/isin.py,sha256=mqce_GgIkT390glXJ4jq4JEcRYhpbJNkN6tqP-8x078,7148
197
196
  maxframe/dataframe/misc/map.py,sha256=NSsQvOFrRvULVHPOfJk3B_tIh2IRU4IE0oOF2qkL4mE,8385
198
197
  maxframe/dataframe/misc/melt.py,sha256=LoqZ45-J8WvXixtFEbEF1UCtZy4-E6loFtVdFghgt0A,5282
199
198
  maxframe/dataframe/misc/memory_usage.py,sha256=3d6g2lAW7R4BV_vpUpn2-BFs9cwbEW03UH-6AEhmue0,8137
200
- maxframe/dataframe/misc/pct_change.py,sha256=V4D2MH7b2EmtCHVKwYxX4wcGsuj1EBruwIXlJ5mAZ_c,4736
199
+ maxframe/dataframe/misc/pct_change.py,sha256=-T22ebhiTy7psZS9xE1087xKDuznasaNwoGXs5yYZPc,2584
201
200
  maxframe/dataframe/misc/pivot_table.py,sha256=5HmAdczDMJbznFq2omuBKjjib0WvTrohXGwCtHAMwOY,9782
202
201
  maxframe/dataframe/misc/qcut.py,sha256=kcYhSf6m47u5zIEPgG98nE3hv57e6uuCuJs_dxpcszE,3841
203
202
  maxframe/dataframe/misc/select_dtypes.py,sha256=qsrWW8BNBd-hAT1yIlrnbvBjfbzZyttzch7bxKgRkCg,3248
@@ -205,15 +204,15 @@ maxframe/dataframe/misc/shift.py,sha256=HCGKBuToksgu5LZR_k5eaQrdyrXCeqRZYbZs0J5-
205
204
  maxframe/dataframe/misc/stack.py,sha256=a3eWRUnFQ4okGUEirsdIq9taLfcRTCKnLfcXHg-sce8,8200
206
205
  maxframe/dataframe/misc/string_.py,sha256=AaEfHcPAJWZ8Ug-zbD0gjaBfuFXWfHDXbrHQ1Kaqes4,8322
207
206
  maxframe/dataframe/misc/to_numeric.py,sha256=VxYijzFTiUD9Jc62fE24tZ3iB8EVb9cBqZwvQFt2bHA,6440
208
- maxframe/dataframe/misc/transform.py,sha256=JotPUQzKGhCLRi53sk7USU9HscNjUKCzzus9PgTyhHU,12000
207
+ maxframe/dataframe/misc/transform.py,sha256=NabM88Ix5fFaH_waStAdjylj3BGT_Uel0c0pH1t8o90,11252
209
208
  maxframe/dataframe/misc/transpose.py,sha256=SsKRuN9Pj36D6kntnsLfzBsFHjSCiV1cZuPJuKHgbGU,3772
210
- maxframe/dataframe/misc/value_counts.py,sha256=7Yd3ZSrCRDMRX093IlzdsrTJ5UUx0n_lbD5AmXLUr_U,5674
209
+ maxframe/dataframe/misc/value_counts.py,sha256=EpgfnbPbndrTKgTE_xgZGW-uHZDw1MIWQUF40oGGWUI,5384
211
210
  maxframe/dataframe/misc/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
212
211
  maxframe/dataframe/misc/tests/test_misc.py,sha256=7P3-dJwsMVhD6ft5HNXorUp-SnO8o9eTTAoFGXzhiNg,16121
213
212
  maxframe/dataframe/missing/__init__.py,sha256=DQDpYqjvXN6o6TF76wJIpf1fZICOEJskljzwDNjN80k,1866
214
213
  maxframe/dataframe/missing/checkna.py,sha256=_Rd-HRX7lTzMV3myu745tzoTB8WIqDIJu2TcT1SfdB0,7113
215
- maxframe/dataframe/missing/dropna.py,sha256=fJ7xUmhWnViyPnW6nKTF3u2dktqsuwGimSyO71mh0kk,8518
216
- maxframe/dataframe/missing/fillna.py,sha256=U7pMLOk4aTXa9R5Ysqa_H8bkUWNVgyO3rjo_QII50hQ,9180
214
+ maxframe/dataframe/missing/dropna.py,sha256=at89SeMZxHZdmSFOInwtz7ap4g9Vy_4W4OK_Bj6DWpc,8520
215
+ maxframe/dataframe/missing/fillna.py,sha256=GIOayBXUBSQf6Enf8IR2UuVOvru3lR2SlXhiTLonM_w,9180
217
216
  maxframe/dataframe/missing/replace.py,sha256=g9KqENIuuaFW33KIFXTClngWcVu2ttrGa28UwbtQJ8o,13779
218
217
  maxframe/dataframe/missing/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
219
218
  maxframe/dataframe/missing/tests/test_missing.py,sha256=zhsgn-yonyXYhlFZtH2OpXtvN0NLxFOZpU_vCumTCqA,3223
@@ -225,7 +224,7 @@ maxframe/dataframe/reduction/__init__.py,sha256=ejIK5G6ylU0q37XVs_2DkmsnHTtYbE44
225
224
  maxframe/dataframe/reduction/aggregation.py,sha256=-v_jzKAiLGHOmv3MTDgqovfEYLgeJobU3CqaMWKqkRo,12948
226
225
  maxframe/dataframe/reduction/all.py,sha256=enpOWffBNXAEgFSaiZm0KPwU3izMvWd7M8smLwZjaeE,2044
227
226
  maxframe/dataframe/reduction/any.py,sha256=PensVOfgCcxu7u7-1OuMcD6gov2c2kN01B57O3eoHw8,2048
228
- maxframe/dataframe/reduction/core.py,sha256=QrZ4R9Q96wk7oaIzRZ2-KrFZcFbsbamZ8uUuQKAWdio,31232
227
+ maxframe/dataframe/reduction/core.py,sha256=Ys8mP0-p0zRzND8LtsZLeyBkTDeteJFoSqJCbS330BQ,31232
229
228
  maxframe/dataframe/reduction/count.py,sha256=YLx9bFb2IdnBIkTyApRad0x1yub6TmqncP6TzGcOL_Q,1800
230
229
  maxframe/dataframe/reduction/cummax.py,sha256=S2iUhfBL2lKwFKhFIYMQxlE26pYroEYKG3cqmG0gIAs,1043
231
230
  maxframe/dataframe/reduction/cummin.py,sha256=EWz1CUCQoTwxluvvQPtcNxWdIISr3bBaZPttB104Pdc,1043
@@ -251,12 +250,12 @@ maxframe/dataframe/reduction/tests/test_reduction.py,sha256=yXQNP838jNuDjev3JuLj
251
250
  maxframe/dataframe/sort/__init__.py,sha256=57j5S4NVcmcgI5pKlEWEio3qbtxdUCFA3B9sP1QJafU,1194
252
251
  maxframe/dataframe/sort/core.py,sha256=FxwuboZE5yuAtCCj7EWntuk_ueaMdM25JZKrArHY_yQ,1260
253
252
  maxframe/dataframe/sort/sort_index.py,sha256=R7PiCuI7kmoWX4EsmyJyqciettWi4CJl6_RMKZdxrmI,5565
254
- maxframe/dataframe/sort/sort_values.py,sha256=kPTaKVZzqSkMKTPLXANoK_NKK4IwShqXev6Kyo9kKEo,9179
253
+ maxframe/dataframe/sort/sort_values.py,sha256=Zw_JEA3VOukd9HSpxqBeIcMgU4qtjrbCQ3vC-7jwGng,9003
255
254
  maxframe/dataframe/sort/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
256
255
  maxframe/dataframe/sort/tests/test_sort.py,sha256=2KwQP4eyAL7rflYrbei9ocU5oum3NjiGurWirR2GzHg,2685
257
256
  maxframe/dataframe/statistics/__init__.py,sha256=gC4z9SHj8mG1EECYiMNeGPNF3aie1AOw8UATmiLG-bo,1117
258
257
  maxframe/dataframe/statistics/corr.py,sha256=ufSCKpITCR8HnKc7osxnxDwg8hvptrcKOjIeKsF4eB4,9763
259
- maxframe/dataframe/statistics/quantile.py,sha256=fISgDO8cMFKn1yjCV07BpowBYsS5HYwvBZkOCdglUJU,12054
258
+ maxframe/dataframe/statistics/quantile.py,sha256=v_Ff05C8eE9Suq3k_G_KWMHcfGvduS0Oap0PyOfknUY,11632
260
259
  maxframe/dataframe/statistics/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
261
260
  maxframe/dataframe/statistics/tests/test_statistics.py,sha256=tvk_kTcOuzRLFspidSPVoZrBVtVsbHhGb16LU-Vr3lU,2812
262
261
  maxframe/dataframe/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
@@ -278,7 +277,24 @@ maxframe/dataframe/window/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3
278
277
  maxframe/dataframe/window/tests/test_ewm.py,sha256=v1hM2ucFH_8aRn8AJqWEpvvVtSK9QQUCs911N0trbX8,2130
279
278
  maxframe/dataframe/window/tests/test_expanding.py,sha256=PsFYI6YXxNHYlsyaesy9yIAUSixp4IOrChmQtRGBpKc,2010
280
279
  maxframe/dataframe/window/tests/test_rolling.py,sha256=eJYHh4MhKm_e9h4bCnK_d_aAYlKGQtFAbZTTEILe6gU,1771
280
+ maxframe/io/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
281
+ maxframe/io/objects/__init__.py,sha256=QswbXcyRmPgMPdYyRFcm4maLAMDbOK0i-OUdHyyAn4Y,778
282
+ maxframe/io/objects/core.py,sha256=rhEYmS8Ty_cqJfjvTiPU-KaUVnr9DwPSIZEaPMZDH2U,4717
283
+ maxframe/io/objects/tensor.py,sha256=NQaYIItNYaeM0EcJ6TFejNWSSpXKSJjb6eI_ZKzXf6w,2749
284
+ maxframe/io/objects/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
285
+ maxframe/io/objects/tests/test_object_io.py,sha256=ElYAUf7jJtUMciZzzuEjPajSNEeqkMuWReHDDklo5Es,3189
286
+ maxframe/io/odpsio/__init__.py,sha256=xJbh1eHNI0D3xJG22VM3AHwwiwMIPldtGEJjildPsxc,925
287
+ maxframe/io/odpsio/arrow.py,sha256=yBdrld-Bh1eyLY_vcj6E0oA2WS9jiKlL93PNJASN7kk,4021
288
+ maxframe/io/odpsio/schema.py,sha256=dCXDzv4Uc2Msw1UhJyhvpsFMDSOecJNiRVsiN8VrSMk,12685
289
+ maxframe/io/odpsio/tableio.py,sha256=n2kepr8y-CeDyqVTzUPRJwrDdnaCOpwR9pBJ2A8IHX4,24819
290
+ maxframe/io/odpsio/volumeio.py,sha256=DmHWsbxgW_dja5YF17pXZvvzvSxTrbxxxCQejvtlDcs,2112
291
+ maxframe/io/odpsio/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
292
+ maxframe/io/odpsio/tests/test_arrow.py,sha256=yeDWFzsm2IMS-k6jimlQ7uim5T6WW1Anuy8didaf4cs,3194
293
+ maxframe/io/odpsio/tests/test_schema.py,sha256=Yv25EWTDAtNcxV1FTp5D1RH8M3uKDfokOEDMsVAgfaQ,12266
294
+ maxframe/io/odpsio/tests/test_tableio.py,sha256=XPgbCJj_hxscynqYO4L3_g67LckYLJznqzcJyRLCm_M,5769
295
+ maxframe/io/odpsio/tests/test_volumeio.py,sha256=gZga0IWoEkpu6DL3qpemPzo_zHxou-F-nj0g2zeUGa4,2956
281
296
  maxframe/learn/__init__.py,sha256=1QzrFCJmdZFy0Nh1Ng3V6yY_NVvoSUdTIqcU-HIa1wk,649
297
+ maxframe/learn/core.py,sha256=jQVOXTFond0ia9IdvObCV5MBpIgjPuxFSzyeg5AB11A,782
282
298
  maxframe/learn/contrib/__init__.py,sha256=2_AumQELt_0MMsSDS7nwk4Fy0TE807lasVuFvGEv1Lc,649
283
299
  maxframe/learn/contrib/utils.py,sha256=e4E-QLr7SAhCBTUX246SBpi9DtRNQAE-xOUxvNnFzZY,1714
284
300
  maxframe/learn/contrib/pytorch/__init__.py,sha256=a60NZy-COXEFgyC0uXJRBZGi-Vd9HZcqX62bKAMPKaM,703
@@ -287,12 +303,12 @@ maxframe/learn/contrib/pytorch/run_script.py,sha256=FOBXdJ9Q5QOirGGXq8_XwpwrTpDE
287
303
  maxframe/learn/contrib/pytorch/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
288
304
  maxframe/learn/contrib/pytorch/tests/test_pytorch.py,sha256=GHP-oD5uMU8LD90Jt2cHbYRDdM5efjzsjpeBkc3t_qE,1444
289
305
  maxframe/learn/contrib/xgboost/__init__.py,sha256=vk9xZO_FUwyVCrcLP1dbEz6JCZQBEHsmhGr1uQ45FAI,925
290
- maxframe/learn/contrib/xgboost/classifier.py,sha256=DWvQ9_GLg-ZeSFQp6NN5-7_BA9NxkpxEv5WtuodU31o,3022
291
- maxframe/learn/contrib/xgboost/core.py,sha256=RzGTONv1WgDb0ZXUxzDDkbqepvznAPRyjSgD2N4MdPc,5350
292
- maxframe/learn/contrib/xgboost/dmatrix.py,sha256=8bCcfJGG84s7sKBNcw4urvwPWqX6mMvEN_KyaL52JxM,5006
293
- maxframe/learn/contrib/xgboost/predict.py,sha256=FOrLkzjoYjxJZdrisy_bXoRBA8itdGuaP3QDV1hzDl0,4802
294
- maxframe/learn/contrib/xgboost/regressor.py,sha256=osuNG4N1SILgjL-CodYnM9ODwewaVi4-8tHdfWZWJpg,2610
295
- maxframe/learn/contrib/xgboost/train.py,sha256=yn2_45hDvuAi4VKkFPR11i38o0mrFaNJ668qBnj2wDI,4079
306
+ maxframe/learn/contrib/xgboost/classifier.py,sha256=6Uk1LOCRSn0LhR9TIGjjlQq8R5AfszO50IeawaYnks4,3960
307
+ maxframe/learn/contrib/xgboost/core.py,sha256=p6SXqBzWjY5VzqkqOoMu-O9TBcQ3UHlddcsbEoTBXaE,8276
308
+ maxframe/learn/contrib/xgboost/dmatrix.py,sha256=acXkK8Ab6vT1DVb3ZtpeUdzNfVbOtrsCSdXrluQGN70,4889
309
+ maxframe/learn/contrib/xgboost/predict.py,sha256=OceLqSJ8fHtcmBCKZMpTTcsM9Ide8eTvo6H3ppewTrM,5031
310
+ maxframe/learn/contrib/xgboost/regressor.py,sha256=0_GNVJFfkYmXJtG1eIUrwLOtr6HNNfkjKoBymLvd388,2384
311
+ maxframe/learn/contrib/xgboost/train.py,sha256=4xEWY-5MejfZTNKh6XHYyV6SQ2jeEJKBANcA4EGrTJM,4600
296
312
  maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
297
313
  maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=qNSXaB1t1vpoCD6RfpnFjJZHS8ShW9O_uz0ucXXlfpE,1449
298
314
  maxframe/learn/utils/__init__.py,sha256=w2_QpDZ9J5BcSgbqu8P2RlkVRWC2gLowfgsaDPtz_Pg,661
@@ -300,7 +316,7 @@ maxframe/learn/utils/core.py,sha256=WNDISxPFsWmjkwHwEvjVGCkAOkIftqzEQFPA_KWr7FY,
300
316
  maxframe/lib/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
301
317
  maxframe/lib/compression.py,sha256=QQpNK79iUC9zck74I0HKMhapSRnLBXtTRyS91taEVIc,1497
302
318
  maxframe/lib/functools_compat.py,sha256=2LTrkSw5i-z5E9XCtZzfg9-0vPrYxicKvDjnnNrAL1Q,2697
303
- maxframe/lib/mmh3.cp37-win_amd64.pyd,sha256=hzYQcoGtyeosUwBWNb6JPiGXWLIIjCMksOI90odMrzc,17920
319
+ maxframe/lib/mmh3.cp37-win_amd64.pyd,sha256=xERPEn0x7--ng3laZdIm3XX-MkX-XjTRccDyP7Br5v8,17920
304
320
  maxframe/lib/mmh3.pyi,sha256=pkzO6SUUukCty3X-WFsuokWBtIPWyxEa06ypF9liruI,1537
305
321
  maxframe/lib/version.py,sha256=VOVZu3KHS53YUsb_vQsT7AyHwcCWAgc-3bBqV5ANcbQ,18941
306
322
  maxframe/lib/wrapped_pickle.py,sha256=Akx-qhMMJJ6VVzQYrcVO_umFjx0IR-Yzb1XqyOS1Mio,3976
@@ -349,22 +365,12 @@ maxframe/lib/tblib/decorators.py,sha256=377HT3gnD9B2dcxw75pHM17--ABkcgi_GQGmdA_M
349
365
  maxframe/lib/tblib/pickling_support.py,sha256=D9A0eX7gJeyqhXWxJJZ1GRwwcc5lj86wBRh0tmo6GHk,3025
350
366
  maxframe/lib/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
351
367
  maxframe/lib/tests/test_wrapped_pickle.py,sha256=WV0EJQ1hTSp8xjuosWWtEO7PeiBqdDUYgStxp72_c94,1575
352
- maxframe/odpsio/__init__.py,sha256=0SesD04XxFli4Gp23ipMkefFQ2ZTB0PItwZoSHpDC-k,820
353
- maxframe/odpsio/arrow.py,sha256=pFw7aP7u8maEnXXF63VpMbI2qrOvWl78dYWGqHkXuJA,3884
354
- maxframe/odpsio/schema.py,sha256=Hba-eCXnBUS6NxHRsshaohzO1eThm4HeVzzvAF7E3Vg,12479
355
- maxframe/odpsio/tableio.py,sha256=ugLy15g2JoCD3GHhCRrH9PT9g9hyKfwrC71qXEVqvB0,10470
356
- maxframe/odpsio/volumeio.py,sha256=IT_OO-RG2rJZOEx8C8xRr0oNR358RSAJQAp6WGxeXzI,3838
357
- maxframe/odpsio/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
358
- maxframe/odpsio/tests/test_arrow.py,sha256=yeDWFzsm2IMS-k6jimlQ7uim5T6WW1Anuy8didaf4cs,3194
359
- maxframe/odpsio/tests/test_schema.py,sha256=QekMLBWu98IUN6mCloOxEQU0-7RL5OKzV8EE3A17wfU,12255
360
- maxframe/odpsio/tests/test_tableio.py,sha256=ZyQxBAVA5GG3j_NOPTTFs5vCQqQywhRKC9OAJx9LJxM,4789
361
- maxframe/odpsio/tests/test_volumeio.py,sha256=xvnrPZueZ76OAWK2zW_tHHI_cDxo7gJXTHiEe0lkmjk,3112
362
368
  maxframe/remote/__init__.py,sha256=Yu1ZDLICbehNfd1ur7_2bnIn2VFIsTxH_cILCbHAeZY,747
363
- maxframe/remote/core.py,sha256=w_eTDEs0O7iIzLn1YrMGh2gcNAzzbqV0mx2bRT7su_U,7001
369
+ maxframe/remote/core.py,sha256=ELCUvg-_ZdTax_exFqm6-XWUXukT5qalKYBeDB-mV0k,6733
364
370
  maxframe/remote/run_script.py,sha256=k93-vaFLUanWoBRai4-78DX_SLeZ8_rbbxcCtOIXZO8,3677
365
- maxframe/serialization/__init__.py,sha256=nxxU7CI6MRcL3sjA1KmLkpTGKA3KG30FKl-MJJ0MCdI,947
371
+ maxframe/serialization/__init__.py,sha256=UmDfKNohvk3StL-87QYmQTcQ2g6dRHSk49VFQS73VB0,963
366
372
  maxframe/serialization/arrow.py,sha256=OMeDjLcPgagqzokG7g3Vhwm6Xw1j-Kph1V2QsIwi6dw,3513
367
- maxframe/serialization/core.cp37-win_amd64.pyd,sha256=RGAHo3UAAC-Q4echRjuLygLhDfZqcHIXP0TUIfiPiw8,408576
373
+ maxframe/serialization/core.cp37-win_amd64.pyd,sha256=bHYRomRIWiW6-gDNa2sE5ocJsK_jjRhE7Q2irOthQv0,408576
368
374
  maxframe/serialization/core.pxd,sha256=KioRiFhr5DTuqXnS2imJ3djWfSv2IAmhnz-kAFPgU6A,1548
369
375
  maxframe/serialization/core.pyi,sha256=ELDG44v8O7A7RfURExMfVEJENuaEYHTwgJ-vzlH2Vh4,2206
370
376
  maxframe/serialization/core.pyx,sha256=4iyUotIVV8CkVhHo3RyotDP1E7M2C1KMb0_40Ex_h1c,36321
@@ -374,7 +380,7 @@ maxframe/serialization/numpy.py,sha256=ENrFKl24mtYyO1vZRLwHvMD0r4z_UI7J2-yNlmfWS
374
380
  maxframe/serialization/pandas.py,sha256=wqRcZhUd5tMi__7kmvhW1_-DdhBLnW00kz0hDrUvmEY,7522
375
381
  maxframe/serialization/scipy.py,sha256=fGwQ5ZreymrMT8g7TneATfFdKFF7YPNZQqgWgMa3J8M,2498
376
382
  maxframe/serialization/serializables/__init__.py,sha256=rlQhIaSAVzz4KYkc5shEHFZDPd6WDMPkxalU76yjJ3M,1406
377
- maxframe/serialization/serializables/core.py,sha256=9XPxeVY33xrT77JVpO5uBc-olKn3bu8mdj58U1L4R0k,14165
383
+ maxframe/serialization/serializables/core.py,sha256=PY3Uvq6aHl0V5a9ZVNoN8rxoKGNYuVATvKUj1VMq9rE,16010
378
384
  maxframe/serialization/serializables/field.py,sha256=DVott3HAbne4UvN-heSFS9gSl0wCxV5RssS738FCjzk,16639
379
385
  maxframe/serialization/serializables/field_type.py,sha256=hkxrXT2SL_tATuobtJDfL4DzzVP2hJjDlC3PrJg6ZKo,15454
380
386
  maxframe/serialization/serializables/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
@@ -382,11 +388,11 @@ maxframe/serialization/serializables/tests/test_field_type.py,sha256=uG87-bdG8xG
382
388
  maxframe/serialization/serializables/tests/test_serializable.py,sha256=w5r-WC-8Zi1xAO1AfxdkjGcbGHZ8G5B-z_-d47Fje-A,10159
383
389
  maxframe/serialization/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
384
390
  maxframe/serialization/tests/test_serial.py,sha256=9G2CbPBHINwcZ038pRwZON_OtH-JVXZ8w66BLYWP578,12923
385
- maxframe/tensor/__init__.py,sha256=lY_GZBClz2MIGwaMerP2DvbsUbC5crCel_kwkeuiyX4,3702
391
+ maxframe/tensor/__init__.py,sha256=7tlj6f0V97wwMr1x1LeVev3B0fAylsnyRwShSEN2Yvs,4642
386
392
  maxframe/tensor/array_utils.py,sha256=xr_Ng-4dETJFjsMfWi5gbTPM9mRmPvRWj8QY2WKjmCg,5129
387
- maxframe/tensor/core.py,sha256=-G-UzY81GTKj2SD9FQLqBg-UDod5LjjrEA-uF16ofms,22638
388
- maxframe/tensor/operators.py,sha256=8VsSZ8OcImGkSRQvrYlV05KMHGsroAYmW1o9RM2yV1U,3584
389
- maxframe/tensor/utils.py,sha256=An35s6MrbltYvN8WYzjKCjyozTDbGQrvUW_qz8KnA94,23632
393
+ maxframe/tensor/core.py,sha256=YE1if5ofQft725nhsfRFCF_S1xxjf7xk_ETfznGZzP0,18538
394
+ maxframe/tensor/operators.py,sha256=bmnL2EIIC28tlTB5SwQc5sunIkhPz8KBvSQHxbACqZg,3455
395
+ maxframe/tensor/utils.py,sha256=6HENWGkcwHe7t8IOAyyJ4m7pZt--S1Q1IOfz0oUZt6A,23109
390
396
  maxframe/tensor/arithmetic/__init__.py,sha256=SUlcG0Mf9ddgxAdydenuJ9eY5yVu0TgKfpBujI3OX4w,9695
391
397
  maxframe/tensor/arithmetic/abs.py,sha256=WQO9CxiI-u_gtXNOX1AIcL4Dak-NliK0YDjdOi9sHtc,2248
392
398
  maxframe/tensor/arithmetic/absolute.py,sha256=GSIA5UySoSbGlgcjK8sChurEMATFz2cwdfJ7wAjqotc,2278
@@ -433,7 +439,7 @@ maxframe/tensor/arithmetic/hypot.py,sha256=mm0RQsKrLaC2rzW-qVNT_De_YKueNKB5lhD1m
433
439
  maxframe/tensor/arithmetic/i0.py,sha256=FlsRK-63SoNbN0R8qCUGYbD0LfdfetBBzZndya3LYg0,3000
434
440
  maxframe/tensor/arithmetic/imag.py,sha256=lCSlPCVL5HKalujl8ae4Msgtilgy9xiESt4GFjWY4gU,1835
435
441
  maxframe/tensor/arithmetic/invert.py,sha256=DSFgIzY5xJCVmRXzjyADiNnAgc9RpYVzNwWOf1bQiTQ,3572
436
- maxframe/tensor/arithmetic/isclose.py,sha256=oCr6SM59DmotMJOqxTvPMFIuM27DA_mWgOyQUmbGmyg,3783
442
+ maxframe/tensor/arithmetic/isclose.py,sha256=1p_gcUJmk1xtrofAVR4-yVqrKggywqQkdzLBrgOlK_I,3811
437
443
  maxframe/tensor/arithmetic/iscomplex.py,sha256=lSUunn3RZiZlrIHiSNx21siVR0BID9-_8ZfueEIxXvc,1768
438
444
  maxframe/tensor/arithmetic/isfinite.py,sha256=JycutXOjf5YE9w9RFt65zFccgYc1uhdRFJ03fMpom5A,3704
439
445
  maxframe/tensor/arithmetic/isinf.py,sha256=Yc97fOv6aD-YjrWzs3zHKSI1DR3pDXlRhnK3jQd1nHQ,3565
@@ -487,31 +493,21 @@ maxframe/tensor/arithmetic/truediv.py,sha256=xrsN8Z-q6msst9S8-469XQFgrs7T4RTkaym
487
493
  maxframe/tensor/arithmetic/trunc.py,sha256=3z8jme9ZpPU8TqNo2ioViqJa7ThNK9KOVX1wl-R0a7M,2375
488
494
  maxframe/tensor/arithmetic/utils.py,sha256=Kc3xqbIK9uRhHhDKFwAj-mW7SRljajfK9UOMyXyCHCY,2304
489
495
  maxframe/tensor/arithmetic/tests/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
490
- maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=fAkVgixF-WfRZHGujGmB_s5llwiL1DDdvxcAsWPYfEY,11409
491
- maxframe/tensor/base/__init__.py,sha256=qVf97u2J74RSjCmkF-7N-ylxWUc6mbiPPWpDe45vRmQ,1113
492
- maxframe/tensor/base/astype.py,sha256=fzj0o3pJMVaSEEKMR-JBsd2FktlSa9ABtpt-fcWKio0,4513
493
- maxframe/tensor/base/atleast_1d.py,sha256=_d7xamputAAHFY8v0Ayc8ILMdqS6fLZYhWQLOh_LFmc,1992
494
- maxframe/tensor/base/broadcast_to.py,sha256=V-OB8YSbMfkMP2JpbiIQ0A9PrC-OHfaWzrntf5AOEwo,2775
495
- maxframe/tensor/base/ravel.py,sha256=P9SCDU-UUHzd1HqZbodBSgKjtjiOFkyfLV_G9LFnz_U,3265
496
- maxframe/tensor/base/transpose.py,sha256=yMK1KzxguKZOWxT3oMo5GchjB-1Yakilp2rEX3QlxFM,3539
497
- maxframe/tensor/base/unique.py,sha256=GYLorbwtjCKCTzkbFWk-zaUORU2mQJ2nbXDi2Wr-IP8,6943
498
- maxframe/tensor/base/where.py,sha256=cSg1mDhiOBB4F0Soh_uVw3yeSve9pfEhPSIDadc-wto,4127
499
- maxframe/tensor/base/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
500
- maxframe/tensor/base/tests/test_base.py,sha256=i9TneozyHCHDhO438U285KS6tdh0Zks8mgkRm3fsHxk,2957
496
+ maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=zyvizXBapZcauwf64awWMzmNQeWR6VK0aSq1WwdbfBw,11839
501
497
  maxframe/tensor/datasource/__init__.py,sha256=xtrdcuP6yTc_T19ITPsJTknoqTT-XudlhSlffrScjsY,1178
502
498
  maxframe/tensor/datasource/arange.py,sha256=tjNF_huiWTtqtN6YBBtn0tvP9Pnebf6LNXRmAsYqRQk,5632
503
- maxframe/tensor/datasource/array.py,sha256=pC1eeo4C1EkdHklStr6aOCBfRx1SqyeHHwRglKI2W1A,13419
499
+ maxframe/tensor/datasource/array.py,sha256=21R-mH1a4PLwlby9M4YMXBS31DT1BVvbKUUhE23Mop0,13472
504
500
  maxframe/tensor/datasource/core.py,sha256=LzuHtRWCNny1y-IzGylelWZ6rejS31LdT4E7qs_uIQs,3520
505
501
  maxframe/tensor/datasource/empty.py,sha256=GpK-DHUfJp9M46wUrGt5lf-YbDDveubwntDjTVYnmMw,6019
506
502
  maxframe/tensor/datasource/from_dataframe.py,sha256=iJY2cw2yA6YKnqRLyB0XdvpdemHHzpU7q2SA1sYo6mo,2573
507
503
  maxframe/tensor/datasource/from_dense.py,sha256=txyxNBD0oXr3Ama9me2ay1_ASuDu1QK3w6ATebMzNCU,1661
508
504
  maxframe/tensor/datasource/from_sparse.py,sha256=le-Wfno7Z8XY71TLwEOhO80fkvKXwKXbDgsrOfmDM8s,1593
509
- maxframe/tensor/datasource/full.py,sha256=-54C2YwqIEP3rPGsY0rnbgMBp15_NqgDJ7lxOJJuXGU,6462
505
+ maxframe/tensor/datasource/full.py,sha256=cWS5GSEV-82s0IU1GMHTrAlydVGQ-Zxk2uCs5vxgOfc,6462
510
506
  maxframe/tensor/datasource/ones.py,sha256=0UuYAwMLGfjF-O_90vkwsMqQlAAfJ98TdxbfgC1y6Fk,5182
511
507
  maxframe/tensor/datasource/scalar.py,sha256=g2dsnmOEzV30I0UK3ytMtkiosdfH3NJ6wacZuxBpmbk,1196
512
508
  maxframe/tensor/datasource/zeros.py,sha256=DJZK_kraSn820O17GSHLFHV43x1JL3Gt_HdlN0p5o7k,5860
513
509
  maxframe/tensor/datasource/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
514
- maxframe/tensor/datasource/tests/test_datasource.py,sha256=C9sOu8rpDNpu3yMhgln4UzkqW5SklL63IJXRwrwOCYc,7931
510
+ maxframe/tensor/datasource/tests/test_datasource.py,sha256=mCyjktnCHuR2w796nHAzQ_fVR95fRqY57Zome2Wjuss,7931
515
511
  maxframe/tensor/fetch/__init__.py,sha256=udOT7c7dIbszchvIkCLAWp7SE-GUIE6vl85wWFuaJl0,662
516
512
  maxframe/tensor/fetch/core.py,sha256=nyK5dFqDSrM1vi_xgk_yh4GRLUp-FxvjgdbqFxlS_Hg,1872
517
513
  maxframe/tensor/indexing/__init__.py,sha256=IF7jK7ZqwWi8nhKY2IRXVzLYacqdeyc4iUFGvzx09Mg,1658
@@ -520,7 +516,7 @@ maxframe/tensor/indexing/compress.py,sha256=2i-mhWB7-Z7y8luWBJ_2Fhci7IP0kNGr8s-S
520
516
  maxframe/tensor/indexing/core.py,sha256=85E1kSDogs7p57vE1O-ZYx4XhpEE21tmt1-mOey5ejs,7212
521
517
  maxframe/tensor/indexing/extract.py,sha256=KHqEVMKwxIlm2RYVSVhZX5Jo7yymKTIgzNT6y8Ilodc,2139
522
518
  maxframe/tensor/indexing/fill_diagonal.py,sha256=V3_kMu5Cvund5a4GYTG5617ryNu0cHjWp3FfAU_d3yY,5488
523
- maxframe/tensor/indexing/flatnonzero.py,sha256=JdM997SdupsFA3HcsIkImvOB09b9PfsAZZtOvptRWFg,1766
519
+ maxframe/tensor/indexing/flatnonzero.py,sha256=v0Od1T6pn6vfoDeEG40lJ7h4OD8cPIlzDTDHMcR50IA,1766
524
520
  maxframe/tensor/indexing/getitem.py,sha256=5n-5ExnuVrO5WG1ikD5VwP_Mlj5NAD7X-tVQDoAmims,5723
525
521
  maxframe/tensor/indexing/nonzero.py,sha256=qeTEj7oiqf2CYBDlL1aKG19lPPFXvHkMq0A-4Dmvz4A,3766
526
522
  maxframe/tensor/indexing/setitem.py,sha256=u7YbeJQmWnhu13H8k5ohw89YQRcPnY-9Ni0zJxzfJJo,4484
@@ -529,17 +525,31 @@ maxframe/tensor/indexing/take.py,sha256=OCuIrhqO74CIojaoOc45McoQiJEjxvN1zens4RQV
529
525
  maxframe/tensor/indexing/unravel_index.py,sha256=FMmoEYrDHZAtx_HHC21W3KZfkqwxNZUObXP3HVSJgGw,3326
530
526
  maxframe/tensor/indexing/tests/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
531
527
  maxframe/tensor/indexing/tests/test_indexing.py,sha256=uatTFiNkYnyqibYa2-NleUWyFRnlK0mN1AG0tBqFCts,6886
532
- maxframe/tensor/merge/__init__.py,sha256=pJtvyfCItT7OlRet49WkjKuf0PC3Ct6qRhpkU06zUU8,637
528
+ maxframe/tensor/merge/__init__.py,sha256=mzXzvbNObPYmvWY3PCu3yFvV82Tqqaxav5DX_Iv2UN8,703
529
+ maxframe/tensor/merge/concatenate.py,sha256=pRANmkj47t85vND5F0ObmfqqMy-qXS5FuBXSN8HRDmI,3182
533
530
  maxframe/tensor/merge/stack.py,sha256=lZJs8M1JYBdYXnalj6-6ltdJKKslZ1Z-ydkzvGlzzkY,4277
531
+ maxframe/tensor/merge/vstack.py,sha256=BS6bG5h0swmTW26rvg7FvJw3fX1wh7nCAWao53vetXo,2238
534
532
  maxframe/tensor/merge/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
535
- maxframe/tensor/merge/tests/test_merge.py,sha256=uEpUTh3hAozyn7lkO7w0F-8TYwGzU-u3H6ZVrYDH4rs,1521
533
+ maxframe/tensor/merge/tests/test_merge.py,sha256=tI4xeJPpME68buemIzTga9mTQiMoqFc9v4__Hi40kzg,2291
534
+ maxframe/tensor/misc/__init__.py,sha256=C6VvY-dnO0_8Z1ArbzhT0I0ClFNT2LGfSgPJdICUexo,1185
535
+ maxframe/tensor/misc/astype.py,sha256=fzj0o3pJMVaSEEKMR-JBsd2FktlSa9ABtpt-fcWKio0,4513
536
+ maxframe/tensor/misc/atleast_1d.py,sha256=XG-8Yxjo0_HD_hRWMoGtaqhgVrIXOR3g1leH_6ib9mk,1944
537
+ maxframe/tensor/misc/atleast_2d.py,sha256=9F5m9DyDJ63nPFhrCqTTHszz36pgU0_VM6nJLmLx9QM,2028
538
+ maxframe/tensor/misc/atleast_3d.py,sha256=XkpSZ_haJJz0wanww5HB4Xhhx3QK8xtbleWvC7ARkBE,2477
539
+ maxframe/tensor/misc/broadcast_to.py,sha256=V-OB8YSbMfkMP2JpbiIQ0A9PrC-OHfaWzrntf5AOEwo,2775
540
+ maxframe/tensor/misc/ravel.py,sha256=P9SCDU-UUHzd1HqZbodBSgKjtjiOFkyfLV_G9LFnz_U,3265
541
+ maxframe/tensor/misc/transpose.py,sha256=ALP4B3FdXL_-iPV-zyG5FuM13jPVcu_mvIaNmh_mQDQ,4134
542
+ maxframe/tensor/misc/unique.py,sha256=wweWA7Qg-MwRsJwXQc_-4BuDAYBQkRgVw-B38z6hNTQ,6926
543
+ maxframe/tensor/misc/where.py,sha256=cSg1mDhiOBB4F0Soh_uVw3yeSve9pfEhPSIDadc-wto,4127
544
+ maxframe/tensor/misc/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
545
+ maxframe/tensor/misc/tests/test_misc.py,sha256=i9TneozyHCHDhO438U285KS6tdh0Zks8mgkRm3fsHxk,2957
536
546
  maxframe/tensor/random/__init__.py,sha256=KKshGsQFlScwgZU-lS_yy1CPsEcufVlKyZSz1CUxzU4,7179
537
547
  maxframe/tensor/random/beta.py,sha256=8-t9NxQrDOTpm5Q_ip_HWnARX_T69tfyJeRv-FobFXw,3200
538
548
  maxframe/tensor/random/binomial.py,sha256=BsjD4yRX_IvfexgqZFQMb0jceD46xj4cmKXbpla5eL8,5428
539
549
  maxframe/tensor/random/bytes.py,sha256=PmmPFGnhq_FCbkcSYQWNTw1jehvDLmRCzPgEukAgo7w,1093
540
550
  maxframe/tensor/random/chisquare.py,sha256=buOfihHGKTsH_Uv8BuWb6_0L0dJukSFrjNlsaWBKy1I,3864
541
551
  maxframe/tensor/random/choice.py,sha256=dLM_5Vw5ov_2P-82tcHwQtMPE02VmQScAsY5zbTZ4K4,6144
542
- maxframe/tensor/random/core.py,sha256=p3sUYkm3F6-lmu23yRu80EXPeTA5fBvJ2Fee3JPYf-4,7440
552
+ maxframe/tensor/random/core.py,sha256=hLmTHK6my3_1JADRny018C3yGPycsO0JWcALQ_XZwMg,7440
543
553
  maxframe/tensor/random/dirichlet.py,sha256=s89z_s5qevE0DdezLeI1pdoBFclDBQy-ulSAMDyy_TE,4507
544
554
  maxframe/tensor/random/exponential.py,sha256=82kMZBn1N_XdHdggUUWecPYjx91SAYvPtArErwqD66g,3677
545
555
  maxframe/tensor/random/f.py,sha256=5grVBKXHDhmc-N4wuwNpC7sF92uTXd1zfCQEVzCPLSo,5226
@@ -591,59 +601,59 @@ maxframe/tensor/reduction/argmax.py,sha256=UqPBCgnyLFpIjaNPWxcyLGynpOzYnaVj23PQy
591
601
  maxframe/tensor/reduction/argmin.py,sha256=Gy_O7kEcJosGQImqkR5S7N5ygs-bXnYcpljj3TSe5Ho,3202
592
602
  maxframe/tensor/reduction/array_equal.py,sha256=1otUnsacNdSgkdP1hHs3NcAdqtJNyY3F1oOVItrmv70,1859
593
603
  maxframe/tensor/reduction/core.py,sha256=NwASayI1P1uCCFCyNltH-cVezefW3Th2qS6viSuSKMQ,5257
594
- maxframe/tensor/reduction/count_nonzero.py,sha256=82Q6vm4_2eFcdFsPSUw6PD1eUV_4geKVckvs7GnRsfE,2802
604
+ maxframe/tensor/reduction/count_nonzero.py,sha256=zhaiKDQxWR5WTNwwqn8piRuBGYwOq-Oe0Uv7rdSPyPA,2836
595
605
  maxframe/tensor/reduction/cumprod.py,sha256=zitvIvh2Sb4iL7yL2Spenoe7NQndV9LJ4qrejd_ul48,3369
596
606
  maxframe/tensor/reduction/cumsum.py,sha256=IUOvbrVEgjDOdd3nsxnDy3Fx0eJC0EfOGt0PIfik_PM,3592
597
607
  maxframe/tensor/reduction/max.py,sha256=8B5k9n89orftEYLI_Lwl10O0zbN6vq5SxUpX0W9L7Bo,4099
598
- maxframe/tensor/reduction/mean.py,sha256=RRATO7XMV68q2h4o8JgHguz5zbBzfW1Mvuw4DHHo4W0,4478
608
+ maxframe/tensor/reduction/mean.py,sha256=X-DeUsX_6jbJLAgeLqfFghNnVz-CPzvTr6SD_LvkrQI,4503
599
609
  maxframe/tensor/reduction/min.py,sha256=YRHJ-leK2wF6ZJT7WgepMhIofw9JQ62PxRw8JqJTaFU,4100
600
610
  maxframe/tensor/reduction/nanargmax.py,sha256=Nwiin8tWykaaOjtNF7DGMNuIFZXAts_v4XO68ODM9FI,2563
601
611
  maxframe/tensor/reduction/nanargmin.py,sha256=rgOcOEbbJyvGwAYFSJkQSfY8yjdqtaOg5d7gL5FijLE,2279
602
612
  maxframe/tensor/reduction/nancumprod.py,sha256=e9l343oVsXra2Goiai3Qbwnqe1Fq8BEATa0475_DNdo,3212
603
613
  maxframe/tensor/reduction/nancumsum.py,sha256=Q8sNfx8d8sfKQhOWBI5dOJfORua_HzUydwauX4Lu8LI,3377
604
614
  maxframe/tensor/reduction/nanmax.py,sha256=l8GplMV1eZwsgYt2esxPCj7ou3DgODzi3N1Vbbxjz7o,4061
605
- maxframe/tensor/reduction/nanmean.py,sha256=i1gZU8xN_sBb_9MDMnqup9Q0jF2IrJEXsPRzEMav3_8,4050
615
+ maxframe/tensor/reduction/nanmean.py,sha256=PJCx-oVyL-gCBIuyxrIKcqQKP5z5ro9XIBapMQ6IMe8,4078
606
616
  maxframe/tensor/reduction/nanmin.py,sha256=vxq-g_ffwI6fLZ9rVdGoaGAq87w4pvLas_NKZsfLiYQ,4058
607
617
  maxframe/tensor/reduction/nanprod.py,sha256=1of1DIP390_12QA0xKCXSvAxYrddJC52h7KmsLwTvyQ,3408
608
618
  maxframe/tensor/reduction/nanstd.py,sha256=6aOed5RQ4-N2IfQjWZKVoQ34GN6O9_LVeGoUwa5d1hU,5017
609
619
  maxframe/tensor/reduction/nansum.py,sha256=3gjbgh6Qw29HxLNdyn8MzxekFlyr3l377EZwNFgla4g,4181
610
- maxframe/tensor/reduction/nanvar.py,sha256=AWlcTIsBu3EIF9Wdbtxncf-XE2FYo83fmfaH8jIUAnU,5567
620
+ maxframe/tensor/reduction/nanvar.py,sha256=ZvC3EnhvaSbCe3P9RDelCqjMiWFjmze5RBEGS5bTi4A,5621
611
621
  maxframe/tensor/reduction/prod.py,sha256=PfTHhIYDVsPtTSRQ2wZQ2WY7wbbuIh8YoEFR7kTJdzU,4536
612
622
  maxframe/tensor/reduction/std.py,sha256=s4wvtnRUCw9EfKZrdefClxnKLjM6gzZqYuxOrg6Tgck,5269
613
623
  maxframe/tensor/reduction/sum.py,sha256=ehfqbdEafd5ASliWR5DL689q_VH7Isk7ozlrWBdamDk,4371
614
- maxframe/tensor/reduction/var.py,sha256=VIzl3UYitUa7pD3AmcHgFcKFabQzFGz38oK6DrRrZ14,6434
624
+ maxframe/tensor/reduction/var.py,sha256=MKl5pe9t7g20atW5XFdFChr1Qxb1ReeViIaHwoRGCpM,6482
615
625
  maxframe/tensor/reduction/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
616
- maxframe/tensor/reduction/tests/test_reduction.py,sha256=XPHYII06IuY0wGjh5G09aXn2JDbgh7_QMUkGu1197RM,6015
626
+ maxframe/tensor/reduction/tests/test_reduction.py,sha256=k2pXfAfowBDzEgMvldflUzhFUMWIkiP2fznZp7q9Bkw,6370
617
627
  maxframe/tensor/reshape/__init__.py,sha256=h_yXSMgSS3hGdLmnyWUUqXshEz4rLiEYDTlZbDBuj0w,689
618
628
  maxframe/tensor/reshape/reshape.py,sha256=3vfmYigJcfODwg4av9lcMDM4mQ4TsNQT0qmbdcsg4zc,6641
619
629
  maxframe/tensor/reshape/tests/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
620
630
  maxframe/tensor/reshape/tests/test_reshape.py,sha256=hkYCagnIg85vV8moLIHVA-WAya7r9ga16Y8WJoCmK28,1140
621
631
  maxframe/tensor/statistics/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
622
632
  maxframe/tensor/statistics/percentile.py,sha256=VvMIKNSawT2WaoyJofoBEvmli2w-7TkG9V0Au9Bg3Eo,6222
623
- maxframe/tensor/statistics/quantile.py,sha256=HrPxQoRXTEGf-5m79osqhUoSTFpWmIwmhOIMOImldC8,9772
633
+ maxframe/tensor/statistics/quantile.py,sha256=2QshmOurJLJPHBhsyYz9brBWkcEzjzTjo2Wju_LD21o,9755
624
634
  maxframe/tensor/ufunc/__init__.py,sha256=8QUi-cPvvbsD7i7LOeZ9sc0v1XXd7lt-XV5pQKbVZJs,821
625
635
  maxframe/tensor/ufunc/ufunc.py,sha256=XRtGlhdrW7H--mrc8fTBOlUP0mzKpd9tdRtCuLDymtc,7383
626
636
  maxframe/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
627
637
  maxframe/tests/test_codegen.py,sha256=h3TKqP4zghxTn1twH7gR9jOe6NKXdCC1B4u0chlUrpY,2277
628
638
  maxframe/tests/test_protocol.py,sha256=JkvsgGnbVSLu3VsUd_XT_qstcHPnKLzmoDBEXetaWT8,6281
629
639
  maxframe/tests/test_utils.py,sha256=5Z2cym1tlpnF73f4I3WC1eBocsbNEDGzDErJL_fKWx8,11868
630
- maxframe/tests/utils.py,sha256=nZeSDh0jLWo1hKPkuq8Y2uwQhLwjaKok4wcnq9vhyn8,4740
640
+ maxframe/tests/utils.py,sha256=t99jsFXhHme886zvXO5sl20stB5WFJsDH6KeHc5I9N0,5057
631
641
  maxframe_client/__init__.py,sha256=hIVOnxj6AoN2zIMxQCzRb10k0LSoYS_DrQevXO9KPBg,705
632
642
  maxframe_client/conftest.py,sha256=UWWMYjmohHL13hLl4adb0gZPLRdBVOYVvsFo6VZruI0,658
633
- maxframe_client/fetcher.py,sha256=yFP6Hgz01-qPqBwmTX5-5ECU-G6q-TX5SUktplcJgcU,9213
643
+ maxframe_client/fetcher.py,sha256=kwMjcEZxMAJye5BHWv-O82aExSj66IeTmPYvbn89wBs,8595
634
644
  maxframe_client/clients/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
635
645
  maxframe_client/clients/framedriver.py,sha256=upN6C1eZrCpLTsS6fihWOMy392psWfo0bw2XgSLI_Yg,4581
636
646
  maxframe_client/session/__init__.py,sha256=9zFCd3zkSADESAFc4SPoQ2nkvRwsIhhpNNO2TtSaWbU,854
637
647
  maxframe_client/session/consts.py,sha256=nD-D0zHXumbQI8w3aUyltJS59K5ftipf3xCtHNLmtc8,1380
638
- maxframe_client/session/graph.py,sha256=GSZaJ-PV4DK8bTcNtoSoY5kDTyyIRAKleh4tOCSUbsI,4470
639
- maxframe_client/session/odps.py,sha256=rOQJokPpA_hczjWsXyvYnl9m9o1DlZLMnoDIsQtmbnc,19885
648
+ maxframe_client/session/graph.py,sha256=CEavpl_zmz_nZ2TXI4moRxpdYsMZMokV63889qI6l_4,4501
649
+ maxframe_client/session/odps.py,sha256=PMxvEoiYUO9Pd5Sbfdub7nJxGh6iJR4bB9wtFHssAtc,21248
640
650
  maxframe_client/session/task.py,sha256=8_ZN2xbMdkRy2XdgJpEmB35vhGxfL0Qluzd0NVTjPwE,11402
641
651
  maxframe_client/session/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
642
652
  maxframe_client/session/tests/test_task.py,sha256=861usEURVXeTUzfJYZmBfwsHfZFexG23mMtT5IJOOm4,3364
643
653
  maxframe_client/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
644
- maxframe_client/tests/test_fetcher.py,sha256=7iYXLMIoCJLfgUkjB2HBkV-sqQ-xGlhtzfp9hRJz_kM,3605
645
- maxframe_client/tests/test_session.py,sha256=ZrZCYVbqtCOJZigGoyGube-EtLYE8SQxTSckbMQmgds,9616
646
- maxframe-1.0.0rc1.dist-info/METADATA,sha256=lbj0kDpDDcdf43LuG_y2tgyKSs38tbOE0YeufvQWk84,3157
647
- maxframe-1.0.0rc1.dist-info/WHEEL,sha256=slqBGdqRnxanDn00BSYHhryEsWH_8CUurgRUvoMtK_Y,101
648
- maxframe-1.0.0rc1.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
649
- maxframe-1.0.0rc1.dist-info/RECORD,,
654
+ maxframe_client/tests/test_fetcher.py,sha256=lYtn4NuntN-_A7rMd10e2y_CEUp7zelTij441NTFP6M,4265
655
+ maxframe_client/tests/test_session.py,sha256=s4fodDMo8wPB7se6k0SxQ_rLy6i0uuA0i1fSYIjX4R0,10427
656
+ maxframe-1.0.0rc3.dist-info/METADATA,sha256=gjyjCgDjAPygCA-UtLKthxA1YrCkqVJS-PbcvlWk_uc,3164
657
+ maxframe-1.0.0rc3.dist-info/WHEEL,sha256=slqBGdqRnxanDn00BSYHhryEsWH_8CUurgRUvoMtK_Y,101
658
+ maxframe-1.0.0rc3.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
659
+ maxframe-1.0.0rc3.dist-info/RECORD,,