maxframe 0.1.0b5__cp38-cp38-macosx_10_9_universal2.whl → 1.0.0rc2__cp38-cp38-macosx_10_9_universal2.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 (92) hide show
  1. maxframe/_utils.cpython-38-darwin.so +0 -0
  2. maxframe/codegen.py +6 -2
  3. maxframe/config/config.py +38 -2
  4. maxframe/config/validators.py +1 -0
  5. maxframe/conftest.py +2 -0
  6. maxframe/core/__init__.py +0 -3
  7. maxframe/core/entity/__init__.py +1 -8
  8. maxframe/core/entity/objects.py +3 -45
  9. maxframe/core/graph/core.cpython-38-darwin.so +0 -0
  10. maxframe/core/graph/core.pyx +4 -4
  11. maxframe/dataframe/__init__.py +1 -1
  12. maxframe/dataframe/arithmetic/around.py +5 -17
  13. maxframe/dataframe/arithmetic/core.py +15 -7
  14. maxframe/dataframe/arithmetic/docstring.py +5 -55
  15. maxframe/dataframe/arithmetic/tests/test_arithmetic.py +22 -0
  16. maxframe/dataframe/core.py +5 -5
  17. maxframe/dataframe/datasource/date_range.py +2 -2
  18. maxframe/dataframe/datasource/read_odps_query.py +6 -0
  19. maxframe/dataframe/datasource/read_odps_table.py +2 -1
  20. maxframe/dataframe/datasource/tests/test_datasource.py +14 -0
  21. maxframe/dataframe/datastore/tests/__init__.py +13 -0
  22. maxframe/dataframe/datastore/tests/test_to_odps.py +48 -0
  23. maxframe/dataframe/datastore/to_odps.py +21 -0
  24. maxframe/dataframe/groupby/cum.py +0 -1
  25. maxframe/dataframe/groupby/tests/test_groupby.py +4 -0
  26. maxframe/dataframe/indexing/add_prefix_suffix.py +1 -1
  27. maxframe/dataframe/indexing/align.py +1 -1
  28. maxframe/dataframe/indexing/rename.py +3 -37
  29. maxframe/dataframe/indexing/sample.py +0 -1
  30. maxframe/dataframe/indexing/set_index.py +68 -1
  31. maxframe/dataframe/merge/merge.py +236 -2
  32. maxframe/dataframe/merge/tests/test_merge.py +123 -0
  33. maxframe/dataframe/misc/apply.py +5 -10
  34. maxframe/dataframe/misc/case_when.py +1 -1
  35. maxframe/dataframe/misc/describe.py +2 -2
  36. maxframe/dataframe/misc/drop_duplicates.py +4 -25
  37. maxframe/dataframe/misc/eval.py +4 -0
  38. maxframe/dataframe/misc/memory_usage.py +2 -2
  39. maxframe/dataframe/misc/pct_change.py +1 -83
  40. maxframe/dataframe/misc/tests/test_misc.py +23 -0
  41. maxframe/dataframe/misc/transform.py +1 -30
  42. maxframe/dataframe/misc/value_counts.py +4 -17
  43. maxframe/dataframe/missing/dropna.py +1 -1
  44. maxframe/dataframe/missing/fillna.py +5 -5
  45. maxframe/dataframe/sort/sort_values.py +1 -11
  46. maxframe/dataframe/statistics/corr.py +3 -3
  47. maxframe/dataframe/statistics/quantile.py +5 -17
  48. maxframe/dataframe/utils.py +4 -7
  49. maxframe/errors.py +13 -0
  50. maxframe/extension.py +12 -0
  51. maxframe/learn/contrib/xgboost/dmatrix.py +2 -2
  52. maxframe/learn/contrib/xgboost/predict.py +2 -2
  53. maxframe/learn/contrib/xgboost/train.py +2 -2
  54. maxframe/lib/mmh3.cpython-38-darwin.so +0 -0
  55. maxframe/lib/mmh3.pyi +43 -0
  56. maxframe/lib/wrapped_pickle.py +2 -1
  57. maxframe/odpsio/__init__.py +1 -1
  58. maxframe/odpsio/arrow.py +8 -4
  59. maxframe/odpsio/schema.py +10 -7
  60. maxframe/odpsio/tableio.py +388 -14
  61. maxframe/odpsio/tests/test_schema.py +16 -15
  62. maxframe/odpsio/tests/test_tableio.py +48 -21
  63. maxframe/protocol.py +148 -12
  64. maxframe/serialization/core.cpython-38-darwin.so +0 -0
  65. maxframe/serialization/core.pxd +3 -0
  66. maxframe/serialization/core.pyi +3 -0
  67. maxframe/serialization/core.pyx +54 -25
  68. maxframe/serialization/exception.py +1 -1
  69. maxframe/serialization/pandas.py +7 -2
  70. maxframe/serialization/serializables/core.py +158 -12
  71. maxframe/serialization/serializables/tests/test_serializable.py +46 -4
  72. maxframe/tensor/__init__.py +59 -0
  73. maxframe/tensor/arithmetic/tests/test_arithmetic.py +1 -1
  74. maxframe/tensor/base/atleast_1d.py +1 -1
  75. maxframe/tensor/base/unique.py +3 -3
  76. maxframe/tensor/reduction/count_nonzero.py +1 -1
  77. maxframe/tensor/statistics/quantile.py +2 -2
  78. maxframe/tests/test_protocol.py +34 -0
  79. maxframe/tests/test_utils.py +0 -12
  80. maxframe/tests/utils.py +11 -2
  81. maxframe/utils.py +24 -13
  82. {maxframe-0.1.0b5.dist-info → maxframe-1.0.0rc2.dist-info}/METADATA +75 -2
  83. {maxframe-0.1.0b5.dist-info → maxframe-1.0.0rc2.dist-info}/RECORD +91 -89
  84. {maxframe-0.1.0b5.dist-info → maxframe-1.0.0rc2.dist-info}/WHEEL +1 -1
  85. maxframe_client/__init__.py +0 -1
  86. maxframe_client/fetcher.py +38 -27
  87. maxframe_client/session/odps.py +50 -10
  88. maxframe_client/session/task.py +41 -20
  89. maxframe_client/tests/test_fetcher.py +21 -3
  90. maxframe_client/tests/test_session.py +49 -2
  91. maxframe_client/clients/spe.py +0 -104
  92. {maxframe-0.1.0b5.dist-info → maxframe-1.0.0rc2.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: maxframe
3
- Version: 0.1.0b5
3
+ Version: 1.0.0rc2
4
4
  Summary: MaxFrame operator-based data analyze framework
5
- Requires-Dist: numpy >=1.19.0
5
+ Requires-Dist: numpy <2.0.0,>=1.19.0
6
6
  Requires-Dist: pandas >=1.0.0
7
7
  Requires-Dist: pyodps >=0.11.6.1
8
8
  Requires-Dist: scipy >=1.0
@@ -102,3 +102,76 @@ License
102
102
 
103
103
  Licensed under the `Apache License
104
104
  2.0 <https://www.apache.org/licenses/LICENSE-2.0.html>`__.
105
+ MaxCompute MaxFrame Client
106
+ ==========================
107
+
108
+ MaxFrame is a computational framework created by Alibaba Cloud to
109
+ provide a way for Python developers to parallelize their code with
110
+ MaxCompute. It creates a runnable computation graph locally, submits it
111
+ to MaxCompute to execute and obtains results from MaxCompute.
112
+
113
+ MaxFrame client is the client of MaxFrame. Currently it provides a
114
+ DataFrame-based SDK with compatible APIs for pandas. In future, other
115
+ common Python libraries like numpy and scikit-learn will be added as
116
+ well. Python 3.7 is recommended for MaxFrame client to enable all
117
+ functionalities while supports for higher Python versions are on the
118
+ way.
119
+
120
+ Installation
121
+ ------------
122
+
123
+ You may install MaxFrame client through PIP:
124
+
125
+ .. code:: bash
126
+
127
+ pip install maxframe
128
+
129
+ Latest beta version can be installed with ``--pre`` argument:
130
+
131
+ .. code:: bash
132
+
133
+ pip install --pre maxframe
134
+
135
+ You can also install MaxFrame client from source code:
136
+
137
+ .. code:: bash
138
+
139
+ pip install git+https://github.com/aliyun/alibabacloud-odps-maxframe-client.git
140
+
141
+ Getting started
142
+ ---------------
143
+
144
+ We show a simple code example of MaxFrame client which read data from a
145
+ MaxCompute table, performs some simple data transform and writes back
146
+ into MaxCompute.
147
+
148
+ .. code:: python
149
+
150
+ import maxframe.dataframe as md
151
+ import os
152
+ from maxframe import new_session
153
+ from odps import ODPS
154
+
155
+ o = ODPS(
156
+ os.getenv('ALIBABA_CLOUD_ACCESS_KEY_ID'),
157
+ os.getenv('ALIBABA_CLOUD_ACCESS_KEY_SECRET'),
158
+ project='your-default-project',
159
+ endpoint='your-end-point',
160
+ )
161
+ session = new_session(o)
162
+
163
+ df = md.read_odps_table("source_table")
164
+ df["A"] = "prefix_" + df["A"]
165
+ md.to_odps_table(df, "prefix_source_table")
166
+
167
+ Documentation
168
+ -------------
169
+
170
+ Detailed documentations can be found
171
+ `here <https://maxframe.readthedocs.io>`__.
172
+
173
+ License
174
+ -------
175
+
176
+ Licensed under the `Apache License
177
+ 2.0 <https://www.apache.org/licenses/LICENSE-2.0.html>`__.
@@ -1,55 +1,54 @@
1
- maxframe-0.1.0b5.dist-info/RECORD,,
2
- maxframe-0.1.0b5.dist-info/WHEEL,sha256=J_5GGGAognyPkCA4mep3TG73WFTRAhUZ5YHiyekwc-A,113
3
- maxframe-0.1.0b5.dist-info/top_level.txt,sha256=O_LOO6KS5Y1ZKdmCjA9mzfg0-b1sB_P6Oy-hD8aSDfM,25
4
- maxframe-0.1.0b5.dist-info/METADATA,sha256=cnNixA7GoFVbe5XauylcYj_NQVLErMPn_5uoJnSO5w8,3045
1
+ maxframe-1.0.0rc2.dist-info/RECORD,,
2
+ maxframe-1.0.0rc2.dist-info/WHEEL,sha256=7emL_Abc5lO2qSa4d4jy4gFP_kXfOFOEhf1i6BTjJ98,112
3
+ maxframe-1.0.0rc2.dist-info/top_level.txt,sha256=O_LOO6KS5Y1ZKdmCjA9mzfg0-b1sB_P6Oy-hD8aSDfM,25
4
+ maxframe-1.0.0rc2.dist-info/METADATA,sha256=qszXXNEuBgJoGkf34QFHxRTLdK9nUi0WecWP2rsQ6Ok,4992
5
5
  maxframe_client/conftest.py,sha256=7cwy2sFy5snEaxvtMvxfYFUnG6WtYC_9XxVrwJxOpcU,643
6
- maxframe_client/__init__.py,sha256=3b-z0oFVVwtIzVFBxOb9pw7gz4IhTSh4FiHtVgnxS4Q,724
7
- maxframe_client/fetcher.py,sha256=p2hsVE2ihvhtuVCAaJhKccCiebl5f6BBPN6KIXOO0jo,8949
6
+ maxframe_client/__init__.py,sha256=0_6MYIqksNc-B0hORLb0yqNQUhtqdFD7TGg39bQ-_NI,689
7
+ maxframe_client/fetcher.py,sha256=PFU-EbawknnOthBnP41cYABkEB5yBO8SVcnUWn9f2Uo,9174
8
8
  maxframe_client/clients/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
9
- maxframe_client/clients/spe.py,sha256=ArZMNQ7olicI4O1JO7CyRP7-hb60DF71ZKCTO0N39uE,3593
10
9
  maxframe_client/clients/framedriver.py,sha256=Rn09529D2qBTgNGc0oCY0l7b3FgzT87TqS1nujGQaHw,4463
11
- maxframe_client/tests/test_session.py,sha256=0G522Ia05fFuBJv6b6UTIxTNot3QK1Kjte6Xiimhouc,7884
10
+ maxframe_client/tests/test_session.py,sha256=Hqq-Gx1HXI8OzNKLidZAc7M1G52h3QClHGUapuY3hko,9726
12
11
  maxframe_client/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
13
- maxframe_client/tests/test_fetcher.py,sha256=q7kYCznM6WSxx9TCbHrxs7Zy1L2a5zu9D-Pi1XNgQzg,3516
14
- maxframe_client/session/task.py,sha256=ec6AWeXBe_Q-Lats5ZW4V4J9qWokeq-ccBiAulCXpF8,10165
12
+ maxframe_client/tests/test_fetcher.py,sha256=jAZbrHQdjv0BxML03kJr9XqGYNGYZOHjfYjSnmpHW-o,4155
13
+ maxframe_client/session/task.py,sha256=v0tnS2QtkiNt7D47l_3QjXOqNqlkD7NGL8dJ_h4Fr_E,11101
15
14
  maxframe_client/session/graph.py,sha256=nwILNOIVaIf4E3xWffTAAlRsKRYU_zGW3oVO10du8Xw,4351
16
15
  maxframe_client/session/__init__.py,sha256=KPqhSlAJiuUz8TC-z5o7mHDVXzLSqWwrZ33zNni7piY,832
17
16
  maxframe_client/session/consts.py,sha256=R37BxDF3kgCy0qmDdwLaH5jB7mb7SzfYV6g9yHBKAwk,1344
18
- maxframe_client/session/odps.py,sha256=wIclE3cV2Awled2UiLUwATxsjc_fWFfbaW1UUcrmHCU,17526
17
+ maxframe_client/session/odps.py,sha256=h2Qz71MoLZmMoxDfgK8TH1D_5DLI-uUOV9swJkOUtAM,19384
19
18
  maxframe_client/session/tests/test_task.py,sha256=lDdw3gToaM3xSaRXEmHUoAo2h0id7t4v_VvpdKxQAao,3279
20
19
  maxframe_client/session/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
21
20
  maxframe/_utils.pyx,sha256=I4kmfhNr-xXK2ak22dr4Vwahzn-JmTaYctbL3y9_UBQ,17017
22
- maxframe/conftest.py,sha256=ZzwKhGp7LAVpzQYJkniwIUQqIegcaDQAhyzDyU2qld4,4264
21
+ maxframe/conftest.py,sha256=teZJlD2T3yuSAccgXiSncYxbmIKGzQponAy8DH78o7o,4356
23
22
  maxframe/opcodes.py,sha256=1Da6d3a82mecIHmnyZve4gSH_KN-q3Snl0nSygue2Ng,10191
24
23
  maxframe/env.py,sha256=_K499f7giN7Iu9f39iI9p_naaEDoJ0rx8dInbzqFOVI,1402
25
24
  maxframe/mixin.py,sha256=HBAeWYGb7N6ZIgkA-YpkKiSY1GetcEVNTuMb0ieznBs,3524
26
- maxframe/protocol.py,sha256=LjjE6iw0ZVx82tBMbff4izkGuiJxRG0MTOaPYYpRL10,14190
25
+ maxframe/protocol.py,sha256=hpYjrF5_EZ6MSfT0-c2T-FxJcK9ilOONrRLzfct0Tgk,19368
27
26
  maxframe/session.py,sha256=o2jp5NQP1pVMkp4AujN_3DB1HffZ0rMd5EbYZiLJxls,36205
28
27
  maxframe/__init__.py,sha256=SqTFS_1o2HDuVY1mhS0ELlqDuM-biwM_MN0EYGkJLf0,1004
29
- maxframe/_utils.cpython-38-darwin.so,sha256=6blIW8vPF2gs1BYElelposNrMrwi8NmU1flvwf3vNdU,846784
30
- maxframe/utils.py,sha256=b4CvX6vh3AXmQKHQaxYIDtebJ4l6hMrTO_HqETwkVG0,34244
31
- maxframe/extension.py,sha256=4IzF9sPyaRoAzLud0iDLooOgcyq4QunXH0ki3q9Hn8I,2374
32
- maxframe/errors.py,sha256=nQZoLGdLJz-Uf9c2vUvQl08QMvRqtkBOhKfdPYRZA4o,690
28
+ maxframe/_utils.cpython-38-darwin.so,sha256=_PwfV9t4dS_1IrnYojLlQE-TJOeJ_0YIa49yu5Q2fdk,846784
29
+ maxframe/utils.py,sha256=PvCGHwOTQwT4HNmniVIVgppmcT3Vq-H7XApkD7sYGQo,34499
30
+ maxframe/extension.py,sha256=F5XTYzW5hNw0AIQz3d6u6Yk7adDdiV4c-HD7bF0X1FI,2659
31
+ maxframe/errors.py,sha256=vHcpVrKRHmoZPa6IwsdDT-jOZUTlhCp8c0e8F2C-5uU,966
33
32
  maxframe/udf.py,sha256=-FzQCuV0GNyo3SH1r3rPQ3QMAydhYtE7KI8ff4Mv_PU,4288
34
33
  maxframe/typing_.py,sha256=fzHETru3IOZAJwU9I7n_ib3wHuQRJ9XFVmAk7WpqkMo,1096
35
- maxframe/codegen.py,sha256=B0y-bFXgze2CMUnAfrdOXsPrByyEAbq7pgio3mHl_j8,17516
34
+ maxframe/codegen.py,sha256=3Fl7uy-HG_XB82957RR_7BOQlKS7YPrvGYO7ZGh3lmk,17599
36
35
  maxframe/_utils.pxd,sha256=AhJ4vA_UqZqPshi5nvIZq1xgr80fhIVQ9dm5-UdkYJ8,1154
37
36
  maxframe/dataframe/arrays.py,sha256=RWzimUcrds5CsIlPausfJAkLUjcktBSSXwdXyUNKEtU,28752
38
- maxframe/dataframe/__init__.py,sha256=T08TZjNg2yWh7RmI0hX9PiBTlD5e9L_s3KnKsSLnBFA,2237
39
- maxframe/dataframe/core.py,sha256=b27b0XomeqISCPxltavESlueTTYEXF5wjtrTKEZtld4,74413
37
+ maxframe/dataframe/__init__.py,sha256=ojcTejC6A-txmh1fPhaZxIiXNQejd1Qf_nH0nRr6TbM,2242
38
+ maxframe/dataframe/core.py,sha256=5CMPn9kuKVMhUtFi3QLy6utFN71EXkMndTyDUyb-1Rg,74374
40
39
  maxframe/dataframe/initializer.py,sha256=4BpZJB8bbyFnABUYWBrk_qzzrogEsWgFuU21Ma9IsjY,10264
41
- maxframe/dataframe/utils.py,sha256=uaRpQp5Lciow-9UBDnuUacYvi4erJgyvTDnQziRDkFU,44272
40
+ maxframe/dataframe/utils.py,sha256=aPQrT3-TBTL2O_9QS70KlG4oV9EiFTTswofd7n3IKEM,44213
42
41
  maxframe/dataframe/operators.py,sha256=T7Ik1shfoyrMZ1x0wHXG26bsod1_YjMGQgGAFNpH6k0,7871
43
- maxframe/dataframe/statistics/corr.py,sha256=r9EwD6mqvlm3loEXr3ElS4XIr2NETfmTjC9V1fh4GW8,9495
44
- maxframe/dataframe/statistics/quantile.py,sha256=eH-kAg-SZ5JdI8K3P6p9gNeDu4cbJaUC3Dt-zoCoTv0,11713
42
+ maxframe/dataframe/statistics/corr.py,sha256=3dExebs9QC8GBaZZUSKXrN2eYt-hWMayJ2MHHzTn-8s,9483
43
+ maxframe/dataframe/statistics/quantile.py,sha256=ySXi2m8TrArfdidFc07VsOG-RdXJy-YIiOJRrlebfWU,11303
45
44
  maxframe/dataframe/statistics/__init__.py,sha256=Ate3HERUCrjhRoGhpR9SNZA5JHlvuIVSrHgYPEcJd6Q,1084
46
45
  maxframe/dataframe/statistics/tests/test_statistics.py,sha256=3kpFq9EoUI8PBikQGwMoMN7vwBTeoQeF3XG2h2Hzcu0,2730
47
46
  maxframe/dataframe/statistics/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
48
47
  maxframe/dataframe/misc/accessor.py,sha256=QXjV5Q6LW0KNs67X5h2bCBhwHV8R7riP6TmTY_ECpmA,10027
49
- maxframe/dataframe/misc/describe.py,sha256=Qvmv_5rj-fk_ABcS5h8IxNHY-EAPB1rG446LiB1MRgU,4387
48
+ maxframe/dataframe/misc/describe.py,sha256=Ym9DrZVBSOK0EcsiqKzjMSIK5LNPA12GPoLkFjACyZM,4370
50
49
  maxframe/dataframe/misc/astype.py,sha256=OkGDO6PBZli46m0kKq0BOO2OOwJWEyatzeBFV_mnKz8,7797
51
50
  maxframe/dataframe/misc/to_numeric.py,sha256=gG5fxEtC71SkDeHaJ0Vd1JZrIM8gMHGFaiwyFtMwbWs,6262
52
- maxframe/dataframe/misc/case_when.py,sha256=CqR8YRc7PKja3dUdPxe8nd7oAcZrvHAPJvdzlj9wZT0,4851
51
+ maxframe/dataframe/misc/case_when.py,sha256=1Eiy_OP_ljq8rTSjhDthT30ybTq6UUfgfCgG2DroECI,4861
53
52
  maxframe/dataframe/misc/check_monotonic.py,sha256=apHehWNRUTuzux3hI4JflWiuvpaeEFwtpPTWVide7wU,2422
54
53
  maxframe/dataframe/misc/datetimes.py,sha256=fgLczaX-yDdairnNW1EsabEzoioP5gUsO0ukYANisLE,2503
55
54
  maxframe/dataframe/misc/string_.py,sha256=eG4uMA6ScB0Pfby6pBLH24Ln01Aai2aAn-hMyRM5YFo,8101
@@ -57,27 +56,27 @@ maxframe/dataframe/misc/cut.py,sha256=aB8iuk6k2W3G2S3j0jPsryvBhOmaQJSZGIpZ5u1rWb
57
56
  maxframe/dataframe/misc/get_dummies.py,sha256=q4f-1RCw-WWz53bT2FseYyzBNV3pDJTKNBKFx0dd888,7087
58
57
  maxframe/dataframe/misc/__init__.py,sha256=U1p-l0iC1dbh7WLv5kVPelXqK7tb00LJvtu_H7GdtGA,5267
59
58
  maxframe/dataframe/misc/qcut.py,sha256=De8kM1FfOWMEDvRNWRaupSHBRGLaOVrtGbLmtHAZvOg,3737
60
- maxframe/dataframe/misc/pct_change.py,sha256=dNvj5VDPndRqc8lPweWcTiSz4p4oSibeQ2yxCVusLpI,4586
59
+ maxframe/dataframe/misc/pct_change.py,sha256=-WBq5VD3cPMv3EsqoAEvN9MXbBWfh4qHydwtWbMutZY,2516
61
60
  maxframe/dataframe/misc/duplicated.py,sha256=JPtBDLaxlVUqFBU3U3bqGnKQNaOcKwS5sdVfBFJt-Uo,8534
62
61
  maxframe/dataframe/misc/pivot_table.py,sha256=YoKjjtOw2Z6KU3q3opAFag1gICz5Kc_VIcKNs3ur62A,9520
63
62
  maxframe/dataframe/misc/map.py,sha256=RbUi0xPzT0hnsKid5RA5uHYyTeBnpzXlukR48Ntooxk,8149
64
- maxframe/dataframe/misc/memory_usage.py,sha256=JN4x0ObjG7JP84ZMLRaQR8_-Eplg2_YxfJgi7XGM310,7897
63
+ maxframe/dataframe/misc/memory_usage.py,sha256=BPBSYNFvxTYG5kXdX-ogLn1_c_u__G9UeWkEIKrnfyA,7889
65
64
  maxframe/dataframe/misc/isin.py,sha256=POBR3Gvwlu2TH1AWWvKW12XOlu8HF2dJuBCBbOHgq74,6931
66
65
  maxframe/dataframe/misc/shift.py,sha256=feTqtnIRm0YGha5Ps_feQOqHLxSbicnOMbthmZc6pEM,8935
67
66
  maxframe/dataframe/misc/transpose.py,sha256=-Q7iFtafKKibpZKWYxf0bUg4zIZPTupvY4hkdAlB3Gw,3636
68
67
  maxframe/dataframe/misc/melt.py,sha256=wZnxUWZfOxU9xoDp5asfi7UCXUyUNwqupZiPBibbA7c,5120
69
68
  maxframe/dataframe/misc/stack.py,sha256=ybopZCNzARqrtFYhvjs85j-g6mXL6X2XTdSTAudtmVI,7962
70
- maxframe/dataframe/misc/transform.py,sha256=aUyAB_FvmSMZJ3_f6YMwvwC7DzsJstUJvpXJqNKdtqY,11639
69
+ maxframe/dataframe/misc/transform.py,sha256=ZUeFD2ZByJxGHuyUlCCFVBT05WPewdWK6FDw6S7JuDw,10920
71
70
  maxframe/dataframe/misc/explode.py,sha256=Z26L0iYmyHE1mffyAC19Fk5rGDfw7oxOnaBHzeZ4QbU,5011
72
71
  maxframe/dataframe/misc/diff.py,sha256=bhorH5BuKmnMJSXKC-_ZANNAR8LFDIy6p7m4kpZV_R8,5491
73
- maxframe/dataframe/misc/drop_duplicates.py,sha256=Rghb6qB9-IY7Bcx9TT2QgLmyQfErF2G8IvQiFkiTiyQ,8347
72
+ maxframe/dataframe/misc/drop_duplicates.py,sha256=t8Rq93Qp4ZHGqJH9YzYJ9qdx9-StoKkkX9YVBfU9ErQ,7851
74
73
  maxframe/dataframe/misc/_duplicate.py,sha256=lCryaC64c46YA6R3UjTBfh77L4yyB8ub3EPzBMe_HPg,1470
75
- maxframe/dataframe/misc/eval.py,sha256=-2svFR5uraqnzKeCS2bJRx5POHRxqST2lbk6qzee7hQ,24263
76
- maxframe/dataframe/misc/value_counts.py,sha256=ds3EVCs0jL1hcTWREzPgb7-20ezcYSNvu9ZtCYqrvfk,5492
74
+ maxframe/dataframe/misc/eval.py,sha256=jXIQyGK4d1c8A-n3BBdisKK3dIjLbZO07hh-qtslBdE,24359
75
+ maxframe/dataframe/misc/value_counts.py,sha256=yWpGLLdx--QobAFNJHb51wuA_fePMqKMeWXA6GjIgbo,5215
77
76
  maxframe/dataframe/misc/select_dtypes.py,sha256=xEdLNun58kvp-Vbl3u2cr8kaXFG8GsIU2BMfo7tFCM8,3144
78
77
  maxframe/dataframe/misc/drop.py,sha256=-RHIQWek2LUTK8lOILNpCWYftCY3-I3DHSP0XT4uHBc,13029
79
- maxframe/dataframe/misc/apply.py,sha256=BTszTrgGDNATweYogT_0_hKyPF1A2xYVQGF81DYQLb4,23366
80
- maxframe/dataframe/misc/tests/test_misc.py,sha256=Loi_HGVRe248yL7DI-5dAPR5eaJtPIXdaodFh8-fsOU,15142
78
+ maxframe/dataframe/misc/apply.py,sha256=hPwYKPvdxtj_jqEX1DOxH1_O7Hz3giM6NOdyN1VRPqU,23370
79
+ maxframe/dataframe/misc/tests/test_misc.py,sha256=5yF01TfqHmNBayMGWc5_4bS8vEc2bQ-kPMSwn54ytM0,15630
81
80
  maxframe/dataframe/misc/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
82
81
  maxframe/dataframe/datasource/index.py,sha256=D7PcfIWS-6Hv1-8o6adNesditOAa9kb4JOQK1WlqNDQ,4401
83
82
  maxframe/dataframe/datasource/read_csv.py,sha256=cpp6kX0DVrqY0KticL1h11tckobSzz1gyK4Sf2puUjo,24140
@@ -85,27 +84,27 @@ maxframe/dataframe/datasource/from_index.py,sha256=2061zsQn-BhyHTT0X9tE0JK8vLxQU
85
84
  maxframe/dataframe/datasource/dataframe.py,sha256=LxAKF4gBIHhnJQPuaAUdIEyMAq7HTfiEeNVls5n4I4A,2023
86
85
  maxframe/dataframe/datasource/series.py,sha256=QcYiBNcR8jjH6vdO6l6H9F46KHmlBqVCTI2tv9eyZ9w,1909
87
86
  maxframe/dataframe/datasource/__init__.py,sha256=C8EKsHTJi-1jvJUKIpZtMtsK-ZID3dtxL1voXnaltTs,640
88
- maxframe/dataframe/datasource/read_odps_query.py,sha256=CP7krcDLWrjReaQVIzr4FF4pI54D02aE0UXFYY89DFE,9970
87
+ maxframe/dataframe/datasource/read_odps_query.py,sha256=ij9QCFJwONQ9aDxm627yFbF9H3WyQ-cqaThmKufuUZc,10217
89
88
  maxframe/dataframe/datasource/core.py,sha256=ozFmDgw1og7nK9_jU-u3tLEq9pNbitN-8w8XWdbKkJ0,2687
90
- maxframe/dataframe/datasource/date_range.py,sha256=CDGpxDyjLwnb66j-MIiiTfXGXHGh5MLhEmj6x2riIlU,17244
91
- maxframe/dataframe/datasource/read_odps_table.py,sha256=UThcVjHKvt3GtNNd4zSEee3m87pKt9ngeksTvQSfH9k,9172
89
+ maxframe/dataframe/datasource/date_range.py,sha256=8JMr_Ife5pKCS_ca7W50Fyoc1JigOJirVzdVaPDzeFo,17227
90
+ maxframe/dataframe/datasource/read_odps_table.py,sha256=V8GQo33ijDU1OHMt5JzAlGa1IDW7fgxaDS__sgiik34,9225
92
91
  maxframe/dataframe/datasource/read_parquet.py,sha256=9auOcy8snTxCOohgXZCUXfT_O39irdkBngZH5svgx0E,14531
93
92
  maxframe/dataframe/datasource/from_tensor.py,sha256=4viuN5SLLye7Xeb8kouOpm-osoQ2yEovWTDNPQuW8gE,14727
94
93
  maxframe/dataframe/datasource/from_records.py,sha256=WBYouYyg7m_8NJdN-yUWSfJlIpm6DVP3IMfLXZFugyI,3442
95
- maxframe/dataframe/datasource/tests/test_datasource.py,sha256=4O3N-XD-MpJxEQfILu4cS7gU82hqgS9g9gnDDEsw56k,14640
94
+ maxframe/dataframe/datasource/tests/test_datasource.py,sha256=CMgDm-fENFgjcrenWqOoQhhzT_dj6TMnUBWr5LG9GHQ,15073
96
95
  maxframe/dataframe/datasource/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
97
96
  maxframe/dataframe/sort/sort_index.py,sha256=Hwbkm9x8kqGgXh4gMcAtYMDjYtt-S3CJXfYR9pN5Iqk,5412
98
97
  maxframe/dataframe/sort/__init__.py,sha256=Vt2Ynr7uAX51hLbQu93QeHiFH4D9_WJMO99KljpbO2U,1160
99
- maxframe/dataframe/sort/sort_values.py,sha256=GINU0I7CT6EcLjW8YLyCMX7Hshh951Pdk1XfI2u8_OU,8868
98
+ maxframe/dataframe/sort/sort_values.py,sha256=-B0C2MXo9U33rW36xUFWqR8igPTdYwxAbI8-Vd4E4t0,8702
100
99
  maxframe/dataframe/sort/core.py,sha256=yWVlULMI91lSgW7-F-nwBQ7Sc71sCLAYvLeM0GR49w0,1224
101
100
  maxframe/dataframe/sort/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
102
101
  maxframe/dataframe/sort/tests/test_sort.py,sha256=BE03oQ8lJTQUZhMW0vzwv9jjcLToLmc68vfj3hO_sp8,2604
103
- maxframe/dataframe/merge/merge.py,sha256=pWNUAJmVtl9c0YSqBEwW5pQuWpbG1SjdLpV1WUXrsIo,21638
102
+ maxframe/dataframe/merge/merge.py,sha256=TEybvYFQAn67HEXPx_m1poLPPNW2sTdkJ7q0WUMpGpc,30423
104
103
  maxframe/dataframe/merge/concat.py,sha256=A6KGkekcT7E_cHgw9LIZN0zynydCKSm42yHjD5DTeHM,11482
105
104
  maxframe/dataframe/merge/__init__.py,sha256=isesjujGNB_rzutbCEQLApYY16O7qRgpp4cvFQVcN_8,1037
106
105
  maxframe/dataframe/merge/append.py,sha256=-Y1LXO3mOn_8nYOlb1-8644bYcafInBen0G7f4OKKiA,4852
107
106
  maxframe/dataframe/merge/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
108
- maxframe/dataframe/merge/tests/test_merge.py,sha256=jl7k0IdDF74gi_RRmim3iWkTIlItaL6070AN5kk7c28,7265
107
+ maxframe/dataframe/merge/tests/test_merge.py,sha256=XZXfGcnlmRFI9IjO0q_bg9BUd-jVlIypUl73lNW4Vyo,11150
109
108
  maxframe/dataframe/tseries/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
110
109
  maxframe/dataframe/tseries/to_datetime.py,sha256=ctRUuRPPyBIC0yLY0rOIIxEdK67e5o9c63KRFsuKZB8,11328
111
110
  maxframe/dataframe/tseries/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
@@ -115,8 +114,8 @@ maxframe/dataframe/tests/test_initializer.py,sha256=wgV1a3YK6Q4xzVVcfS_3qIWdO-t8
115
114
  maxframe/dataframe/ufunc/ufunc.py,sha256=P8mh9CwKnxoN624IaoZ010kwH1n4RiUUGMuU5IgHTOM,1651
116
115
  maxframe/dataframe/ufunc/__init__.py,sha256=-_obmEV3B4Az5V0x-P-T8cfdeSoYHrLBOgj_-gqv1c4,889
117
116
  maxframe/dataframe/ufunc/tensor.py,sha256=SeWQbDflxL5fipzPJdhVKFk9ntM4VXtGazb8lD2JwSM,1618
118
- maxframe/dataframe/missing/dropna.py,sha256=iIpY4n8tpmR5Vtl63N2aVhCwYezEKrZkJQYayyxKm4Q,8238
119
- maxframe/dataframe/missing/fillna.py,sha256=ueWDS0KySyh6xw8_ZIAKU-xZua0Nhqh1uw6uWcWoyQY,8905
117
+ maxframe/dataframe/missing/dropna.py,sha256=apc4SsUPtAMtHab3ErMj6BmZj_AxdS6Zp_zSeOjhXLI,8240
118
+ maxframe/dataframe/missing/fillna.py,sha256=dGSeq6OASn9mfPR1-kc0fqJaL4N8AVzD8u-9PHc6B0Y,8905
120
119
  maxframe/dataframe/missing/checkna.py,sha256=k7T6a1-qASATtJzeOJ1LqpMRt9lA6vpoYGuUANZaJvY,6890
121
120
  maxframe/dataframe/missing/__init__.py,sha256=kqtLysfyQQstx6Dsy0qEDAXdRaycU1IGVn7J-sshJO0,1813
122
121
  maxframe/dataframe/missing/replace.py,sha256=sYFzkyChrev8Vl0NocDGTCdWTdHjXvzBzHbf6Bpb9EM,13340
@@ -129,7 +128,7 @@ maxframe/dataframe/extensions/tests/test_extensions.py,sha256=1YMaakSRbvr-A_-F8U
129
128
  maxframe/dataframe/extensions/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
130
129
  maxframe/dataframe/groupby/aggregation.py,sha256=BuhqZal6RLHkjvwJep86oT1a7rMqxxUAPxQ_dao6I6E,11953
131
130
  maxframe/dataframe/groupby/fill.py,sha256=JF3NxyXigZqg8ecKtLSndDmNMX8S6g_ChQR9JAK036E,4721
132
- maxframe/dataframe/groupby/cum.py,sha256=jdGQm7U-GosgHMfneHZC5Z2uraj6iBmSFOhqP3m18B0,3755
131
+ maxframe/dataframe/groupby/cum.py,sha256=F5uX97hR1rMQG9YtvoR7MFFvP3zMDDv1GD9b2NqLcOI,3683
133
132
  maxframe/dataframe/groupby/__init__.py,sha256=nZkz1OAdYRj8qwQkUAZDax0pfCsUH_fprwuksS97vuc,3361
134
133
  maxframe/dataframe/groupby/getitem.py,sha256=kUcI9oIrjOcAHnho96Le9yEJxFydALsWbGpZfTtF8gY,3252
135
134
  maxframe/dataframe/groupby/core.py,sha256=K1hg9jod6z3C65SYoidmEAd_k0Mear4l5IQuwNMjpxQ,6075
@@ -138,11 +137,13 @@ maxframe/dataframe/groupby/head.py,sha256=ZDkbSn3HuUR4GGkZJqo_fL-6KFJfs55aKXQkAh
138
137
  maxframe/dataframe/groupby/sample.py,sha256=IdoyzT-V5309txYvM_iaYKupsULfozMGwm1K3oihTf4,6935
139
138
  maxframe/dataframe/groupby/apply.py,sha256=gZVHN8nMXoy7BEHTBAVLQKtGicQ_jB3dsny8jEn0pUY,9484
140
139
  maxframe/dataframe/groupby/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
141
- maxframe/dataframe/groupby/tests/test_groupby.py,sha256=VsHDG-UaZUXlZ1l498y44ecfzJJ9D2oY4QmPCjS6wBs,12142
140
+ maxframe/dataframe/groupby/tests/test_groupby.py,sha256=ctkAniUwunVsgCG-b6b2qKSCqHXFtYItr2ptoTrIB48,12362
142
141
  maxframe/dataframe/datastore/__init__.py,sha256=Ujd4ix4UJ7Zq-sV2pXTRDvZkKUvtt8sr-FfiUoi6Kh4,784
143
142
  maxframe/dataframe/datastore/core.py,sha256=hLGhqYxX73tq9sOFxMyYBRMawTnsVQqluW5FcE3YHfE,743
144
143
  maxframe/dataframe/datastore/to_csv.py,sha256=xVfpEsicD5A5uXLSdCN08K8uGyWB4QxnRcAbgBVUzbs,7747
145
- maxframe/dataframe/datastore/to_odps.py,sha256=wZzD3yc6YQAGYVwEzYY-qxscn8Sj9I43lR70tFHe3m0,5562
144
+ maxframe/dataframe/datastore/to_odps.py,sha256=5ZS22l8QZQjOd6pGQL-rEUP5gqu8DMa1fqdL6TTx_Zg,6413
145
+ maxframe/dataframe/datastore/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
146
+ maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=EaFprN1mErrqqy54Rzbw6PQxPbBCgxDP0E055RIIH0g,1296
146
147
  maxframe/dataframe/fetch/__init__.py,sha256=E3VjxLRKjtr-D__K-c0aRETvBG7CQRG1iEtH0Qghq0s,653
147
148
  maxframe/dataframe/fetch/core.py,sha256=z61_orBtOIrKFpFdJTNqyPhOw5ZCGe6QkXnDrGdMy6U,3338
148
149
  maxframe/dataframe/reduction/max.py,sha256=CqaueIN3cuF7vlE2rt2MAcXAD3Syd_R8W2dzcFhTmV0,1660
@@ -204,15 +205,15 @@ maxframe/dataframe/arithmetic/cos.py,sha256=I7faGLNqhY66zrKljTZ-b75c5y_-i7PRZIim
204
205
  maxframe/dataframe/arithmetic/tan.py,sha256=ecKpsFWNl8eP2yAIc1eCpMLIx0e6nLIInOm2iVf4dN0,915
205
206
  maxframe/dataframe/arithmetic/abs.py,sha256=qpKKyVJx296tnXDaqEJY_MHwYspUPGrSKxcNALy0AIc,983
206
207
  maxframe/dataframe/arithmetic/__init__.py,sha256=DNekqWOuBpopzQTbRaDWN2fGwC8HmdQ9XrrV2xf3wc0,12478
207
- maxframe/dataframe/arithmetic/core.py,sha256=6sN0sm9MbwhLPWWZCBC6tfNsjEBiCfpTq_ygHaAf9Fc,13759
208
+ maxframe/dataframe/arithmetic/core.py,sha256=uJIU_dHoS178TSmJvy36GfjUMc_m_pCLnq2m2s61dAc,14059
208
209
  maxframe/dataframe/arithmetic/floor.py,sha256=bM91bdHP-302gSlTeVphqy9I8JVa2mW_idfMpemD_Gc,925
209
- maxframe/dataframe/arithmetic/around.py,sha256=IgGkDaybD_-7epPkHdr5ek5vMHT6zcTUUDuQVlJKnnE,4138
210
+ maxframe/dataframe/arithmetic/around.py,sha256=aeviUKYjPt-TnhIEEfRej4s2abABDLK38ePSgTcS8nA,3823
210
211
  maxframe/dataframe/arithmetic/is_ufuncs.py,sha256=hEcMAXUMQSkem3xNxdgqIbyEmfG5Vd2VZ6NcPjvfU4Y,1736
211
212
  maxframe/dataframe/arithmetic/ceil.py,sha256=2Kg7DhGutwqRpH88pvbY0mXz0n6fI0KB_EuMP_nVCTE,920
212
213
  maxframe/dataframe/arithmetic/bitwise_or.py,sha256=BNYyKUshOkyQ1pnEPr4YV77ANRvV5VfY6QXuHs1oARk,1546
213
214
  maxframe/dataframe/arithmetic/bitwise_and.py,sha256=G3IMIAmFz9HTcuNnVdSiWCKcSUdNKniR_f7wLhJ4ubM,1427
214
215
  maxframe/dataframe/arithmetic/log10.py,sha256=yT9ziTGU0QogZLdwHiZA8VHqes2tKzHfKRsrrhEbEtg,925
215
- maxframe/dataframe/arithmetic/docstring.py,sha256=YSjlrLp8bydiRPOhnbk4REGVG6yK1zqV9GoZKfmgMLE,12519
216
+ maxframe/dataframe/arithmetic/docstring.py,sha256=NlmLreMXi3Y7Q7U0tPnvJOIM0LtNw7n7cW3F_d5yT08,11074
216
217
  maxframe/dataframe/arithmetic/truediv.py,sha256=KNMlFa7D8ui89ILKKg5QG1TmTYA3C3Gttv9UAq3UGK4,1808
217
218
  maxframe/dataframe/arithmetic/exp2.py,sha256=cwyEZ7uyjbiqD-7Y9PqEDOI80hf6ReabtbGq6DLjwCg,920
218
219
  maxframe/dataframe/arithmetic/expm1.py,sha256=XfDd6LQ1YzBq8mnTVFTWf3lBtIOMzaO4yc9b5ZRuIQU,925
@@ -235,23 +236,23 @@ maxframe/dataframe/arithmetic/not_equal.py,sha256=lvdiCA977jMpSSksJYvKntaCioD-4i
235
236
  maxframe/dataframe/arithmetic/radians.py,sha256=pSq9S0KlV0Xx0vGSdxdol3348dSyYuxG4jMFbGFdQ6E,935
236
237
  maxframe/dataframe/arithmetic/sin.py,sha256=zgWoijVpASlkZ7cnZZxKSSHUiLqQ0pKUAIOHEfCBubc,915
237
238
  maxframe/dataframe/arithmetic/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
238
- maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=Zm0hwTo_NqFAa3iDmYF2Q10-884d8ltOsby2WjcioBA,24372
239
+ maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=-FowcMCeazWtgBRW77VSdo9-JS3J0Js_FUMP1MW2JHw,25257
239
240
  maxframe/dataframe/indexing/reset_index.py,sha256=uzGszHfkhwZgZtEaygy5UPrvHPNPXgWZaTOXdNxGBT8,13122
240
241
  maxframe/dataframe/indexing/iat.py,sha256=ANURJ8qn_UitgM01gDPeaQOlSBxbk0pmN4Yr-iPRXM8,1127
241
242
  maxframe/dataframe/indexing/loc.py,sha256=ZmiK3a2f-krkXFvNLSlzRRa6GWGiAAXk_3mWZC_MqdQ,14845
242
- maxframe/dataframe/indexing/align.py,sha256=BdrfIrf6A7v8W0GIuv1mdx87CzR15ARnqIH_aWUjWqY,12089
243
- maxframe/dataframe/indexing/rename.py,sha256=W4CV2FK9Wt15GWukHbeWi7scXwiVL1ZRoXeAy7zIsLQ,13547
243
+ maxframe/dataframe/indexing/align.py,sha256=hEuoaNX4bI9LBWp_1kGG7GSs3PDF95tDXo7GX5nypGI,12085
244
+ maxframe/dataframe/indexing/rename.py,sha256=Gz0p9zVLsQ-I4cKg_Ok_mimzdCa8r5mS8shMBkM3KkQ,12463
244
245
  maxframe/dataframe/indexing/setitem.py,sha256=PgVZr2A_joTHz9GUbnGfuSI28qSnwe-n84yKFJagLUc,5004
245
246
  maxframe/dataframe/indexing/where.py,sha256=3h64jI_tXmWAu1ZvfeS58h8nUfBN7K7OZ0C22_5-_uk,8567
246
247
  maxframe/dataframe/indexing/iloc.py,sha256=sP4hV9Wo3S4Iimxak5Q-EB_Vph2dCbbDsVS003jEeFI,17421
247
248
  maxframe/dataframe/indexing/__init__.py,sha256=BdT5tBzjW8tESUPI3blrO7KxKzgZmf8_pQhvZzUU66o,3213
248
249
  maxframe/dataframe/indexing/getitem.py,sha256=3LHjTcvU0PSTf_VI6x1MwirIiK_ynLcGb_dHdMPnVBk,7754
249
- maxframe/dataframe/indexing/set_index.py,sha256=1YQP11Bpq5hGDiym573NiH84QFZubApli8HHhGwJoe4,2119
250
+ maxframe/dataframe/indexing/set_index.py,sha256=Sa49Z0n3bwAM1OTJJPdTSCZb4qMZjyfhiEpi4mALviU,4195
250
251
  maxframe/dataframe/indexing/at.py,sha256=cGzJ3eM_kVIYDPf24JQxbhrRNtb2urscMtV0XUKzWkw,2217
251
252
  maxframe/dataframe/indexing/rename_axis.py,sha256=w5B67qlcsdjNhN6OZnov5L5ovJXpu_Oqpux0AP0elzk,6302
252
- maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=tSNslK43yx9tOieXcEuWamW7HWysxSoqqEM4p5NN55k,2966
253
+ maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=-PY64B6avq7XeYSyAcZW4ABidakzfAepd3llO_C0nGg,2970
253
254
  maxframe/dataframe/indexing/insert.py,sha256=GG9VGNozKDdeREdtsQJ6WztFUwuYuBP-LW1Lv4RftN0,2911
254
- maxframe/dataframe/indexing/sample.py,sha256=MhpBSu5YuHFCMyjCqY1Xf5HiTbY9frZhg_-myXD8_IY,8172
255
+ maxframe/dataframe/indexing/sample.py,sha256=Dm3qqFa2nL0A24rSrqDs_4U1m9a-noWQMp_CNE-Suak,8171
255
256
  maxframe/dataframe/indexing/set_axis.py,sha256=n5obYjkg-YKSOGHA0gfM25qUPGcGHBeeo-uyvhYCI34,5530
256
257
  maxframe/dataframe/indexing/reindex.py,sha256=mrDBxDZwbaqhjwy_fWGRtWI6MhJ6O1sR1ANhCXuQz8A,19173
257
258
  maxframe/dataframe/indexing/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
@@ -262,11 +263,11 @@ maxframe/learn/utils/core.py,sha256=_tskQMfdvr5VAV68fDzM0DSVF2S7SMDnNXA8j_gHmGI,
262
263
  maxframe/learn/contrib/__init__.py,sha256=WvCqsncQZKtDURfK8ma9GoPHVVK02yW2ueom_kBMl44,632
263
264
  maxframe/learn/contrib/utils.py,sha256=k5jlwY8pru_PD8olOBOsMcBLeo31NMx53TjJmSvbvy8,1662
264
265
  maxframe/learn/contrib/xgboost/classifier.py,sha256=IXNuAGtJMfZstcQoOyWUogZQsRvzRsBGp-gge-mqQsA,2936
265
- maxframe/learn/contrib/xgboost/dmatrix.py,sha256=uZI3KxXZ7fa1SQ8dRs_ZTFpyNNt0ZmM4SR-WRkIvkjk,4856
266
- maxframe/learn/contrib/xgboost/predict.py,sha256=yMV_wF3Cbx1PdZOjoy4mkVYnTQApmaC3ORK_9J8KicQ,4664
266
+ maxframe/learn/contrib/xgboost/dmatrix.py,sha256=7ZEE6u1ZF_J80DAsaKM9_qD-gg-KFQHx_QID5y43huQ,4839
267
+ maxframe/learn/contrib/xgboost/predict.py,sha256=-i5O4Msxo2KqCRTC7dnFDmz6mpsn_TKhX2sDbyePw_A,4647
267
268
  maxframe/learn/contrib/xgboost/__init__.py,sha256=kbYrokjDXjMBqRka5NTkUjU5zrNUoT_TkTyuW9G5s-0,899
268
269
  maxframe/learn/contrib/xgboost/core.py,sha256=uilXCgjYuDKpxLNGkB5g-TDGijJ6EqnEvfXoEFC0JNQ,5194
269
- maxframe/learn/contrib/xgboost/train.py,sha256=YkNTzyaxj_s9G-F2h0GX5L12PkJwOpcaTJX_R6DCQMQ,3958
270
+ maxframe/learn/contrib/xgboost/train.py,sha256=3qylOInvKOn6b-6EU7RMQnNkIT8RqpagpkctFFHquhY,3941
270
271
  maxframe/learn/contrib/xgboost/regressor.py,sha256=vAQHM2RQ3hKhQz3cqQ0twXpIDAkVOS9u4ivsQ5hX5dY,2532
271
272
  maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=0Q3A1EFW30vsQLl7bSTTuw-ldlLEO43ljVSJBb8j1LM,1406
272
273
  maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
@@ -275,22 +276,22 @@ maxframe/learn/contrib/pytorch/__init__.py,sha256=koagbwLwH1VNLTWYx29ckatBChZ_f9
275
276
  maxframe/learn/contrib/pytorch/run_function.py,sha256=oMDMVqDFQJ5d8DllZrqqRmBT2lx1cTmAv0hdQlO2GrY,3244
276
277
  maxframe/learn/contrib/pytorch/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
277
278
  maxframe/learn/contrib/pytorch/tests/test_pytorch.py,sha256=ztAli4QwNUDfvM7M2LulJItFNWlUDFc_MByDF2KAcTI,1402
278
- maxframe/core/__init__.py,sha256=UoKY1FbSKr3ZITHR5FGb1jx92YI3MPYbvXCX5RDUuCY,1677
279
+ maxframe/core/__init__.py,sha256=BrapLnnMHHg-AM_OJcAgGyvD7Fwy4mdl1ceMmzImpeU,1616
279
280
  maxframe/core/mode.py,sha256=uRzQDTu471APFDOx12NkTgZiPB-YiCuPhmakhEtIz3M,3011
280
281
  maxframe/core/base.py,sha256=3ZNLtl0jZWY5ZIwmIJF1-khF-DYxoeHxAMMiOCwpaBA,4535
281
282
  maxframe/core/entity/tileables.py,sha256=b9jn_OQ-FQkbw7E7jMLjoJ4-VR7tBS8Mbx_j4iZ7uNc,13535
282
- maxframe/core/entity/__init__.py,sha256=Hz_p6eTkrSdkT7YCo5aeGZ33tms5wwifMp4TeYsAVlw,1292
283
+ maxframe/core/entity/__init__.py,sha256=QarGyhv2B6MFlHaI8v6lOUsMIRoiHd1Vm1U4z959U3Y,1214
283
284
  maxframe/core/entity/core.py,sha256=t7Ex9Yb7A1h_XwyRG88Fx4ZOai-NQKi2luRVS_jFPEo,4018
284
285
  maxframe/core/entity/utils.py,sha256=IuNgFmBQFRioAA1hgZe6nTEggOmDY-iooZqncQQrV28,942
285
286
  maxframe/core/entity/executable.py,sha256=HKXHXdPIyxg9i-OWmJxIY3KfXwX0x3xN9QcR5Xhc7dQ,10938
286
287
  maxframe/core/entity/output_types.py,sha256=uqApvFK8w6_aMxRets69dTwD1ndBDgVgqDCflyt9ubg,2645
287
- maxframe/core/entity/objects.py,sha256=RMHLTGbIHZNxxX59lAuQydAKcR32qKleIYUqdElGS4E,3034
288
+ maxframe/core/entity/objects.py,sha256=R6bUWA5eq3oSSUFcw3zKLdbokXvyeiga9RgsmbFJ6QU,1841
288
289
  maxframe/core/entity/fuse.py,sha256=47U6MHRzA2ZvUi-kJb7b3mC_gN07x3yebBgX2Jj7VZo,2277
289
290
  maxframe/core/entity/chunks.py,sha256=yNSLCWOpA_Z6aGr6ZI32dIJf3xPdRBWbvdsl8sTM3BE,2134
290
291
  maxframe/core/graph/__init__.py,sha256=rnsXwW0ouh1f7SVtq73-PzLE-MBM6Op_0l6J7b7wGRE,821
291
292
  maxframe/core/graph/entity.py,sha256=56gjXyDXN-TTPm3AQOxuRVQbb_fguKFDL_Xm7i95XEk,5559
292
- maxframe/core/graph/core.cpython-38-darwin.so,sha256=uEOl5VEbJSk95GbzlR2FPg3u-E51qCuM0rF8tDXLpqI,685680
293
- maxframe/core/graph/core.pyx,sha256=ZJPx_MTOBMaX-6mns6tAiu-wrIBvRAKN44YAGTypJ1Y,15887
293
+ maxframe/core/graph/core.cpython-38-darwin.so,sha256=F3HIVyU9re_lnoX0e6y-Pk1vdHehg4WnKmIQ9TcVccA,685712
294
+ maxframe/core/graph/core.pyx,sha256=kyqE5-X9Tc82wU4N_zsf8jNthAHWHTVRNFQWNNbzgpM,15923
294
295
  maxframe/core/graph/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
295
296
  maxframe/core/graph/tests/test_graph.py,sha256=kZfe_SfMOoHjEfXvtVtn0RjK4lOd-tFasxSpfL4G1WE,7462
296
297
  maxframe/core/graph/builder/__init__.py,sha256=BV5tAiZ-bJE0FBGSCEnfqKNwBNHgvB9aSzEp0PY6SnA,702
@@ -309,52 +310,53 @@ maxframe/core/operator/fuse.py,sha256=0RGemF99gQCwV4aEk-K6T5KAGToO-487dFk8LyYDIZ
309
310
  maxframe/core/operator/base.py,sha256=nxuSKjbBzDrItM9PGmFo8RLwParazu525jMLWj0kXkM,15251
310
311
  maxframe/core/operator/tests/test_core.py,sha256=57aICnc5VLqdVK7icAORTWC81bSjBxeeVWIJcha9J_0,1691
311
312
  maxframe/core/operator/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
312
- maxframe/config/config.py,sha256=Uhwf6SqtMCRDVvif76lFEiGiYrIlUF97JbpVkOzHpic,13576
313
- maxframe/config/validators.py,sha256=2m9MrkjDUFiU4PPaWIw8tjwMaOy8AYmuJFqVnnY8IMY,1615
313
+ maxframe/config/config.py,sha256=DFHXodCuGUnL4Wgmvwg7dsQIx8CAf-66Hp3Fyj8CJHM,14669
314
+ maxframe/config/validators.py,sha256=T7dWYehFQxlmai0oqsDSsnyTfGyI_zbUXP6jv5eKseY,1676
314
315
  maxframe/config/__init__.py,sha256=g5lN3nP2HTAXa6ExGxU1NwU1M9ulYPmAcsV-gU7nIW8,656
315
316
  maxframe/config/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
316
317
  maxframe/config/tests/test_validators.py,sha256=U_7yKSl0FdVdDwKU1EsnCzNWaOXi8xrIC08x7hb_O4c,1240
317
318
  maxframe/config/tests/test_config.py,sha256=Cx3buKli4F77zwJaB-vnUSlE9LUbt3ObHW38cIE2dDs,2736
318
- maxframe/serialization/exception.py,sha256=TIlEDiuYwVgYkN4Se0ydXn2KzEJy4Yv8w2XwlTBqDdM,3027
319
- maxframe/serialization/core.pxd,sha256=51XCBozW9j_E0sBgyYkHf5xNfqCMJb36Fwm_Pxv_rZs,1303
320
- maxframe/serialization/pandas.py,sha256=D4_H4KjAl8DRQtODh9VBP94yB8ce1cYQUKrzXtn10KE,7147
321
- maxframe/serialization/core.pyi,sha256=tU0i8Xtb5pW4NjSxylhCY3h5pDZx4uRmBb8Juk1CDdE,1922
319
+ maxframe/serialization/exception.py,sha256=2Ubi2ld5XpduqAln26q0T67XLj-OpdwW1Z-nyC_wtCI,2993
320
+ maxframe/serialization/core.pxd,sha256=eBrSXiAPlX83Kbwml5IKJvqsIT03lPCeS6is9HplLiU,1501
321
+ maxframe/serialization/pandas.py,sha256=Fj0HZsnTyZqDW4pTiz2AX_Clly6NwjAbQoaMhYwCocs,7315
322
+ maxframe/serialization/core.pyi,sha256=a3CQxlJv5aYyy__VNKEq5XsaHE-n0MPKE_9CcWu8Q34,2142
322
323
  maxframe/serialization/arrow.py,sha256=VnGxNLU9UV_cUPTze43bEFCIbYLAOZnp2pAwVJbAIzQ,3418
323
324
  maxframe/serialization/__init__.py,sha256=9eSnoDww1uw2DAXEBBTB2atJQHzd-38XVxrCkoaypxA,921
324
325
  maxframe/serialization/maxframe_objects.py,sha256=R9WEjbHL0Kr56OGkYDU9fcGi7gII6fGlXhi6IyihTsM,1365
325
326
  maxframe/serialization/numpy.py,sha256=8_GSo45l_eNoMn4NAGEb9NLXY_9i4tf9KK4EzG0mKpA,3213
326
327
  maxframe/serialization/scipy.py,sha256=hP0fAW0di9UgJrGtANB2S8hLDbFBtR8p5NDqAMt5rDI,2427
327
- maxframe/serialization/core.cpython-38-darwin.so,sha256=p6R_fXSjTLsyxIlgRaX9ZGqPcwrwr_6radXPBl-l-00,1125520
328
- maxframe/serialization/core.pyx,sha256=AATN47RdBTq2zg7--3xX2VHyAZSvoAuYRt7B7gEgKPE,33984
328
+ maxframe/serialization/core.cpython-38-darwin.so,sha256=x3rHZETjwWFturx2pSiNdgIRZ2q_-ATjrwFwSgZH5l4,1159840
329
+ maxframe/serialization/core.pyx,sha256=ZLVh7W7LgUb4KPb7rtuezRL6sQC4GNb3hLndAeSbiyU,35198
329
330
  maxframe/serialization/tests/test_serial.py,sha256=Wj_I6CBQMaOtE8WtqdUaBoU8FhBOihht6SfeHOJV-zU,12511
330
331
  maxframe/serialization/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
331
332
  maxframe/serialization/serializables/field.py,sha256=atVgX-9rsVG1fTev7vjQArVwIEaCRjXoSEjpQ3mh6bA,16015
332
333
  maxframe/serialization/serializables/__init__.py,sha256=_wyFZF5QzSP32wSXlXHEPl98DN658I66WamP8XPJy0c,1351
333
- maxframe/serialization/serializables/core.py,sha256=xlqVUlBK3aLTavHLWHg4JXUTaBGzSuM7t-XHahB8et4,8965
334
+ maxframe/serialization/serializables/core.py,sha256=4eZdmtrrz10aT6rVhEfCWWP0_slHFFpIkIXmRdZgcos,15602
334
335
  maxframe/serialization/serializables/field_type.py,sha256=Feh09hu8XyaxS5MaJ4za_pcvqJVuMkOeGxwQ9OuJw6I,14865
335
336
  maxframe/serialization/serializables/tests/test_field_type.py,sha256=T3ebXbUkKveC9Pq1nIl85e4eYascFeJ52d0REHbz5jo,4381
336
337
  maxframe/serialization/serializables/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
337
- maxframe/serialization/serializables/tests/test_serializable.py,sha256=nwdN7B2xnI_Bh-s90TyjPvyFFVWOE9JVBqm4bdwYZ6o,8243
338
- maxframe/odpsio/tableio.py,sha256=TiXZViZMqWq_RaSCCcw8EJuj7ymsKe7chIkUthrnS7I,10148
339
- maxframe/odpsio/arrow.py,sha256=5GyAOaQLY_UeJS1CL98zNQpLMw5OfPrcI_YHP-G5Bas,3793
340
- maxframe/odpsio/__init__.py,sha256=HcxZsE4hRwbhtE-ZXhDWZMmQlv-2dOTvQq2NajhGEo4,799
338
+ maxframe/serialization/serializables/tests/test_serializable.py,sha256=P6BCYvm-0HxlEHruyw-SIdVBywxQw16JUMws_lvqTk0,9867
339
+ maxframe/odpsio/tableio.py,sha256=NgMkE4TD99ZP00OYU7oH-o90rLEHOeFjESEGcyCtblY,23835
340
+ maxframe/odpsio/arrow.py,sha256=6MLSoVy1m5ggUl770DiLo1xlYnedxEHln2YgXiXElt0,3922
341
+ maxframe/odpsio/__init__.py,sha256=rYsf3Nwu_o0hUVUyZ0UFsIiRoyYkdkyPSiTi8k3f_Rs,812
341
342
  maxframe/odpsio/volumeio.py,sha256=b2SQqusgrtkJJ6uMjnFv5s56XjchF8F4lLTTSHynRMc,3743
342
- maxframe/odpsio/schema.py,sha256=aXvK_1BSwttuUyROyIa_HNHohLZBp7LrW9VXzHPGXyY,12115
343
- maxframe/odpsio/tests/test_tableio.py,sha256=5nKq8I8Pzrfl89BjIIGyrvqPRiXdejTcYCtd-R2vTAo,4653
343
+ maxframe/odpsio/schema.py,sha256=qOUL-uPh9NXcXHYLlWesKOUsMiuP15vknh7je-Leaq4,12313
344
+ maxframe/odpsio/tests/test_tableio.py,sha256=0qvANpbSn5adem9oyX-6pdTHPxMcBzoVKJrKcJRhxWE,5603
344
345
  maxframe/odpsio/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
345
- maxframe/odpsio/tests/test_schema.py,sha256=XTixGKHOWiprp5PZVOo2q9h4-HAUPL8vTUmoeXQDIiM,11958
346
+ maxframe/odpsio/tests/test_schema.py,sha256=BDQ0Bc4EV4PBclK1X75k0PRsTYKJ5nsfaRXJrEXuC4M,11965
346
347
  maxframe/odpsio/tests/test_arrow.py,sha256=SQ9EmI9_VOOC8u6Rg6nh3IPC2fPbLvJ9HwtpMNDRhL8,3106
347
348
  maxframe/odpsio/tests/test_volumeio.py,sha256=UEqFANuPKyFtlIh2JNi-LoixH52bxsgHdxu3himnEvs,3022
348
- maxframe/tests/test_utils.py,sha256=xaAoURr5NOJUTY0XVa2H8qOStcEH5UQSXItkatHFxFE,11977
349
- maxframe/tests/test_protocol.py,sha256=t11yxh4_gWxxCuk09zo3pn9Nn96DBBQTBt12ewKDwLQ,5187
349
+ maxframe/tests/test_utils.py,sha256=imfe7sN1_4EjWuT4qMYMwjOjgL0t5oewyhebBGPDBhY,11504
350
+ maxframe/tests/test_protocol.py,sha256=9DWr3z1AI2DUMnLyak91PKSfV_ILkOtwAZPCmM42kcg,6103
350
351
  maxframe/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
351
- maxframe/tests/utils.py,sha256=wJtSFXt3BD4i5zdO4JBQk_kNAxrtyGLro0jodCA4xuY,4568
352
+ maxframe/tests/utils.py,sha256=c3A_4pU7OO5OTfKorc7uOks3ppL1NB0jGupsiDi7b9s,4884
352
353
  maxframe/tests/test_codegen.py,sha256=GMrnpSb2eyB_nmuv8-_p47Kw877ElKS3BP52SpqZNIQ,2208
353
- maxframe/lib/wrapped_pickle.py,sha256=xJa0wI-GsBZFKQpVnlh_hZBlQ2u1D8VO2aBIW7VOdP4,3810
354
+ maxframe/lib/wrapped_pickle.py,sha256=HJCb8ERK6clUVgPe529vduMmbMVqBlrQ3W8mH3tYcaE,3836
354
355
  maxframe/lib/version.py,sha256=yQ6HkDOvU9X1rpI49auh-qku2g7gIiztgEH6v1urOrk,18321
355
356
  maxframe/lib/compression.py,sha256=k9DSrl_dNBsn5azLjBdL5B4WZ6eNvmCrdMbcF1G7JSc,1442
356
357
  maxframe/lib/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
357
- maxframe/lib/mmh3.cpython-38-darwin.so,sha256=7gBnbxH-0CgZrcPSn3ptsa4cg5HKfpra8a9f7Pj7MtA,119784
358
+ maxframe/lib/mmh3.cpython-38-darwin.so,sha256=BxdUhpSIX7OsnLb0_oP12O7DQU5fQCpCETkz4sinttQ,119784
359
+ maxframe/lib/mmh3.pyi,sha256=AOp_XqbA5-NwepeeBeG0OFJj5tjEAFLzcViyRNZ0eVI,1494
358
360
  maxframe/lib/functools_compat.py,sha256=PMSkct9GIbzq-aBwTnggrOLNfLh4xQnYTIFMPblzCUA,2616
359
361
  maxframe/lib/mmh3_src/mmh3module.cpp,sha256=9J9eA42eKWTl546fvfQPNuIM3B2jpWSADpgIw3tr2jg,11604
360
362
  maxframe/lib/mmh3_src/MurmurHash3.h,sha256=lg5uXUFyMBge2BWRn0FgrqaCFCMfDWoTXD4PQtjHrMA,1263
@@ -402,11 +404,11 @@ maxframe/lib/tblib/__init__.py,sha256=c4aVldbxJdS-bFsSDcmDQy_mW0qAcMrb4pHS2tjYhY
402
404
  maxframe/lib/tblib/cpython.py,sha256=FQ0f6WTQyQHoMRhgPqrA0y0Ygxlbj5IC53guxA4h9Cw,2418
403
405
  maxframe/lib/tblib/decorators.py,sha256=bcllK3kVuPnj6SNZGmlJGxTK0ovdt7TJDXrhA4UE5sQ,1063
404
406
  maxframe/tensor/array_utils.py,sha256=259vG4SjyhiheARCZeEnfJdZjoojyrELn41oRcyAELs,4943
405
- maxframe/tensor/__init__.py,sha256=BJgqcCnG0jgPBafI4Aa01gHL4nagu6l7kmlry7u8Zm8,3519
407
+ maxframe/tensor/__init__.py,sha256=WL91OOxt5qnPWMrvOmFdak1Gfoi0i8dSz7Cid_DxdEs,4302
406
408
  maxframe/tensor/core.py,sha256=Ojxaf5b8sJ6ZZGezyFHQJ5XsSpUrBOnZgFeUQgpVJpI,21914
407
409
  maxframe/tensor/utils.py,sha256=bwVN0iuVic1tpFai6Hk-1tQLqckQ2IYS7yZKMTcOU1I,22914
408
410
  maxframe/tensor/operators.py,sha256=iGkDIRz152gXrPb5JbqOvXngpq3QaCg-aNO4gHZPLN0,3461
409
- maxframe/tensor/statistics/quantile.py,sha256=UFzTmBwgNL7k_QOJ84qPfycQrW8MyOa1gcp-uFsylIY,9484
411
+ maxframe/tensor/statistics/quantile.py,sha256=GYs4dlBwvUTu4-PZ9PnM4JTjzpQkS_8oFcOT85or404,9467
410
412
  maxframe/tensor/statistics/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
411
413
  maxframe/tensor/statistics/percentile.py,sha256=U7ssKDJbBVp6i1n1EP_qJ2HomIQJwt73asGrXire3ww,6047
412
414
  maxframe/tensor/reshape/reshape.py,sha256=wufzBHgqVpmNPNmgr7lCuGbMkghfOUV1q4t1tH2USJg,6453
@@ -442,7 +444,7 @@ maxframe/tensor/reduction/max.py,sha256=Z6TQSwaDcOmSstjKjntqKfinvF0XWNTGYDvvV-AI
442
444
  maxframe/tensor/reduction/allclose.py,sha256=8C9E01aUZL-rGjlx_S1zN504peV_7vjjQA3DZSPElOI,2942
443
445
  maxframe/tensor/reduction/nanmin.py,sha256=hq3TE7pM9HGakNEOIE9QPHG2O8soa2uPBrVsVHYsYyw,3947
444
446
  maxframe/tensor/reduction/nanvar.py,sha256=HmF0rOtjKFC-Rb0RubU5r5eDnf1HDf6W7knz0OxTOTc,5418
445
- maxframe/tensor/reduction/count_nonzero.py,sha256=Q1Sf4LqS0WNs3sCdwzHaIpJ5ilm5Jvnm-BXcPKSm98U,2725
447
+ maxframe/tensor/reduction/count_nonzero.py,sha256=3lzihwV17qw0hPyI7k-iq7i-L3ToMMRX5MgoRvlONLI,2721
446
448
  maxframe/tensor/reduction/nanmean.py,sha256=Ar_BbvsM600v3NkJIPUNsHo5Fv2S_INwOOEyRgpnc3A,3944
447
449
  maxframe/tensor/reduction/nancumsum.py,sha256=r47LTZ65-m6u1vr-zoxKw50Q3wOg2gwWy3ewHtV1jRg,3283
448
450
  maxframe/tensor/reduction/nansum.py,sha256=2x-RMKHxN9ikE8tm455wpKtYT1i-lKtuE03mKQopzA0,4066
@@ -568,7 +570,7 @@ maxframe/tensor/arithmetic/sin.py,sha256=Ux8mQS-pb3F7PCD_35Ghl7p2e2yF2jiS_1WC9zi
568
570
  maxframe/tensor/arithmetic/reciprocal.py,sha256=q3TKbF209Kbv7HD0hM9AF7xlQ9zXHrpHaFc9dHFuplE,2375
569
571
  maxframe/tensor/arithmetic/bitxor.py,sha256=l1bRVnzHSa7N7-nd2MzDxF33guNoml8mPB9t9_0QpMc,2908
570
572
  maxframe/tensor/arithmetic/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
571
- maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=dzFf3ijSeVKOSiP1iI_pwxJUoVuY9r6T8O87pbVrLmk,10989
573
+ maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=_zCcx-fzGoKjzkv90bkz3zzOs3u2afvKVotCWF-xCZU,10995
572
574
  maxframe/tensor/indexing/choose.py,sha256=TNsRP_1zoMnqfJyqk_RgPtRPFCisEXq5CMh3FUmPZ-8,7584
573
575
  maxframe/tensor/indexing/nonzero.py,sha256=JN5TyPzS1LIIjIaieXsDkffCjuq-CPBUDG3qMvNsIWI,3646
574
576
  maxframe/tensor/indexing/slice.py,sha256=VbalHoaXUGulPjskcQ4PoiZQhB2q3P1R8MrGKY2MqGw,1022
@@ -634,12 +636,12 @@ maxframe/tensor/random/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbUR
634
636
  maxframe/tensor/random/tests/test_random.py,sha256=2hGaik9A783PFuuxIrhCDZ2O-SYKwUh98LKPwf1psLs,4275
635
637
  maxframe/tensor/base/astype.py,sha256=zeLfyWkuc1LxMIiIO6ghZ_enR7IPgq0Hy4O18h8JQPk,4394
636
638
  maxframe/tensor/base/where.py,sha256=fMGBfppo4QToHX-B3rtTorstz83m8uWWhOQj6Qbu34U,4000
637
- maxframe/tensor/base/unique.py,sha256=MFJMBZAGHLnyGL5RGClCzwVKeSb0v0l0hDJ2zgXuSTQ,6742
639
+ maxframe/tensor/base/unique.py,sha256=EO7EYn0mHr9aZ7hVZxwiKNSPwbXvrpDWRWP5PksfgxY,6721
638
640
  maxframe/tensor/base/__init__.py,sha256=FMnuIAaGUObPZpXBnN-9eTSmmdq0Cdb-VI_JNHKVy3Q,1079
639
641
  maxframe/tensor/base/transpose.py,sha256=yDfr1vD6doNlsuKuU94daE0IgIwGMuyBfXhKauQ1UaM,3414
640
642
  maxframe/tensor/base/ravel.py,sha256=pJkez1NHoLqVMBPm5aA8uMNFeWURTAJV_iU98Vqr-50,3173
641
643
  maxframe/tensor/base/broadcast_to.py,sha256=p0hi128OWlj3lXmacvxMhZOjUCq8fiA3yjy9nESZXgE,2686
642
- maxframe/tensor/base/atleast_1d.py,sha256=rpzzmdCgdz-IrL5WtFd31BPHaCS0V_wLuYJHjVo-vnE,1918
644
+ maxframe/tensor/base/atleast_1d.py,sha256=rCw_Ik6Y4isiMuC2Kvs0F7nDdSvx9RPahoq_v6D66Jo,1918
643
645
  maxframe/tensor/base/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
644
646
  maxframe/tensor/base/tests/test_base.py,sha256=syedkA0jMjevYouCL3vCMuWpJ-3hfOc28wKXqF_MMno,2843
645
647
  maxframe/remote/run_script.py,sha256=Z1j662AwDF9sr-z1xnPTlrfSTixi2RBZjccXEilfpGA,3556
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (71.1.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp38-cp38-macosx_10_9_universal2
5
5
 
@@ -13,5 +13,4 @@
13
13
  # limitations under the License.
14
14
 
15
15
  from .clients.framedriver import FrameDriverClient
16
- from .clients.spe import SPEClient
17
16
  from .session import MaxFrameRestSession