py2ls 0.1.10.12__py3-none-any.whl → 0.2.7.10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of py2ls might be problematic. Click here for more details.
- py2ls/.DS_Store +0 -0
- py2ls/.git/.DS_Store +0 -0
- py2ls/.git/index +0 -0
- py2ls/.git/logs/refs/remotes/origin/HEAD +1 -0
- py2ls/.git/objects/.DS_Store +0 -0
- py2ls/.git/refs/.DS_Store +0 -0
- py2ls/ImageLoader.py +621 -0
- py2ls/__init__.py +7 -5
- py2ls/apptainer2ls.py +3940 -0
- py2ls/batman.py +164 -42
- py2ls/bio.py +2595 -0
- py2ls/cell_image_clf.py +1632 -0
- py2ls/container2ls.py +4635 -0
- py2ls/corr.py +475 -0
- py2ls/data/.DS_Store +0 -0
- py2ls/data/email/email_html_template.html +88 -0
- py2ls/data/hyper_param_autogluon_zeroshot2024.json +2383 -0
- py2ls/data/hyper_param_tabrepo_2024.py +1753 -0
- py2ls/data/mygenes_fields_241022.txt +355 -0
- py2ls/data/re_common_pattern.json +173 -0
- py2ls/data/sns_info.json +74 -0
- py2ls/data/styles/.DS_Store +0 -0
- py2ls/data/styles/example/.DS_Store +0 -0
- py2ls/data/styles/stylelib/.DS_Store +0 -0
- py2ls/data/styles/stylelib/grid.mplstyle +15 -0
- py2ls/data/styles/stylelib/high-contrast.mplstyle +6 -0
- py2ls/data/styles/stylelib/high-vis.mplstyle +4 -0
- py2ls/data/styles/stylelib/ieee.mplstyle +15 -0
- py2ls/data/styles/stylelib/light.mplstyl +6 -0
- py2ls/data/styles/stylelib/muted.mplstyle +6 -0
- py2ls/data/styles/stylelib/nature-reviews-latex.mplstyle +616 -0
- py2ls/data/styles/stylelib/nature-reviews.mplstyle +616 -0
- py2ls/data/styles/stylelib/nature.mplstyle +31 -0
- py2ls/data/styles/stylelib/no-latex.mplstyle +10 -0
- py2ls/data/styles/stylelib/notebook.mplstyle +36 -0
- py2ls/data/styles/stylelib/paper.mplstyle +290 -0
- py2ls/data/styles/stylelib/paper2.mplstyle +305 -0
- py2ls/data/styles/stylelib/retro.mplstyle +4 -0
- py2ls/data/styles/stylelib/sans.mplstyle +10 -0
- py2ls/data/styles/stylelib/scatter.mplstyle +7 -0
- py2ls/data/styles/stylelib/science.mplstyle +48 -0
- py2ls/data/styles/stylelib/std-colors.mplstyle +4 -0
- py2ls/data/styles/stylelib/vibrant.mplstyle +6 -0
- py2ls/data/tiles.csv +146 -0
- py2ls/data/usages_pd.json +1417 -0
- py2ls/data/usages_sns.json +31 -0
- py2ls/docker2ls.py +5446 -0
- py2ls/ec2ls.py +61 -0
- py2ls/fetch_update.py +145 -0
- py2ls/ich2ls.py +1955 -296
- py2ls/im2.py +8242 -0
- py2ls/image_ml2ls.py +2100 -0
- py2ls/ips.py +33909 -3418
- py2ls/ml2ls.py +7700 -0
- py2ls/mol.py +289 -0
- py2ls/mount2ls.py +1307 -0
- py2ls/netfinder.py +873 -351
- py2ls/nl2ls.py +283 -0
- py2ls/ocr.py +1581 -458
- py2ls/plot.py +10394 -314
- py2ls/rna2ls.py +311 -0
- py2ls/ssh2ls.md +456 -0
- py2ls/ssh2ls.py +5933 -0
- py2ls/ssh2ls_v01.py +2204 -0
- py2ls/stats.py +66 -172
- py2ls/temp20251124.py +509 -0
- py2ls/translator.py +2 -0
- py2ls/utils/decorators.py +3564 -0
- py2ls/utils_bio.py +3453 -0
- {py2ls-0.1.10.12.dist-info → py2ls-0.2.7.10.dist-info}/METADATA +113 -224
- {py2ls-0.1.10.12.dist-info → py2ls-0.2.7.10.dist-info}/RECORD +72 -16
- {py2ls-0.1.10.12.dist-info → py2ls-0.2.7.10.dist-info}/WHEEL +0 -0
|
@@ -1,244 +1,133 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: py2ls
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.7.10
|
|
4
4
|
Summary: py(thon)2(too)ls
|
|
5
5
|
Author: Jianfeng
|
|
6
6
|
Author-email: Jianfeng.Liu0413@gmail.com
|
|
7
|
-
Requires-Python: >=3.
|
|
7
|
+
Requires-Python: >=3.5,<4.0
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.5
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
9
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
10
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
11
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
-
Provides-Extra:
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
Requires-Dist:
|
|
18
|
-
Requires-Dist:
|
|
19
|
-
Requires-Dist:
|
|
20
|
-
Requires-Dist:
|
|
21
|
-
Requires-Dist:
|
|
22
|
-
Requires-Dist:
|
|
23
|
-
Requires-Dist:
|
|
24
|
-
Requires-Dist:
|
|
25
|
-
Requires-Dist:
|
|
26
|
-
Requires-Dist:
|
|
27
|
-
Requires-Dist:
|
|
28
|
-
Requires-Dist:
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist:
|
|
32
|
-
Requires-Dist:
|
|
33
|
-
Requires-Dist:
|
|
34
|
-
Requires-Dist:
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
Requires-Dist:
|
|
37
|
-
Requires-Dist:
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
Requires-Dist:
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist:
|
|
42
|
-
Requires-Dist:
|
|
43
|
-
Requires-Dist:
|
|
44
|
-
Requires-Dist:
|
|
45
|
-
Requires-Dist:
|
|
46
|
-
Requires-Dist:
|
|
47
|
-
Requires-Dist:
|
|
48
|
-
Requires-Dist:
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
Requires-Dist:
|
|
51
|
-
Requires-Dist:
|
|
52
|
-
Requires-Dist:
|
|
53
|
-
Requires-Dist:
|
|
54
|
-
Requires-Dist:
|
|
55
|
-
Requires-Dist:
|
|
56
|
-
Requires-Dist:
|
|
57
|
-
Requires-Dist:
|
|
58
|
-
Requires-Dist:
|
|
59
|
-
Requires-Dist:
|
|
60
|
-
Requires-Dist:
|
|
61
|
-
Requires-Dist:
|
|
62
|
-
Requires-Dist:
|
|
63
|
-
Requires-Dist:
|
|
64
|
-
Requires-Dist:
|
|
65
|
-
Requires-Dist:
|
|
66
|
-
Requires-Dist:
|
|
67
|
-
Requires-Dist:
|
|
68
|
-
Requires-Dist:
|
|
69
|
-
Requires-Dist:
|
|
70
|
-
Requires-Dist:
|
|
71
|
-
Requires-Dist:
|
|
72
|
-
Requires-Dist:
|
|
73
|
-
Requires-Dist:
|
|
74
|
-
Requires-Dist:
|
|
75
|
-
Requires-Dist:
|
|
76
|
-
Requires-Dist:
|
|
77
|
-
Requires-Dist:
|
|
78
|
-
Requires-Dist:
|
|
79
|
-
Requires-Dist:
|
|
80
|
-
Requires-Dist:
|
|
81
|
-
Requires-Dist:
|
|
82
|
-
Requires-Dist:
|
|
83
|
-
Requires-Dist:
|
|
84
|
-
Requires-Dist:
|
|
85
|
-
Requires-Dist:
|
|
86
|
-
Requires-Dist:
|
|
87
|
-
Requires-Dist:
|
|
88
|
-
Requires-Dist:
|
|
89
|
-
Requires-Dist:
|
|
90
|
-
Requires-Dist:
|
|
91
|
-
Requires-Dist:
|
|
92
|
-
Requires-Dist:
|
|
93
|
-
Requires-Dist:
|
|
94
|
-
Requires-Dist:
|
|
95
|
-
Requires-Dist:
|
|
96
|
-
Requires-Dist:
|
|
97
|
-
Requires-Dist:
|
|
98
|
-
Requires-Dist:
|
|
99
|
-
Requires-Dist:
|
|
100
|
-
Requires-Dist:
|
|
101
|
-
Requires-Dist:
|
|
102
|
-
Requires-Dist:
|
|
103
|
-
Requires-Dist:
|
|
104
|
-
Requires-Dist:
|
|
105
|
-
Requires-Dist:
|
|
106
|
-
Requires-Dist:
|
|
107
|
-
Requires-Dist:
|
|
108
|
-
Requires-Dist:
|
|
109
|
-
Requires-Dist:
|
|
110
|
-
Requires-Dist:
|
|
111
|
-
Requires-Dist:
|
|
112
|
-
Requires-Dist: mistune (>=3.0.2)
|
|
113
|
-
Requires-Dist: mkdocs (>=1.6.0)
|
|
114
|
-
Requires-Dist: mkdocs-get-deps (>=0.2.0)
|
|
115
|
-
Requires-Dist: mne (>=1.7.1)
|
|
116
|
-
Requires-Dist: more-itertools (>=10.3.0)
|
|
117
|
-
Requires-Dist: mpmath (>=1.3.0)
|
|
118
|
-
Requires-Dist: msgpack (>=1.0.8)
|
|
119
|
-
Requires-Dist: mtscomp (>=1.0.2)
|
|
120
|
-
Requires-Dist: nbclient (>=0.10.0)
|
|
121
|
-
Requires-Dist: nbconvert (>=7.16.4)
|
|
122
|
-
Requires-Dist: nbformat (>=5.10.4)
|
|
123
|
-
Requires-Dist: neo (>=0.13.1)
|
|
124
|
-
Requires-Dist: nest-asyncio (>=1.6.0)
|
|
125
|
-
Requires-Dist: networkx (>=3.3)
|
|
126
|
-
Requires-Dist: nltk (>=3.8.1)
|
|
127
|
-
Requires-Dist: numba (>=0.59.1)
|
|
128
|
-
Requires-Dist: numcodecs (>=0.13.0)
|
|
129
|
-
Requires-Dist: numerizer (>=0.2.3)
|
|
130
|
-
Requires-Dist: numpy (>=1.26.4)
|
|
131
|
-
Requires-Dist: onnxruntime (>=1.18.1)
|
|
132
|
-
Requires-Dist: opencv-contrib-python (>=4.10.0.84)
|
|
133
|
-
Requires-Dist: opencv-python (>=4.10.0.84)
|
|
134
|
-
Requires-Dist: opencv-python-headless (>=4.10.0.84)
|
|
135
|
-
Requires-Dist: outcome (>=1.3.0.post0)
|
|
136
|
-
Requires-Dist: packaging (>=24.1)
|
|
137
|
-
Requires-Dist: pandas (>=2.2.2)
|
|
138
|
-
Requires-Dist: pandas-flavor (>=0.6.0)
|
|
139
|
-
Requires-Dist: pandocfilters (>=1.5.1)
|
|
140
|
-
Requires-Dist: parso (>=0.8.4)
|
|
141
|
-
Requires-Dist: partd (>=1.4.2)
|
|
142
|
-
Requires-Dist: pathspec (>=0.12.1)
|
|
143
|
-
Requires-Dist: patsy (>=0.5.6)
|
|
144
|
-
Requires-Dist: pdf2image (>=1.17.0)
|
|
145
|
-
Requires-Dist: pdf2img (>=0.1.2)
|
|
146
|
-
Requires-Dist: pexpect (>=4.9.0)
|
|
147
|
-
Requires-Dist: phylib (>=2.6.0)
|
|
148
|
-
Requires-Dist: pikepdf (>=9.1.0)
|
|
149
|
-
Requires-Dist: pillow (>=10.4.0)
|
|
150
|
-
Requires-Dist: pingouin (>=0.5.4)
|
|
151
|
-
Requires-Dist: pkginfo (>=1.11.1)
|
|
152
|
-
Requires-Dist: platformdirs (>=3.11.0)
|
|
153
|
-
Requires-Dist: plotly (>=5.23.0)
|
|
154
|
-
Requires-Dist: pluggy (>=1.5.0)
|
|
155
|
-
Requires-Dist: pooch (>=1.8.2)
|
|
156
|
-
Requires-Dist: probeinterface (>=0.2.23)
|
|
157
|
-
Requires-Dist: prompt_toolkit (>=3.0.47)
|
|
158
|
-
Requires-Dist: protobuf (>=5.27.2)
|
|
159
|
-
Requires-Dist: psutil (>=5.9.8)
|
|
160
|
-
Requires-Dist: ptyprocess (>=0.7.0)
|
|
161
|
-
Requires-Dist: pure_eval (>=0.2.3)
|
|
162
|
-
Requires-Dist: pycodestyle (>=2.12.0)
|
|
163
|
-
Requires-Dist: pycparser (>=2.22)
|
|
164
|
-
Requires-Dist: pyflakes (>=3.2.0)
|
|
165
|
-
Requires-Dist: pyparsing (>=3.1.2)
|
|
166
|
-
Requires-Dist: pyproject_hooks (>=1.1.0)
|
|
167
|
-
Requires-Dist: pyrsistent (>=0.20.0)
|
|
168
|
-
Requires-Dist: pytest (>=8.3.1)
|
|
169
|
-
Requires-Dist: pytest-cov (>=5.0.0)
|
|
170
|
-
Requires-Dist: pytest-qt (>=4.4.0)
|
|
171
|
-
Requires-Dist: python-box (>=7.2.0)
|
|
172
|
-
Requires-Dist: python-dateutil (>=2.9.0.post0)
|
|
173
|
-
Requires-Dist: python-docx (>=1.1.2)
|
|
174
|
-
Requires-Dist: python-dotenv (>=1.0.1)
|
|
175
|
-
Requires-Dist: python-pptx (>=0.6.23)
|
|
176
|
-
Requires-Dist: pytz (>=2024.1)
|
|
177
|
-
Requires-Dist: pyyaml_env_tag (>=0.1)
|
|
178
|
-
Requires-Dist: pyzmq (>=26.0.3)
|
|
179
|
-
Requires-Dist: qtconsole (>=5.5.2)
|
|
180
|
-
Requires-Dist: quantities (>=0.15.0)
|
|
181
|
-
Requires-Dist: rapidfuzz (>=3.9.5)
|
|
182
|
-
Requires-Dist: referencing (>=0.35.1)
|
|
183
|
-
Requires-Dist: regex (>=2024.5.15)
|
|
184
|
-
Requires-Dist: rembg (>=2.0.57)
|
|
185
|
-
Requires-Dist: requests (>=2.32.3)
|
|
186
|
-
Requires-Dist: requests-toolbelt (>=1.0.0)
|
|
187
|
-
Requires-Dist: responses (>=0.25.3)
|
|
188
|
-
Requires-Dist: rfc3986 (>=1.5.0)
|
|
189
|
-
Requires-Dist: rpds-py (>=0.18.1)
|
|
190
|
-
Requires-Dist: scikit-image (>=0.23.2)
|
|
191
|
-
Requires-Dist: scikit-learn (>=1.5.1)
|
|
192
|
-
Requires-Dist: scipy (>=1.14.0)
|
|
193
|
-
Requires-Dist: seaborn (>=0.13.2)
|
|
194
|
-
Requires-Dist: selenium (>=4.23.1)
|
|
195
|
-
Requires-Dist: setuptools (>=70.3.0)
|
|
196
|
-
Requires-Dist: shellingham (>=1.5.4)
|
|
197
|
-
Requires-Dist: six (>=1.16.0)
|
|
198
|
-
Requires-Dist: sniffio (>=1.3.1)
|
|
199
|
-
Requires-Dist: sortedcontainers (>=2.4.0)
|
|
200
|
-
Requires-Dist: soupsieve (>=2.5)
|
|
201
|
-
Requires-Dist: stack-data (>=0.6.3)
|
|
202
|
-
Requires-Dist: statsmodels (>=0.14.2)
|
|
203
|
-
Requires-Dist: stem (>=1.8.2)
|
|
204
|
-
Requires-Dist: sympy (>=1.13.1)
|
|
205
|
-
Requires-Dist: tabulate (>=0.9.0)
|
|
206
|
-
Requires-Dist: tenacity (>=8.5.0)
|
|
207
|
-
Requires-Dist: threadpoolctl (>=3.5.0)
|
|
208
|
-
Requires-Dist: tifffile (>=2024.7.24)
|
|
209
|
-
Requires-Dist: tinycss2 (>=1.3.0)
|
|
210
|
-
Requires-Dist: tomlkit (>=0.13.0)
|
|
211
|
-
Requires-Dist: toolz (>=0.12.1)
|
|
212
|
-
Requires-Dist: torch (>=2.4.0)
|
|
213
|
-
Requires-Dist: tornado (>=6.4.1)
|
|
214
|
-
Requires-Dist: tqdm (>=4.66.4)
|
|
215
|
-
Requires-Dist: traitlets (>=5.14.3)
|
|
216
|
-
Requires-Dist: translate (>=3.6.1)
|
|
217
|
-
Requires-Dist: trio (>=0.25.1)
|
|
218
|
-
Requires-Dist: trio-websocket (>=0.11.1)
|
|
219
|
-
Requires-Dist: trove-classifiers (>=2024.7.2)
|
|
220
|
-
Requires-Dist: typing_extensions (>=4.12.2)
|
|
221
|
-
Requires-Dist: tzdata (>=2024.1)
|
|
222
|
-
Requires-Dist: urllib3 (>=2.2.2)
|
|
223
|
-
Requires-Dist: virtualenv (>=20.26.3)
|
|
224
|
-
Requires-Dist: watchdog (>=4.0.1)
|
|
225
|
-
Requires-Dist: wcwidth (>=0.2.13)
|
|
226
|
-
Requires-Dist: webdriver-manager (>=4.0.1)
|
|
227
|
-
Requires-Dist: webencodings (>=0.5.1)
|
|
228
|
-
Requires-Dist: websocket-client (>=1.8.0)
|
|
229
|
-
Requires-Dist: wrapt (>=1.16.0)
|
|
230
|
-
Requires-Dist: wsproto (>=1.2.0)
|
|
231
|
-
Requires-Dist: xarray (>=2024.6.0)
|
|
232
|
-
Requires-Dist: zarr (>=2.17.2)
|
|
17
|
+
Provides-Extra: full
|
|
18
|
+
Provides-Extra: ml
|
|
19
|
+
Provides-Extra: neuroscience
|
|
20
|
+
Provides-Extra: slim
|
|
21
|
+
Provides-Extra: superslim
|
|
22
|
+
Requires-Dist: GEOparse (>=2.0.4) ; extra == "full"
|
|
23
|
+
Requires-Dist: Pillow (>=11.2.1) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
24
|
+
Requires-Dist: PyYAML (>=6.0.1) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
25
|
+
Requires-Dist: SQLAlchemy (>=2.0.37) ; extra == "full"
|
|
26
|
+
Requires-Dist: adjustText (>=1.3.0) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
27
|
+
Requires-Dist: autogluon (>=1.2) ; extra == "full" or extra == "ml"
|
|
28
|
+
Requires-Dist: beautifulsoup4 (>=4.12.3) ; extra == "full" or extra == "slim"
|
|
29
|
+
Requires-Dist: catboost (>=1.2.8) ; extra == "full" or extra == "ml"
|
|
30
|
+
Requires-Dist: category_encoders (>=2.8.1) ; extra == "full"
|
|
31
|
+
Requires-Dist: chardet (>=3.0.4) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
32
|
+
Requires-Dist: cryptography (>=45.0.3) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
33
|
+
Requires-Dist: cycler (>=0.12.1) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
34
|
+
Requires-Dist: docx2pdf (>=0.1.8) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
35
|
+
Requires-Dist: fake-useragent (>=1.5.1) ; extra == "full" or extra == "slim"
|
|
36
|
+
Requires-Dist: folium (>=0.19.6) ; extra == "full"
|
|
37
|
+
Requires-Dist: fpdf (>=1.7.2) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
38
|
+
Requires-Dist: fuzzywuzzy (>=0.18.0) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
39
|
+
Requires-Dist: geopy (>=2.4.1) ; extra == "full"
|
|
40
|
+
Requires-Dist: gseapy (>=1.1.8) ; extra == "full"
|
|
41
|
+
Requires-Dist: gtts (>=2.5.4) ; extra == "full"
|
|
42
|
+
Requires-Dist: hdbscan (>=0.8.40) ; extra == "full"
|
|
43
|
+
Requires-Dist: imagecodecs (>=2025.3.30) ; extra == "ml"
|
|
44
|
+
Requires-Dist: img2pdf (>=0.5.1) ; extra == "full"
|
|
45
|
+
Requires-Dist: ipykernel (>=6.29.4) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
46
|
+
Requires-Dist: ipython (>=8.26.0) ; extra == "full" or extra == "slim"
|
|
47
|
+
Requires-Dist: langdetect (>=1.0.9) ; extra == "full"
|
|
48
|
+
Requires-Dist: lightgbm (>=4.6.0) ; extra == "full" or extra == "ml"
|
|
49
|
+
Requires-Dist: lxml (>=5.3.0) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
50
|
+
Requires-Dist: matplotlib (>=3.9.1) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
51
|
+
Requires-Dist: matplotlib-venn (>=1.1.2) ; extra == "full"
|
|
52
|
+
Requires-Dist: mne (>=1.6.1) ; extra == "neuroscience"
|
|
53
|
+
Requires-Dist: msoffcrypto-tool (>=5.4.2) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
54
|
+
Requires-Dist: neo (>=0.13.1) ; extra == "neuroscience"
|
|
55
|
+
Requires-Dist: networkx (>=3.3) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
56
|
+
Requires-Dist: nltk (>=3.8.1) ; extra == "full" or extra == "slim"
|
|
57
|
+
Requires-Dist: numerizer (>=0.2.3) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
58
|
+
Requires-Dist: numpy (>=1.26.4,<2.0.0) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
59
|
+
Requires-Dist: opencv-python-headless (>=4.10.0.84) ; extra == "full"
|
|
60
|
+
Requires-Dist: openlocationcode (>=1.0.1) ; extra == "full"
|
|
61
|
+
Requires-Dist: openpyxl (>=3.1.5) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
62
|
+
Requires-Dist: paddleocr (>=2.9.1,<3.0.0) ; extra == "full" or extra == "slim"
|
|
63
|
+
Requires-Dist: pandas (>=2.2.2) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
64
|
+
Requires-Dist: paramiko (>=3.4.1) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
65
|
+
Requires-Dist: pdf2image (>=1.17.0) ; extra == "full"
|
|
66
|
+
Requires-Dist: phonenumbers (>=8.13.51) ; extra == "full"
|
|
67
|
+
Requires-Dist: pingouin (>=0.5.4) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
68
|
+
Requires-Dist: pixels2svg (>=0.2.2) ; extra == "full"
|
|
69
|
+
Requires-Dist: premailer (>=3.10.0) ; extra == "full" or extra == "slim"
|
|
70
|
+
Requires-Dist: psutil (>=5.9.8) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
71
|
+
Requires-Dist: py-cpuinfo (>=9.0.0) ; extra == "superslim" or extra == "slim"
|
|
72
|
+
Requires-Dist: py7zr (>=0.22.0) ; extra == "full"
|
|
73
|
+
Requires-Dist: pyautogui (>=0.9.54) ; extra == "full"
|
|
74
|
+
Requires-Dist: pycryptodome (>=3.23.0) ; extra == "full"
|
|
75
|
+
Requires-Dist: pydeck (>=0.9.1) ; extra == "full"
|
|
76
|
+
Requires-Dist: pymupdf (>=1.26.1) ; extra == "full" or extra == "full" or extra == "superslim" or extra == "slim"
|
|
77
|
+
Requires-Dist: pypdf (>=5.6.1) ; extra == "full" or extra == "slim"
|
|
78
|
+
Requires-Dist: pyperclip (>=1.9.0) ; extra == "full"
|
|
79
|
+
Requires-Dist: pypinyin (>=0.54.0) ; extra == "full"
|
|
80
|
+
Requires-Dist: pytest (>=8.3.3) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
81
|
+
Requires-Dist: python-box (>=7.2.0) ; extra == "full" or extra == "slim"
|
|
82
|
+
Requires-Dist: python-dateutil (>=2.9.0.post0) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
83
|
+
Requires-Dist: python-docx (>=1.1.2) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
84
|
+
Requires-Dist: pytz (>=2024.1) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
85
|
+
Requires-Dist: pyvis (>=0.3.2) ; extra == "full"
|
|
86
|
+
Requires-Dist: qrcode (>=8.2) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
87
|
+
Requires-Dist: rarfile (>=4.2) ; extra == "full"
|
|
88
|
+
Requires-Dist: realesrgan (>=0.3.0) ; extra == "full"
|
|
89
|
+
Requires-Dist: regex (>=2024.5.15) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
90
|
+
Requires-Dist: rembg (>=2.0.57) ; extra == "full"
|
|
91
|
+
Requires-Dist: reportlab (>=4.4.2) ; extra == "full" or extra == "slim"
|
|
92
|
+
Requires-Dist: requests (>=2.32.3) ; extra == "full" or extra == "slim"
|
|
93
|
+
Requires-Dist: schedule (>=1.2.2) ; extra == "full"
|
|
94
|
+
Requires-Dist: scikit-image (>=0.23.2) ; extra == "full"
|
|
95
|
+
Requires-Dist: scikit-learn (>=1.5.1) ; extra == "full" or extra == "ml"
|
|
96
|
+
Requires-Dist: scipy (>=1.14.0) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
97
|
+
Requires-Dist: seaborn (>=0.13.2) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
98
|
+
Requires-Dist: selenium (>=4.23.1) ; extra == "full" or extra == "slim"
|
|
99
|
+
Requires-Dist: setuptools (>=72.1.0) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
100
|
+
Requires-Dist: skimpy (>=0.0.15) ; extra == "full"
|
|
101
|
+
Requires-Dist: skorch (>=1.0.0) ; extra == "full" or extra == "ml"
|
|
102
|
+
Requires-Dist: statsmodels (>=0.14.2) ; extra == "full"
|
|
103
|
+
Requires-Dist: streamlit (>=1.41.0) ; extra == "full"
|
|
104
|
+
Requires-Dist: streamlit-folium (>=0.25.0) ; extra == "full"
|
|
105
|
+
Requires-Dist: striprtf (>=0.0.29) ; extra == "full"
|
|
106
|
+
Requires-Dist: symspellpy (>=6.9.0) ; extra == "full"
|
|
107
|
+
Requires-Dist: tensorflow (>=2.19.0) ; extra == "full" or extra == "ml"
|
|
108
|
+
Requires-Dist: textblob (>=0.18.0.post0) ; extra == "full" or extra == "superslim" or extra == "slim"
|
|
109
|
+
Requires-Dist: tifffile (>=2024.12.12) ; extra == "ml"
|
|
110
|
+
Requires-Dist: torch (>=2.4.0) ; extra == "full" or extra == "ml"
|
|
111
|
+
Requires-Dist: tqdm (>=4.66.4) ; extra == "full" or extra == "slim"
|
|
112
|
+
Requires-Dist: umap (>=0.1.1) ; extra == "full"
|
|
113
|
+
Requires-Dist: validators (>=0.35.0) ; extra == "full"
|
|
114
|
+
Requires-Dist: venn (>=0.1.3) ; extra == "full"
|
|
115
|
+
Requires-Dist: webdriver-manager (>=4.0.1) ; extra == "full" or extra == "slim"
|
|
116
|
+
Requires-Dist: xgboost (>=3.0.2) ; extra == "full" or extra == "ml"
|
|
233
117
|
Description-Content-Type: text/markdown
|
|
234
118
|
|
|
235
119
|
# Install
|
|
236
120
|
|
|
237
121
|
```python
|
|
238
122
|
pip install py2ls
|
|
239
|
-
```
|
|
240
123
|
|
|
241
124
|
|
|
125
|
+
- Minimal version: pip install py2ls
|
|
126
|
+
- Light version: pip install py2ls[light]
|
|
127
|
+
- Full version: pip install py2ls[full]
|
|
128
|
+
- Or any combination like pip install py2ls[full,ml]
|
|
129
|
+
```
|
|
130
|
+
|
|
242
131
|
|
|
243
132
|
# ips
|
|
244
133
|
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
py2ls/.DS_Store,sha256=
|
|
1
|
+
py2ls/.DS_Store,sha256=LJNhKkg7uWBJVt0RZVfz2hftHSCZ1-MozyAeqEPkkKI,6148
|
|
2
|
+
py2ls/.git/.DS_Store,sha256=_QMqSMvFkiuSTudJbBnYTcETf3zOthZjrcI8LJ48tDA,6148
|
|
2
3
|
py2ls/.git/COMMIT_EDITMSG,sha256=AdtqRHle5Ej2EBNPJY79v-SB454v5UK4wuPCPFELiFQ,11
|
|
3
4
|
py2ls/.git/FETCH_HEAD,sha256=VM-2Jiw6iPaGu0ftg9xwq76OyNPWV0iT1nL0VWiL1zI,100
|
|
4
5
|
py2ls/.git/HEAD,sha256=KNJb-Cr0wOK3L1CVmyvrhZ4-YLljCl6MYD2tTdsrboA,21
|
|
@@ -17,12 +18,13 @@ py2ls/.git/hooks/pre-receive.sample,sha256=pMPSuce7P9jRRBwxvU7nGlldZrRPz0ndsxAlI
|
|
|
17
18
|
py2ls/.git/hooks/prepare-commit-msg.sample,sha256=6d3KpBif3dJe2X_Ix4nsp7bKFjkLI5KuMnbwyOGqRhk,1492
|
|
18
19
|
py2ls/.git/hooks/push-to-checkout.sample,sha256=pT0HQXmLKHxt16-mSu5HPzBeZdP0lGO7nXQI7DsSv18,2783
|
|
19
20
|
py2ls/.git/hooks/update.sample,sha256=jV8vqD4QPPCLV-qmdSHfkZT0XL28s32lKtWGCXoU0QY,3650
|
|
20
|
-
py2ls/.git/index,sha256=
|
|
21
|
+
py2ls/.git/index,sha256=ZEHQfFKC65lHhFQ6JcEIaCbi4d9RJ3BXYmf-ttdLOZA,4232
|
|
21
22
|
py2ls/.git/info/exclude,sha256=ZnH-g7egfIky7okWTR8nk7IxgFjri5jcXAbuClo7DsE,240
|
|
22
23
|
py2ls/.git/logs/HEAD,sha256=8ID7WuAe_TlO9g-ARxhIJYdgdL3u3m7-1qrOanaIUlA,3535
|
|
23
24
|
py2ls/.git/logs/refs/heads/main,sha256=8ID7WuAe_TlO9g-ARxhIJYdgdL3u3m7-1qrOanaIUlA,3535
|
|
24
|
-
py2ls/.git/logs/refs/remotes/origin/HEAD,sha256=
|
|
25
|
+
py2ls/.git/logs/refs/remotes/origin/HEAD,sha256=XROqkeNoDTQcnvmIJb-KjSXB-SpUTKbnzM8QljdSC6k,23718
|
|
25
26
|
py2ls/.git/logs/refs/remotes/origin/main,sha256=9ohHV9XT1dBowBZUVo52U9205_o513hmvCvtW9rS4Fk,3192
|
|
27
|
+
py2ls/.git/objects/.DS_Store,sha256=p_UeT5XAI5c6cGAz23lbqMNMljXKR5ddgXEXeYDk4nk,18436
|
|
26
28
|
py2ls/.git/objects/01/d5bd8065e6860c0bd23ff9fa57161806a099e1,sha256=hEQ8nqJnGsfFsuV5wc4cZas58rehXvT0v5ANx1zmMAY,584
|
|
27
29
|
py2ls/.git/objects/09/08da26de58c114225ad81f484b80bf5d351b34,sha256=NOyYvrJxATpK3aDdP1_stwkqOQRDwJn7DSy6isyKImE,925
|
|
28
30
|
py2ls/.git/objects/0b/409e1bc918277010f5679b402d1d1dda53e15c,sha256=y5S1XaGxJz1NXi-SPWjPC_NKIqqSbZv9oOg74MzBihY,156
|
|
@@ -164,22 +166,37 @@ py2ls/.git/objects/f7/c98ba5c2f903e603b1f5e63d49fbc8a43815cc,sha256=tYbi3A7irrIP
|
|
|
164
166
|
py2ls/.git/objects/f9/045a08e96eb76848fc4d68e3e3e687cca39a2d,sha256=u29Cwu3SL3HlagZIal5ueGZ3miqgZAtuDbtP8-fUVvE,141
|
|
165
167
|
py2ls/.git/objects/fa/147e6bb78a2e8db241d231295fd7f1ed061af8,sha256=G9pg5LXv7AdxnPIQsTm2AF3Un314dLRJQYwxmZem9rQ,574
|
|
166
168
|
py2ls/.git/objects/fc/292e793ecfd42240ac43be407023bd731fa9e7,sha256=hGIYoxKWNT3IPwk3DE4l3FLBbUYF-kXcHcx7KrH9uS0,1971
|
|
169
|
+
py2ls/.git/refs/.DS_Store,sha256=L7IgUX7Va5Ta5UX5gavNXI5FGYpYxZ4Ie-wpMJR31fk,6148
|
|
167
170
|
py2ls/.git/refs/heads/main,sha256=vaWoJWq2YOJm04yq8v-ImmaNjjqq-OEhS8SdTKUuKw8,41
|
|
168
171
|
py2ls/.git/refs/remotes/origin/HEAD,sha256=K7aiSqD8bEhBAPXVGim7rYQc0sdV9dk_qiBOXbtOsrQ,30
|
|
169
172
|
py2ls/.git/refs/remotes/origin/main,sha256=vaWoJWq2YOJm04yq8v-ImmaNjjqq-OEhS8SdTKUuKw8,41
|
|
170
173
|
py2ls/.gitattributes,sha256=Gh2-F2vCM7SZ01pX23UT8pQcmauXWfF3gwyRSb6ZAFs,66
|
|
171
174
|
py2ls/.gitignore,sha256=y7GvbD_zZkjPVVIue8AyiuFkDMuUbvMaV65Lgu89To8,2763
|
|
175
|
+
py2ls/ImageLoader.py,sha256=jE5xGzheO8MCbfS1Ae-7sAuBFvzpM2qOSr-F1JCUwFA,21997
|
|
172
176
|
py2ls/LICENSE,sha256=UOZ1F5fFDe3XXvG4oNnkL1-Ecun7zpHzRxjp-XsMeAo,11324
|
|
173
177
|
py2ls/README.md,sha256=CwvJWAnSXnCnrVHlnEbrxxi6MbjbE_MT6DH2D53S818,11572
|
|
174
|
-
py2ls/__init__.py,sha256=
|
|
175
|
-
py2ls/
|
|
178
|
+
py2ls/__init__.py,sha256=buTV0isAdoVq9rSj4KVpE_ARjOVbXJG0RqjgMlhNnwk,279
|
|
179
|
+
py2ls/apptainer2ls.py,sha256=sRPZtVa6IeC_H5AEBguLMt74KCGOdzAaSm1t8ccBrII,129100
|
|
180
|
+
py2ls/batman.py,sha256=8MfeOg29qjeLS0ok8UWSUhBcQfgxUDeQ-_A1kH8-p7M,12302
|
|
181
|
+
py2ls/bio.py,sha256=l7I0buH1V8Fy-34333h2IoVDxIVrkFgXKUnetEPRSCc,98809
|
|
176
182
|
py2ls/brain_atlas.py,sha256=w1o5EelRjq89zuFJUNSz4Da8HnTCwAwDAZ4NU4a-bAY,5486
|
|
183
|
+
py2ls/cell_image_clf.py,sha256=Hs59juAI6fa2eHAaRs4CR5E9mKh1DJun_HNH2rCLiHA,60233
|
|
177
184
|
py2ls/chat.py,sha256=Yr22GoIvoWhpV3m4fdwV_I0Mn77La346_ymSinR-ORA,3793
|
|
185
|
+
py2ls/container2ls.py,sha256=-pZYoUIhp0-I7C_f_yvfcpqWru8iADhG2N-6s0h1rzY,169131
|
|
186
|
+
py2ls/corr.py,sha256=RbOaJIPLCHJtUm5SFi_4dCJ7VFUPWR0PErfK3K26ad4,18243
|
|
178
187
|
py2ls/correlators.py,sha256=RbOaJIPLCHJtUm5SFi_4dCJ7VFUPWR0PErfK3K26ad4,18243
|
|
179
|
-
py2ls/data/.DS_Store,sha256=
|
|
188
|
+
py2ls/data/.DS_Store,sha256=lGs0nPmzApO7kCQ5UIxVyF7uXMY1f9PIjpsCUIMFDI4,6148
|
|
180
189
|
py2ls/data/db2ls_sql_chtsht.json,sha256=ls9d7Sm8TLeujanWHfHlWhU85Qz1KnAizO_9X3wUH7E,6933
|
|
181
190
|
py2ls/data/docs_links.json,sha256=kXgbbWo0b8bfV4n6iuuUNLnZipIyLzokUO6Lzmf7nO4,101829
|
|
191
|
+
py2ls/data/email/email_html_template.html,sha256=UIg3aixWfdNsvVx-j2dX1M5N3G-6DgrnV1Ya1cLjiUQ,2809
|
|
192
|
+
py2ls/data/hyper_param_autogluon_zeroshot2024.json,sha256=MblV_gYh_6nWEeeidj-5_YRWajUy_u0qycRWFrujH6E,68152
|
|
193
|
+
py2ls/data/hyper_param_tabrepo_2024.py,sha256=YGSLbeVibDq11l_q1j9wz3WNL4sl8nLSIcBCInsX_wk,60705
|
|
182
194
|
py2ls/data/lang_code_iso639.json,sha256=qZiU7H2RLJjDMXK22C-jhwzLJCI5vKmampjB1ys4ek4,2157
|
|
195
|
+
py2ls/data/mygenes_fields_241022.txt,sha256=-7htEdtmqbSRTUKHHVmjUFLBwZZg9u3LFpn9OZMb1qg,11348
|
|
196
|
+
py2ls/data/re_common_pattern.json,sha256=3J9VTVpOvEQZfbGEATOsn__arvrmvmWjNNjUvwuBlXk,18234
|
|
197
|
+
py2ls/data/sns_info.json,sha256=pEzdg2bhMkwQHZpXx02_7zAP7NvRoCc0Le8PN6Uv0Vk,4074
|
|
198
|
+
py2ls/data/styles/.DS_Store,sha256=ThNr9uQm4LlClwzTjDNQgI3AQE3z8VOe6xqWE_vQTts,6148
|
|
199
|
+
py2ls/data/styles/example/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
|
183
200
|
py2ls/data/styles/example/style1.pdf,sha256=Pt_qQJ5kiCSIPiz3TWSwEffHUdj75kKXnZ4MPqpEx4I,29873
|
|
184
201
|
py2ls/data/styles/example/style2.pdf,sha256=0xduPLPulET38LEP2V2H_q70wqlrrBEo8ttqO-FMrfQ,25449
|
|
185
202
|
py2ls/data/styles/example/style3.pdf,sha256=010-Pm2BUowAt0XDkJWZTR5rAszLqmI1DO3209sIFWs,65536
|
|
@@ -201,20 +218,59 @@ py2ls/data/styles/style6.json,sha256=tu-MYOT9x5Rorc-2IK6sy-J-frmz0RNdm65XAsDQKX4
|
|
|
201
218
|
py2ls/data/styles/style7.json,sha256=StdUFwIVrS7T_6CDrADHMorzc0WZFWBM7IyYdO1TPHg,4447
|
|
202
219
|
py2ls/data/styles/style8.json,sha256=8XUgkZtew8ebvjbAHlDHCSWUqNra3ktDvMCO4vNh-CM,4456
|
|
203
220
|
py2ls/data/styles/style9.json,sha256=PLxvntbH_kfzZlnCTtCEAUVBGi5m6Lngb9C01rArQog,4769
|
|
221
|
+
py2ls/data/styles/stylelib/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
|
222
|
+
py2ls/data/styles/stylelib/grid.mplstyle,sha256=qhgYf_bsjEwqmt10dPnTc3swwuNZMUPfQw5WyvkPQ-0,272
|
|
223
|
+
py2ls/data/styles/stylelib/high-contrast.mplstyle,sha256=Kinmne9-hBncITijLL0aDaVArZFt4lQWCfD83CnK464,193
|
|
224
|
+
py2ls/data/styles/stylelib/high-vis.mplstyle,sha256=5E2k07BPFK8-1wE0BqNmr15_yno7nEZfJeMDE928ugU,237
|
|
225
|
+
py2ls/data/styles/stylelib/ieee.mplstyle,sha256=NvDCqXsPw9OGf9YCoIQTVzugWYMQzqZod5r6I6bxBEo,393
|
|
226
|
+
py2ls/data/styles/stylelib/light.mplstyl,sha256=ylu3JrfYl4ec9XX8oyIczGMpfxi38ytU_J6_AuHrDQ0,245
|
|
227
|
+
py2ls/data/styles/stylelib/muted.mplstyle,sha256=amHDDmOg-2BPcciCACZ0HuWoZs_HGZgLMb6nb-xZ1pM,255
|
|
228
|
+
py2ls/data/styles/stylelib/nature-reviews-latex.mplstyle,sha256=nj3nEjH4IZuE4R3uUe8l7mzgOlYzFX0KbbTv3k8EUlk,32778
|
|
229
|
+
py2ls/data/styles/stylelib/nature-reviews.mplstyle,sha256=AaPSGjKm3Wjqj9I6ohcr4XnJOPT34FQ7KIU2YclJvW0,32762
|
|
230
|
+
py2ls/data/styles/stylelib/nature.mplstyle,sha256=HTm3l0tx2iuSNJ9_ldLhf5Tcg7M1oOHBjfq1IrNjsOI,906
|
|
231
|
+
py2ls/data/styles/stylelib/no-latex.mplstyle,sha256=u3LxgFzbtoimPoxU1kVdGMeOKYemqPdToicbArlBtVw,226
|
|
232
|
+
py2ls/data/styles/stylelib/notebook.mplstyle,sha256=0Y_8DQqIn0yJRb-bx_jKByp1K1PD9fkDDqp7iLlV4Z0,643
|
|
233
|
+
py2ls/data/styles/stylelib/paper.mplstyle,sha256=CTVQHT3AeQofAGSTcQNq-UMnplFc-mdTTPI5eqK8CZA,7663
|
|
234
|
+
py2ls/data/styles/stylelib/paper2.mplstyle,sha256=ZtV48-GkMnF_jak6nMtOlKRIKa_-yQzwg6c4OOeVNPo,8046
|
|
235
|
+
py2ls/data/styles/stylelib/retro.mplstyle,sha256=gMZMYpWDLhOoab7_p8F075yEfIyMucWsWgICqeyFeIk,135
|
|
236
|
+
py2ls/data/styles/stylelib/sans.mplstyle,sha256=YGdrhXWVDFeo0YvdqGiSuF6RrD2NxyJV5grVxpqcKSU,364
|
|
237
|
+
py2ls/data/styles/stylelib/scatter.mplstyle,sha256=g8bxBf-euVKwcN35emBoHzgGBjE_Oux0y7BJl4sr_cM,333
|
|
238
|
+
py2ls/data/styles/stylelib/science.mplstyle,sha256=t6uBwdG8di84mgxQyJWj9jRsux385Td41vRDoxmqn6E,1110
|
|
239
|
+
py2ls/data/styles/stylelib/std-colors.mplstyle,sha256=eD1GJ6b6wF4eygQO-wwaseHKK85TMV9tqExH5CZswX0,201
|
|
240
|
+
py2ls/data/styles/stylelib/vibrant.mplstyle,sha256=99EGa-cDX380VLtURAwimFB-FmTvTZJdJ7rAkTkmhok,227
|
|
241
|
+
py2ls/data/tiles.csv,sha256=73YEcjFZRRcwWyUkkwG-KJTPMAB1VBPqGf5lj07vQqw,3435
|
|
242
|
+
py2ls/data/usages_pd.json,sha256=4DgbPahF4G5Hd6G0TQurb6dBRVey67lpKdgK6A01Tww,266818
|
|
243
|
+
py2ls/data/usages_sns.json,sha256=6gV_G5wjQTazOE0TyIGX-wGoEtGN7MzHpaX5n8pLsKo,11242
|
|
204
244
|
py2ls/db2ls.py,sha256=MMfFX47aIPIyu7fU9aPvX9lbPRPYOpJ_VXwlnWk-8qo,13615
|
|
205
245
|
py2ls/doc.py,sha256=xN3g1OWfoaGUhikbJ0NqbN5eKy1VZVvWwRlhHMgyVEc,4243
|
|
246
|
+
py2ls/docker2ls.py,sha256=KjeyIm2VP8yy6DAFx1kwfJ_d9whRWWopMO52YAaf-s4,200363
|
|
247
|
+
py2ls/ec2ls.py,sha256=PyLkiWYB8AJTIGdMn6VrEoE2vFtPYxt4WrCJfGQPFDk,2271
|
|
206
248
|
py2ls/export_requirements.py,sha256=x2WgUF0jYKz9GfA1MVKN-MdsM-oQ8yUeC6Ua8oCymio,2325
|
|
249
|
+
py2ls/fetch_update.py,sha256=9LXj661GpCEFII2wx_99aINYctDiHni6DOruDs_fdt8,4752
|
|
207
250
|
py2ls/freqanalysis.py,sha256=F4218VSPbgL5tnngh6xNCYuNnfR-F_QjECUUxrPYZss,32594
|
|
208
|
-
py2ls/ich2ls.py,sha256=
|
|
209
|
-
py2ls/
|
|
210
|
-
py2ls/
|
|
211
|
-
py2ls/
|
|
212
|
-
py2ls/
|
|
251
|
+
py2ls/ich2ls.py,sha256=zXWdQzebBZjFIfpjgJuqZ6_7AnGehFTPX-BoNnAQwyc,81940
|
|
252
|
+
py2ls/im2.py,sha256=XK_qKSyezvHkVgSg9vY-bnI3qkvF-ZhNHNfBrqw5MEw,361036
|
|
253
|
+
py2ls/image_ml2ls.py,sha256=sk-lEBcWdr-Zkw9lb4tnQecnWgsXZtcNtmO3Gj0Reyc,78091
|
|
254
|
+
py2ls/ips.py,sha256=pIiihXcD42jhjKpZv4lsOq7x7EVNC_3bOYeRMU8clzE,1323265
|
|
255
|
+
py2ls/ml2ls.py,sha256=WwZqJGvV8i5mPEBT3Kw0XJZu387cMk1xg-rBe9IxICM,345425
|
|
256
|
+
py2ls/mol.py,sha256=AZnHzarIk_MjueKdChqn1V6e4tUle3X1NnHSFA6n3Nw,10645
|
|
257
|
+
py2ls/mount2ls.py,sha256=zl5-W3yqgb9EsRNYxP1VS5WJwKfxxmuhb1r02JM335I,46247
|
|
258
|
+
py2ls/netfinder.py,sha256=0B-LKu-gNS-zx4LMg859IW0YMI0d4rg6uUzxGqjIM7k,73448
|
|
259
|
+
py2ls/nl2ls.py,sha256=UEIdok-OamFZFIvvz_PdZenu085zteMdaJd9mLu3F-s,11485
|
|
260
|
+
py2ls/ocr.py,sha256=P8WPoUtkAFcHjqiXueZ12GaJbS38705CC24OaVVfopE,70226
|
|
261
|
+
py2ls/plot.py,sha256=gz1COtWHj_iVbAk8JpoZNnRSYQYDciykOCqv0Yt-9jE,514265
|
|
262
|
+
py2ls/rna2ls.py,sha256=_sz_sxXRvnxsYV1Bu-yB3Y0ancSNXQ--VOLX7ZWknhc,11582
|
|
213
263
|
py2ls/setuptools-70.1.0-py3-none-any.whl,sha256=2bi3cUVal8ip86s0SOvgspteEF8SKLukECi-EWmFomc,882588
|
|
214
264
|
py2ls/sleep_events_detectors.py,sha256=bQA3HJqv5qnYKJJEIhCyhlDtkXQfIzqksnD0YRXso68,52145
|
|
215
|
-
py2ls/
|
|
216
|
-
py2ls/
|
|
265
|
+
py2ls/ssh2ls.md,sha256=8Cko05i6fZjFJSpqKtaDmYzfbPtqP4Pz4CVM_Ng9_E8,12702
|
|
266
|
+
py2ls/ssh2ls.py,sha256=S6TALV6YwbJ50UYP4PkE678Ye_vOOw9cvExQsWeN5BQ,235146
|
|
267
|
+
py2ls/ssh2ls_v01.py,sha256=uRYQwmlB7UKD_alMqEniHJfRl9BnXqcXvHJ6u10e8Pc,86824
|
|
268
|
+
py2ls/stats.py,sha256=xBXUHgV92iqNKtNaj7p5YouNJXKPrJcwkYJhc6lw8NI,34107
|
|
269
|
+
py2ls/temp20251124.py,sha256=jQluH7M1wsVugwrZOXDOHfuTc4JEbKj0mnUJBFgiutE,21388
|
|
270
|
+
py2ls/translator.py,sha256=77Tp_GjmiiwFbEIJD_q3VYpQ43XL9ZeJo6Mhl44mvh8,34284
|
|
271
|
+
py2ls/utils/decorators.py,sha256=9lthlL7piV5TwCAmMRa7SdEfhgTDJL3MoDaApaFXrV4,127181
|
|
272
|
+
py2ls/utils_bio.py,sha256=7HfIv-qlwtJPAFAXKF-6SdRBGJcxWWaNYBUCg-trN-s,123813
|
|
217
273
|
py2ls/wb_detector.py,sha256=7y6TmBUj9exCZeIgBAJ_9hwuhkDh1x_-yg4dvNY1_GQ,6284
|
|
218
|
-
py2ls-0.
|
|
219
|
-
py2ls-0.
|
|
220
|
-
py2ls-0.
|
|
274
|
+
py2ls-0.2.7.10.dist-info/METADATA,sha256=I_lPt5hThzVA9whKZKxgTYbeScRnUF-AVBlZmDluE4w,19391
|
|
275
|
+
py2ls-0.2.7.10.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
276
|
+
py2ls-0.2.7.10.dist-info/RECORD,,
|
|
File without changes
|