megfile 3.1.0.post2__py3-none-any.whl → 3.1.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. docs/conf.py +2 -4
  2. megfile/__init__.py +394 -203
  3. megfile/cli.py +258 -238
  4. megfile/config.py +25 -21
  5. megfile/errors.py +124 -114
  6. megfile/fs.py +174 -140
  7. megfile/fs_path.py +462 -354
  8. megfile/hdfs.py +133 -101
  9. megfile/hdfs_path.py +290 -236
  10. megfile/http.py +15 -14
  11. megfile/http_path.py +111 -107
  12. megfile/interfaces.py +70 -65
  13. megfile/lib/base_prefetch_reader.py +94 -69
  14. megfile/lib/combine_reader.py +13 -12
  15. megfile/lib/compare.py +17 -13
  16. megfile/lib/compat.py +1 -5
  17. megfile/lib/fnmatch.py +29 -30
  18. megfile/lib/glob.py +54 -55
  19. megfile/lib/hdfs_prefetch_reader.py +40 -25
  20. megfile/lib/hdfs_tools.py +1 -3
  21. megfile/lib/http_prefetch_reader.py +69 -46
  22. megfile/lib/joinpath.py +5 -5
  23. megfile/lib/lazy_handler.py +7 -3
  24. megfile/lib/s3_buffered_writer.py +61 -52
  25. megfile/lib/s3_cached_handler.py +14 -13
  26. megfile/lib/s3_limited_seekable_writer.py +38 -28
  27. megfile/lib/s3_memory_handler.py +35 -29
  28. megfile/lib/s3_pipe_handler.py +25 -24
  29. megfile/lib/s3_prefetch_reader.py +71 -52
  30. megfile/lib/s3_share_cache_reader.py +37 -24
  31. megfile/lib/shadow_handler.py +8 -3
  32. megfile/lib/stdio_handler.py +9 -8
  33. megfile/lib/url.py +3 -3
  34. megfile/pathlike.py +259 -228
  35. megfile/s3.py +220 -153
  36. megfile/s3_path.py +977 -802
  37. megfile/sftp.py +190 -156
  38. megfile/sftp_path.py +540 -450
  39. megfile/smart.py +397 -330
  40. megfile/smart_path.py +100 -105
  41. megfile/stdio.py +10 -9
  42. megfile/stdio_path.py +32 -35
  43. megfile/utils/__init__.py +75 -54
  44. megfile/utils/mutex.py +11 -14
  45. megfile/version.py +1 -1
  46. {megfile-3.1.0.post2.dist-info → megfile-3.1.2.dist-info}/METADATA +5 -8
  47. megfile-3.1.2.dist-info/RECORD +55 -0
  48. {megfile-3.1.0.post2.dist-info → megfile-3.1.2.dist-info}/WHEEL +1 -1
  49. scripts/convert_results_to_sarif.py +45 -78
  50. scripts/generate_file.py +140 -64
  51. megfile-3.1.0.post2.dist-info/RECORD +0 -55
  52. {megfile-3.1.0.post2.dist-info → megfile-3.1.2.dist-info}/LICENSE +0 -0
  53. {megfile-3.1.0.post2.dist-info → megfile-3.1.2.dist-info}/LICENSE.pyre +0 -0
  54. {megfile-3.1.0.post2.dist-info → megfile-3.1.2.dist-info}/entry_points.txt +0 -0
  55. {megfile-3.1.0.post2.dist-info → megfile-3.1.2.dist-info}/top_level.txt +0 -0
docs/conf.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # Configuration file for the Sphinx documentation builder.
2
- #
2
+
3
3
  # This file only contains a selection of the most common options. For a full
4
4
  # list see the documentation:
5
5
  # http://www.sphinx-doc.org/en/master/config
@@ -9,7 +9,6 @@
9
9
  # If extensions (or modules to document with autodoc) are in another directory,
10
10
  # add these directories to sys.path here. If the directory is relative to the
11
11
  # documentation root, use os.path.abspath to make it absolute, like shown here.
12
- #
13
12
 
14
13
  # -- Project information -----------------------------------------------------
15
14
 
@@ -37,7 +36,7 @@ templates_path = ['_templates']
37
36
 
38
37
  # The language for content autogenerated by Sphinx. Refer to documentation
39
38
  # for a list of supported languages.
40
- #
39
+
41
40
  # This is also used if you do content translation via gettext catalogs.
42
41
  # Usually you set "language" from the command line for these cases.
43
42
  language = 'en'
@@ -51,7 +50,6 @@ exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
51
50
 
52
51
  # The theme to use for HTML and HTML Help pages. See the documentation for
53
52
  # a list of builtin themes.
54
- #
55
53
  html_theme = "sphinx_rtd_theme"
56
54
 
57
55
  # Add any paths that contain custom static files (such as style sheets) here,
megfile/__init__.py CHANGED
@@ -1,214 +1,405 @@
1
- from megfile.fs import fs_abspath, fs_access, fs_cwd, fs_exists, fs_expanduser, fs_getmd5, fs_getmtime, fs_getsize, fs_glob, fs_glob_stat, fs_home, fs_iglob, fs_isabs, fs_isdir, fs_isfile, fs_islink, fs_ismount, fs_listdir, fs_load_from, fs_lstat, fs_makedirs, fs_move, fs_readlink, fs_realpath, fs_relpath, fs_remove, fs_rename, fs_resolve, fs_save_as, fs_scan, fs_scan_stat, fs_scandir, fs_stat, fs_symlink, fs_sync, fs_unlink, fs_walk, is_fs
1
+ from megfile.fs import (
2
+ fs_abspath,
3
+ fs_access,
4
+ fs_cwd,
5
+ fs_exists,
6
+ fs_expanduser,
7
+ fs_getmd5,
8
+ fs_getmtime,
9
+ fs_getsize,
10
+ fs_glob,
11
+ fs_glob_stat,
12
+ fs_home,
13
+ fs_iglob,
14
+ fs_isabs,
15
+ fs_isdir,
16
+ fs_isfile,
17
+ fs_islink,
18
+ fs_ismount,
19
+ fs_listdir,
20
+ fs_load_from,
21
+ fs_lstat,
22
+ fs_makedirs,
23
+ fs_move,
24
+ fs_readlink,
25
+ fs_realpath,
26
+ fs_relpath,
27
+ fs_remove,
28
+ fs_rename,
29
+ fs_resolve,
30
+ fs_save_as,
31
+ fs_scan,
32
+ fs_scan_stat,
33
+ fs_scandir,
34
+ fs_stat,
35
+ fs_symlink,
36
+ fs_sync,
37
+ fs_unlink,
38
+ fs_walk,
39
+ is_fs,
40
+ )
2
41
  from megfile.fs_path import FSPath
3
- from megfile.hdfs import hdfs_exists, hdfs_getmd5, hdfs_getmtime, hdfs_getsize, hdfs_glob, hdfs_glob_stat, hdfs_iglob, hdfs_isdir, hdfs_isfile, hdfs_listdir, hdfs_load_from, hdfs_makedirs, hdfs_move, hdfs_open, hdfs_remove, hdfs_save_as, hdfs_scan, hdfs_scan_stat, hdfs_scandir, hdfs_stat, hdfs_unlink, hdfs_walk, is_hdfs
42
+ from megfile.hdfs import (
43
+ hdfs_exists,
44
+ hdfs_getmd5,
45
+ hdfs_getmtime,
46
+ hdfs_getsize,
47
+ hdfs_glob,
48
+ hdfs_glob_stat,
49
+ hdfs_iglob,
50
+ hdfs_isdir,
51
+ hdfs_isfile,
52
+ hdfs_listdir,
53
+ hdfs_load_from,
54
+ hdfs_makedirs,
55
+ hdfs_move,
56
+ hdfs_open,
57
+ hdfs_remove,
58
+ hdfs_save_as,
59
+ hdfs_scan,
60
+ hdfs_scan_stat,
61
+ hdfs_scandir,
62
+ hdfs_stat,
63
+ hdfs_unlink,
64
+ hdfs_walk,
65
+ is_hdfs,
66
+ )
4
67
  from megfile.hdfs_path import HdfsPath
5
- from megfile.http import http_exists, http_getmtime, http_getsize, http_open, http_stat, is_http
68
+ from megfile.http import (
69
+ http_exists,
70
+ http_getmtime,
71
+ http_getsize,
72
+ http_open,
73
+ http_stat,
74
+ is_http,
75
+ )
6
76
  from megfile.http_path import HttpPath, HttpsPath
7
- from megfile.s3 import is_s3, s3_access, s3_buffered_open, s3_cached_open, s3_concat, s3_copy, s3_download, s3_exists, s3_getmd5, s3_getmtime, s3_getsize, s3_glob, s3_glob_stat, s3_hasbucket, s3_iglob, s3_isdir, s3_isfile, s3_listdir, s3_load_content, s3_load_from, s3_lstat, s3_makedirs, s3_memory_open, s3_move, s3_open, s3_path_join, s3_pipe_open, s3_prefetch_open, s3_readlink, s3_remove, s3_rename, s3_save_as, s3_scan, s3_scan_stat, s3_scandir, s3_stat, s3_symlink, s3_sync, s3_unlink, s3_upload, s3_walk
77
+ from megfile.s3 import (
78
+ is_s3,
79
+ s3_access,
80
+ s3_buffered_open,
81
+ s3_cached_open,
82
+ s3_concat,
83
+ s3_copy,
84
+ s3_download,
85
+ s3_exists,
86
+ s3_getmd5,
87
+ s3_getmtime,
88
+ s3_getsize,
89
+ s3_glob,
90
+ s3_glob_stat,
91
+ s3_hasbucket,
92
+ s3_iglob,
93
+ s3_isdir,
94
+ s3_isfile,
95
+ s3_listdir,
96
+ s3_load_content,
97
+ s3_load_from,
98
+ s3_lstat,
99
+ s3_makedirs,
100
+ s3_memory_open,
101
+ s3_move,
102
+ s3_open,
103
+ s3_path_join,
104
+ s3_pipe_open,
105
+ s3_prefetch_open,
106
+ s3_readlink,
107
+ s3_remove,
108
+ s3_rename,
109
+ s3_save_as,
110
+ s3_scan,
111
+ s3_scan_stat,
112
+ s3_scandir,
113
+ s3_stat,
114
+ s3_symlink,
115
+ s3_sync,
116
+ s3_unlink,
117
+ s3_upload,
118
+ s3_walk,
119
+ )
8
120
  from megfile.s3_path import S3Path
9
- from megfile.sftp import is_sftp, sftp_absolute, sftp_chmod, sftp_concat, sftp_copy, sftp_exists, sftp_getmd5, sftp_getmtime, sftp_getsize, sftp_glob, sftp_glob_stat, sftp_iglob, sftp_isdir, sftp_isfile, sftp_islink, sftp_listdir, sftp_load_from, sftp_lstat, sftp_makedirs, sftp_move, sftp_open, sftp_path_join, sftp_readlink, sftp_realpath, sftp_remove, sftp_rename, sftp_resolve, sftp_rmdir, sftp_save_as, sftp_scan, sftp_scan_stat, sftp_scandir, sftp_stat, sftp_symlink, sftp_sync, sftp_unlink, sftp_walk
121
+ from megfile.sftp import (
122
+ is_sftp,
123
+ sftp_absolute,
124
+ sftp_chmod,
125
+ sftp_concat,
126
+ sftp_copy,
127
+ sftp_exists,
128
+ sftp_getmd5,
129
+ sftp_getmtime,
130
+ sftp_getsize,
131
+ sftp_glob,
132
+ sftp_glob_stat,
133
+ sftp_iglob,
134
+ sftp_isdir,
135
+ sftp_isfile,
136
+ sftp_islink,
137
+ sftp_listdir,
138
+ sftp_load_from,
139
+ sftp_lstat,
140
+ sftp_makedirs,
141
+ sftp_move,
142
+ sftp_open,
143
+ sftp_path_join,
144
+ sftp_readlink,
145
+ sftp_realpath,
146
+ sftp_remove,
147
+ sftp_rename,
148
+ sftp_resolve,
149
+ sftp_rmdir,
150
+ sftp_save_as,
151
+ sftp_scan,
152
+ sftp_scan_stat,
153
+ sftp_scandir,
154
+ sftp_stat,
155
+ sftp_symlink,
156
+ sftp_sync,
157
+ sftp_unlink,
158
+ sftp_walk,
159
+ )
10
160
  from megfile.sftp_path import SftpPath
11
- from megfile.smart import smart_access, smart_cache, smart_combine_open, smart_concat, smart_copy, smart_exists, smart_getmd5, smart_getmtime, smart_getsize, smart_glob, smart_glob_stat, smart_iglob, smart_isdir, smart_isfile, smart_islink, smart_listdir, smart_load_content, smart_load_from, smart_load_text, smart_lstat, smart_makedirs, smart_move, smart_open, smart_path_join, smart_readlink, smart_realpath, smart_remove, smart_rename, smart_save_as, smart_save_content, smart_save_text, smart_scan, smart_scan_stat, smart_scandir, smart_stat, smart_symlink, smart_sync, smart_touch, smart_unlink, smart_walk
161
+ from megfile.smart import (
162
+ smart_access,
163
+ smart_cache,
164
+ smart_combine_open,
165
+ smart_concat,
166
+ smart_copy,
167
+ smart_exists,
168
+ smart_getmd5,
169
+ smart_getmtime,
170
+ smart_getsize,
171
+ smart_glob,
172
+ smart_glob_stat,
173
+ smart_iglob,
174
+ smart_isdir,
175
+ smart_isfile,
176
+ smart_islink,
177
+ smart_listdir,
178
+ smart_load_content,
179
+ smart_load_from,
180
+ smart_load_text,
181
+ smart_lstat,
182
+ smart_makedirs,
183
+ smart_move,
184
+ smart_open,
185
+ smart_path_join,
186
+ smart_readlink,
187
+ smart_realpath,
188
+ smart_remove,
189
+ smart_rename,
190
+ smart_save_as,
191
+ smart_save_content,
192
+ smart_save_text,
193
+ smart_scan,
194
+ smart_scan_stat,
195
+ smart_scandir,
196
+ smart_stat,
197
+ smart_symlink,
198
+ smart_sync,
199
+ smart_touch,
200
+ smart_unlink,
201
+ smart_walk,
202
+ )
12
203
  from megfile.smart_path import SmartPath
13
204
  from megfile.stdio import is_stdio, stdio_open
14
205
  from megfile.stdio_path import StdioPath
15
- from megfile.version import VERSION as __version__
206
+ from megfile.version import VERSION as __version__ # noqa: F401
16
207
 
17
208
  __all__ = [
18
- 'smart_access',
19
- 'smart_cache',
20
- 'smart_combine_open',
21
- 'smart_copy',
22
- 'smart_exists',
23
- 'smart_getmtime',
24
- 'smart_getsize',
25
- 'smart_glob_stat',
26
- 'smart_glob',
27
- 'smart_iglob',
28
- 'smart_isdir',
29
- 'smart_isfile',
30
- 'smart_islink',
31
- 'smart_listdir',
32
- 'smart_load_content',
33
- 'smart_save_content',
34
- 'smart_load_from',
35
- 'smart_load_text',
36
- 'smart_save_text',
37
- 'smart_makedirs',
38
- 'smart_open',
39
- 'smart_path_join',
40
- 'smart_realpath',
41
- 'smart_remove',
42
- 'smart_move',
43
- 'smart_rename',
44
- 'smart_save_as',
45
- 'smart_scan_stat',
46
- 'smart_scan',
47
- 'smart_scandir',
48
- 'smart_stat',
49
- 'smart_sync',
50
- 'smart_touch',
51
- 'smart_unlink',
52
- 'smart_walk',
53
- 'smart_cache',
54
- 'smart_getmd5',
55
- 'smart_symlink',
56
- 'smart_readlink',
57
- 'smart_lstat',
58
- 'smart_concat',
59
- 'is_s3',
60
- 's3_access',
61
- 's3_buffered_open',
62
- 's3_cached_open',
63
- 's3_copy',
64
- 's3_download',
65
- 's3_exists',
66
- 's3_getmd5',
67
- 's3_getmtime',
68
- 's3_getsize',
69
- 's3_glob_stat',
70
- 's3_glob',
71
- 's3_hasbucket',
72
- 's3_iglob',
73
- 's3_isdir',
74
- 's3_isfile',
75
- 's3_listdir',
76
- 's3_load_content',
77
- 's3_load_from',
78
- 's3_makedirs',
79
- 's3_memory_open',
80
- 's3_open',
81
- 's3_path_join',
82
- 's3_pipe_open',
83
- 's3_prefetch_open',
84
- 's3_remove',
85
- 's3_rename',
86
- 's3_move',
87
- 's3_sync',
88
- 's3_save_as',
89
- 's3_scan_stat',
90
- 's3_scan',
91
- 's3_scandir',
92
- 's3_stat',
93
- 's3_lstat',
94
- 's3_unlink',
95
- 's3_upload',
96
- 's3_walk',
97
- 's3_symlink',
98
- 's3_readlink',
99
- 's3_concat',
100
- 'is_fs',
101
- 'fs_abspath',
102
- 'fs_access',
103
- 'fs_exists',
104
- 'fs_getmtime',
105
- 'fs_getsize',
106
- 'fs_glob_stat',
107
- 'fs_glob',
108
- 'fs_iglob',
109
- 'fs_isabs',
110
- 'fs_isdir',
111
- 'fs_isfile',
112
- 'fs_islink',
113
- 'fs_ismount',
114
- 'fs_listdir',
115
- 'fs_load_from',
116
- 'fs_makedirs',
117
- 'fs_realpath',
118
- 'fs_relpath',
119
- 'fs_remove',
120
- 'fs_rename',
121
- 'fs_move',
122
- 'fs_sync',
123
- 'fs_save_as',
124
- 'fs_scan_stat',
125
- 'fs_scan',
126
- 'fs_scandir',
127
- 'fs_stat',
128
- 'fs_lstat',
129
- 'fs_unlink',
130
- 'fs_walk',
131
- 'fs_cwd',
132
- 'fs_home',
133
- 'fs_expanduser',
134
- 'fs_resolve',
135
- 'fs_getmd5',
136
- 'fs_symlink',
137
- 'fs_readlink',
138
- 'is_http',
139
- 'http_open',
140
- 'http_stat',
141
- 'http_getsize',
142
- 'http_getmtime',
143
- 'http_exists',
144
- 'is_stdio',
145
- 'stdio_open',
146
- 'is_sftp',
147
- 'sftp_readlink',
148
- 'sftp_absolute',
149
- 'sftp_glob',
150
- 'sftp_iglob',
151
- 'sftp_glob_stat',
152
- 'sftp_resolve',
153
- 'sftp_isdir',
154
- 'sftp_exists',
155
- 'sftp_scandir',
156
- 'sftp_getmtime',
157
- 'sftp_getsize',
158
- 'sftp_isfile',
159
- 'sftp_listdir',
160
- 'sftp_load_from',
161
- 'sftp_makedirs',
162
- 'sftp_realpath',
163
- 'sftp_rename',
164
- 'sftp_move',
165
- 'sftp_remove',
166
- 'sftp_scan',
167
- 'sftp_scan_stat',
168
- 'sftp_stat',
169
- 'sftp_lstat',
170
- 'sftp_unlink',
171
- 'sftp_walk',
172
- 'sftp_path_join',
173
- 'sftp_getmd5',
174
- 'sftp_symlink',
175
- 'sftp_islink',
176
- 'sftp_save_as',
177
- 'sftp_open',
178
- 'sftp_chmod',
179
- 'sftp_rmdir',
180
- 'sftp_copy',
181
- 'sftp_sync',
182
- 'sftp_concat',
183
- 'is_hdfs',
184
- 'hdfs_exists',
185
- 'hdfs_stat',
186
- 'hdfs_getmtime',
187
- 'hdfs_getsize',
188
- 'hdfs_isdir',
189
- 'hdfs_isfile',
190
- 'hdfs_listdir',
191
- 'hdfs_load_from',
192
- 'hdfs_move',
193
- 'hdfs_remove',
194
- 'hdfs_scan',
195
- 'hdfs_scan_stat',
196
- 'hdfs_scandir',
197
- 'hdfs_unlink',
198
- 'hdfs_walk',
199
- 'hdfs_getmd5',
200
- 'hdfs_save_as',
201
- 'hdfs_open',
202
- 'hdfs_glob',
203
- 'hdfs_glob_stat',
204
- 'hdfs_iglob',
205
- 'hdfs_makedirs',
206
- 'S3Path',
207
- 'FSPath',
208
- 'HttpPath',
209
- 'HttpsPath',
210
- 'StdioPath',
211
- 'SmartPath',
212
- 'SftpPath',
213
- 'HdfsPath',
209
+ "smart_access",
210
+ "smart_cache",
211
+ "smart_combine_open",
212
+ "smart_copy",
213
+ "smart_exists",
214
+ "smart_getmtime",
215
+ "smart_getsize",
216
+ "smart_glob_stat",
217
+ "smart_glob",
218
+ "smart_iglob",
219
+ "smart_isdir",
220
+ "smart_isfile",
221
+ "smart_islink",
222
+ "smart_listdir",
223
+ "smart_load_content",
224
+ "smart_save_content",
225
+ "smart_load_from",
226
+ "smart_load_text",
227
+ "smart_save_text",
228
+ "smart_makedirs",
229
+ "smart_open",
230
+ "smart_path_join",
231
+ "smart_realpath",
232
+ "smart_remove",
233
+ "smart_move",
234
+ "smart_rename",
235
+ "smart_save_as",
236
+ "smart_scan_stat",
237
+ "smart_scan",
238
+ "smart_scandir",
239
+ "smart_stat",
240
+ "smart_sync",
241
+ "smart_touch",
242
+ "smart_unlink",
243
+ "smart_walk",
244
+ "smart_cache",
245
+ "smart_getmd5",
246
+ "smart_symlink",
247
+ "smart_readlink",
248
+ "smart_lstat",
249
+ "smart_concat",
250
+ "is_s3",
251
+ "s3_access",
252
+ "s3_buffered_open",
253
+ "s3_cached_open",
254
+ "s3_copy",
255
+ "s3_download",
256
+ "s3_exists",
257
+ "s3_getmd5",
258
+ "s3_getmtime",
259
+ "s3_getsize",
260
+ "s3_glob_stat",
261
+ "s3_glob",
262
+ "s3_hasbucket",
263
+ "s3_iglob",
264
+ "s3_isdir",
265
+ "s3_isfile",
266
+ "s3_listdir",
267
+ "s3_load_content",
268
+ "s3_load_from",
269
+ "s3_makedirs",
270
+ "s3_memory_open",
271
+ "s3_open",
272
+ "s3_path_join",
273
+ "s3_pipe_open",
274
+ "s3_prefetch_open",
275
+ "s3_remove",
276
+ "s3_rename",
277
+ "s3_move",
278
+ "s3_sync",
279
+ "s3_save_as",
280
+ "s3_scan_stat",
281
+ "s3_scan",
282
+ "s3_scandir",
283
+ "s3_stat",
284
+ "s3_lstat",
285
+ "s3_unlink",
286
+ "s3_upload",
287
+ "s3_walk",
288
+ "s3_symlink",
289
+ "s3_readlink",
290
+ "s3_concat",
291
+ "is_fs",
292
+ "fs_abspath",
293
+ "fs_access",
294
+ "fs_exists",
295
+ "fs_getmtime",
296
+ "fs_getsize",
297
+ "fs_glob_stat",
298
+ "fs_glob",
299
+ "fs_iglob",
300
+ "fs_isabs",
301
+ "fs_isdir",
302
+ "fs_isfile",
303
+ "fs_islink",
304
+ "fs_ismount",
305
+ "fs_listdir",
306
+ "fs_load_from",
307
+ "fs_makedirs",
308
+ "fs_realpath",
309
+ "fs_relpath",
310
+ "fs_remove",
311
+ "fs_rename",
312
+ "fs_move",
313
+ "fs_sync",
314
+ "fs_save_as",
315
+ "fs_scan_stat",
316
+ "fs_scan",
317
+ "fs_scandir",
318
+ "fs_stat",
319
+ "fs_lstat",
320
+ "fs_unlink",
321
+ "fs_walk",
322
+ "fs_cwd",
323
+ "fs_home",
324
+ "fs_expanduser",
325
+ "fs_resolve",
326
+ "fs_getmd5",
327
+ "fs_symlink",
328
+ "fs_readlink",
329
+ "is_http",
330
+ "http_open",
331
+ "http_stat",
332
+ "http_getsize",
333
+ "http_getmtime",
334
+ "http_exists",
335
+ "is_stdio",
336
+ "stdio_open",
337
+ "is_sftp",
338
+ "sftp_readlink",
339
+ "sftp_absolute",
340
+ "sftp_glob",
341
+ "sftp_iglob",
342
+ "sftp_glob_stat",
343
+ "sftp_resolve",
344
+ "sftp_isdir",
345
+ "sftp_exists",
346
+ "sftp_scandir",
347
+ "sftp_getmtime",
348
+ "sftp_getsize",
349
+ "sftp_isfile",
350
+ "sftp_listdir",
351
+ "sftp_load_from",
352
+ "sftp_makedirs",
353
+ "sftp_realpath",
354
+ "sftp_rename",
355
+ "sftp_move",
356
+ "sftp_remove",
357
+ "sftp_scan",
358
+ "sftp_scan_stat",
359
+ "sftp_stat",
360
+ "sftp_lstat",
361
+ "sftp_unlink",
362
+ "sftp_walk",
363
+ "sftp_path_join",
364
+ "sftp_getmd5",
365
+ "sftp_symlink",
366
+ "sftp_islink",
367
+ "sftp_save_as",
368
+ "sftp_open",
369
+ "sftp_chmod",
370
+ "sftp_rmdir",
371
+ "sftp_copy",
372
+ "sftp_sync",
373
+ "sftp_concat",
374
+ "is_hdfs",
375
+ "hdfs_exists",
376
+ "hdfs_stat",
377
+ "hdfs_getmtime",
378
+ "hdfs_getsize",
379
+ "hdfs_isdir",
380
+ "hdfs_isfile",
381
+ "hdfs_listdir",
382
+ "hdfs_load_from",
383
+ "hdfs_move",
384
+ "hdfs_remove",
385
+ "hdfs_scan",
386
+ "hdfs_scan_stat",
387
+ "hdfs_scandir",
388
+ "hdfs_unlink",
389
+ "hdfs_walk",
390
+ "hdfs_getmd5",
391
+ "hdfs_save_as",
392
+ "hdfs_open",
393
+ "hdfs_glob",
394
+ "hdfs_glob_stat",
395
+ "hdfs_iglob",
396
+ "hdfs_makedirs",
397
+ "S3Path",
398
+ "FSPath",
399
+ "HttpPath",
400
+ "HttpsPath",
401
+ "StdioPath",
402
+ "SmartPath",
403
+ "SftpPath",
404
+ "HdfsPath",
214
405
  ]