fsspec 2024.3.0__py3-none-any.whl → 2024.5.0__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 (87) hide show
  1. fsspec/__init__.py +2 -3
  2. fsspec/_version.py +14 -19
  3. fsspec/caching.py +83 -14
  4. fsspec/compression.py +1 -0
  5. fsspec/core.py +31 -6
  6. fsspec/exceptions.py +1 -0
  7. fsspec/generic.py +1 -1
  8. fsspec/gui.py +1 -1
  9. fsspec/implementations/arrow.py +0 -2
  10. fsspec/implementations/cache_mapper.py +1 -2
  11. fsspec/implementations/cache_metadata.py +7 -7
  12. fsspec/implementations/dirfs.py +2 -2
  13. fsspec/implementations/http.py +9 -9
  14. fsspec/implementations/local.py +97 -48
  15. fsspec/implementations/memory.py +9 -0
  16. fsspec/implementations/smb.py +3 -1
  17. fsspec/implementations/tests/__init__.py +0 -0
  18. fsspec/implementations/tests/cassettes/test_dbfs/test_dbfs_file_listing.yaml +112 -0
  19. fsspec/implementations/tests/cassettes/test_dbfs/test_dbfs_mkdir.yaml +582 -0
  20. fsspec/implementations/tests/cassettes/test_dbfs/test_dbfs_read_pyarrow_non_partitioned.yaml +873 -0
  21. fsspec/implementations/tests/cassettes/test_dbfs/test_dbfs_read_range.yaml +458 -0
  22. fsspec/implementations/tests/cassettes/test_dbfs/test_dbfs_read_range_chunked.yaml +1355 -0
  23. fsspec/implementations/tests/cassettes/test_dbfs/test_dbfs_write_and_read.yaml +795 -0
  24. fsspec/implementations/tests/cassettes/test_dbfs/test_dbfs_write_pyarrow_non_partitioned.yaml +613 -0
  25. fsspec/implementations/tests/conftest.py +39 -0
  26. fsspec/implementations/tests/local/__init__.py +0 -0
  27. fsspec/implementations/tests/local/local_fixtures.py +18 -0
  28. fsspec/implementations/tests/local/local_test.py +14 -0
  29. fsspec/implementations/tests/memory/__init__.py +0 -0
  30. fsspec/implementations/tests/memory/memory_fixtures.py +27 -0
  31. fsspec/implementations/tests/memory/memory_test.py +14 -0
  32. fsspec/implementations/tests/out.zip +0 -0
  33. fsspec/implementations/tests/test_archive.py +382 -0
  34. fsspec/implementations/tests/test_arrow.py +259 -0
  35. fsspec/implementations/tests/test_cached.py +1306 -0
  36. fsspec/implementations/tests/test_common.py +35 -0
  37. fsspec/implementations/tests/test_dask.py +29 -0
  38. fsspec/implementations/tests/test_data.py +20 -0
  39. fsspec/implementations/tests/test_dbfs.py +268 -0
  40. fsspec/implementations/tests/test_dirfs.py +588 -0
  41. fsspec/implementations/tests/test_ftp.py +178 -0
  42. fsspec/implementations/tests/test_git.py +76 -0
  43. fsspec/implementations/tests/test_http.py +577 -0
  44. fsspec/implementations/tests/test_jupyter.py +57 -0
  45. fsspec/implementations/tests/test_libarchive.py +33 -0
  46. fsspec/implementations/tests/test_local.py +1285 -0
  47. fsspec/implementations/tests/test_memory.py +382 -0
  48. fsspec/implementations/tests/test_reference.py +720 -0
  49. fsspec/implementations/tests/test_sftp.py +233 -0
  50. fsspec/implementations/tests/test_smb.py +139 -0
  51. fsspec/implementations/tests/test_tar.py +243 -0
  52. fsspec/implementations/tests/test_webhdfs.py +197 -0
  53. fsspec/implementations/tests/test_zip.py +134 -0
  54. fsspec/implementations/webhdfs.py +1 -3
  55. fsspec/mapping.py +2 -2
  56. fsspec/parquet.py +0 -8
  57. fsspec/registry.py +4 -0
  58. fsspec/spec.py +21 -4
  59. fsspec/tests/__init__.py +0 -0
  60. fsspec/tests/abstract/mv.py +57 -0
  61. fsspec/tests/conftest.py +188 -0
  62. fsspec/tests/data/listing.html +1 -0
  63. fsspec/tests/test_api.py +498 -0
  64. fsspec/tests/test_async.py +230 -0
  65. fsspec/tests/test_caches.py +255 -0
  66. fsspec/tests/test_callbacks.py +89 -0
  67. fsspec/tests/test_compression.py +164 -0
  68. fsspec/tests/test_config.py +129 -0
  69. fsspec/tests/test_core.py +466 -0
  70. fsspec/tests/test_downstream.py +40 -0
  71. fsspec/tests/test_file.py +200 -0
  72. fsspec/tests/test_fuse.py +147 -0
  73. fsspec/tests/test_generic.py +90 -0
  74. fsspec/tests/test_gui.py +23 -0
  75. fsspec/tests/test_mapping.py +228 -0
  76. fsspec/tests/test_parquet.py +140 -0
  77. fsspec/tests/test_registry.py +134 -0
  78. fsspec/tests/test_spec.py +1167 -0
  79. fsspec/tests/test_utils.py +478 -0
  80. fsspec/utils.py +0 -2
  81. fsspec-2024.5.0.dist-info/METADATA +273 -0
  82. fsspec-2024.5.0.dist-info/RECORD +111 -0
  83. {fsspec-2024.3.0.dist-info → fsspec-2024.5.0.dist-info}/WHEEL +1 -2
  84. fsspec-2024.3.0.dist-info/METADATA +0 -167
  85. fsspec-2024.3.0.dist-info/RECORD +0 -54
  86. fsspec-2024.3.0.dist-info/top_level.txt +0 -1
  87. {fsspec-2024.3.0.dist-info → fsspec-2024.5.0.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,273 @@
1
+ Metadata-Version: 2.3
2
+ Name: fsspec
3
+ Version: 2024.5.0
4
+ Summary: File-system specification
5
+ Project-URL: Changelog, https://filesystem-spec.readthedocs.io/en/latest/changelog.html
6
+ Project-URL: Documentation, https://filesystem-spec.readthedocs.io/en/latest/
7
+ Project-URL: Homepage, https://github.com/fsspec/filesystem_spec
8
+ Maintainer-email: Martin Durant <mdurant@anaconda.com>
9
+ License: BSD 3-Clause License
10
+
11
+ Copyright (c) 2018, Martin Durant
12
+ All rights reserved.
13
+
14
+ Redistribution and use in source and binary forms, with or without
15
+ modification, are permitted provided that the following conditions are met:
16
+
17
+ * Redistributions of source code must retain the above copyright notice, this
18
+ list of conditions and the following disclaimer.
19
+
20
+ * Redistributions in binary form must reproduce the above copyright notice,
21
+ this list of conditions and the following disclaimer in the documentation
22
+ and/or other materials provided with the distribution.
23
+
24
+ * Neither the name of the copyright holder nor the names of its
25
+ contributors may be used to endorse or promote products derived from
26
+ this software without specific prior written permission.
27
+
28
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
29
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
31
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
32
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
34
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
35
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
36
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38
+ License-File: LICENSE
39
+ Keywords: file
40
+ Classifier: Development Status :: 4 - Beta
41
+ Classifier: Intended Audience :: Developers
42
+ Classifier: License :: OSI Approved :: BSD License
43
+ Classifier: Operating System :: OS Independent
44
+ Classifier: Programming Language :: Python :: 3.8
45
+ Classifier: Programming Language :: Python :: 3.9
46
+ Classifier: Programming Language :: Python :: 3.10
47
+ Classifier: Programming Language :: Python :: 3.11
48
+ Classifier: Programming Language :: Python :: 3.12
49
+ Requires-Python: >=3.8
50
+ Provides-Extra: abfs
51
+ Requires-Dist: adlfs; extra == 'abfs'
52
+ Provides-Extra: adl
53
+ Requires-Dist: adlfs; extra == 'adl'
54
+ Provides-Extra: arrow
55
+ Requires-Dist: pyarrow>=1; extra == 'arrow'
56
+ Provides-Extra: dask
57
+ Requires-Dist: dask; extra == 'dask'
58
+ Requires-Dist: distributed; extra == 'dask'
59
+ Provides-Extra: dev
60
+ Requires-Dist: pre-commit; extra == 'dev'
61
+ Requires-Dist: ruff; extra == 'dev'
62
+ Provides-Extra: dropbox
63
+ Requires-Dist: dropbox; extra == 'dropbox'
64
+ Requires-Dist: dropboxdrivefs; extra == 'dropbox'
65
+ Requires-Dist: requests; extra == 'dropbox'
66
+ Provides-Extra: entrypoints
67
+ Provides-Extra: full
68
+ Requires-Dist: adlfs; extra == 'full'
69
+ Requires-Dist: aiohttp!=4.0.0a0,!=4.0.0a1; extra == 'full'
70
+ Requires-Dist: dask; extra == 'full'
71
+ Requires-Dist: distributed; extra == 'full'
72
+ Requires-Dist: dropbox; extra == 'full'
73
+ Requires-Dist: dropboxdrivefs; extra == 'full'
74
+ Requires-Dist: fusepy; extra == 'full'
75
+ Requires-Dist: gcsfs; extra == 'full'
76
+ Requires-Dist: libarchive-c; extra == 'full'
77
+ Requires-Dist: ocifs; extra == 'full'
78
+ Requires-Dist: panel; extra == 'full'
79
+ Requires-Dist: paramiko; extra == 'full'
80
+ Requires-Dist: pyarrow>=1; extra == 'full'
81
+ Requires-Dist: pygit2; extra == 'full'
82
+ Requires-Dist: requests; extra == 'full'
83
+ Requires-Dist: s3fs; extra == 'full'
84
+ Requires-Dist: smbprotocol; extra == 'full'
85
+ Requires-Dist: tqdm; extra == 'full'
86
+ Provides-Extra: fuse
87
+ Requires-Dist: fusepy; extra == 'fuse'
88
+ Provides-Extra: gcs
89
+ Requires-Dist: gcsfs; extra == 'gcs'
90
+ Provides-Extra: git
91
+ Requires-Dist: pygit2; extra == 'git'
92
+ Provides-Extra: github
93
+ Requires-Dist: requests; extra == 'github'
94
+ Provides-Extra: gs
95
+ Requires-Dist: gcsfs; extra == 'gs'
96
+ Provides-Extra: gui
97
+ Requires-Dist: panel; extra == 'gui'
98
+ Provides-Extra: hdfs
99
+ Requires-Dist: pyarrow>=1; extra == 'hdfs'
100
+ Provides-Extra: http
101
+ Requires-Dist: aiohttp!=4.0.0a0,!=4.0.0a1; extra == 'http'
102
+ Provides-Extra: libarchive
103
+ Requires-Dist: libarchive-c; extra == 'libarchive'
104
+ Provides-Extra: oci
105
+ Requires-Dist: ocifs; extra == 'oci'
106
+ Provides-Extra: s3
107
+ Requires-Dist: s3fs; extra == 's3'
108
+ Provides-Extra: sftp
109
+ Requires-Dist: paramiko; extra == 'sftp'
110
+ Provides-Extra: smb
111
+ Requires-Dist: smbprotocol; extra == 'smb'
112
+ Provides-Extra: ssh
113
+ Requires-Dist: paramiko; extra == 'ssh'
114
+ Provides-Extra: test
115
+ Requires-Dist: aiohttp!=4.0.0a0,!=4.0.0a1; extra == 'test'
116
+ Requires-Dist: numpy; extra == 'test'
117
+ Requires-Dist: pytest; extra == 'test'
118
+ Requires-Dist: pytest-asyncio!=0.22.0; extra == 'test'
119
+ Requires-Dist: pytest-benchmark; extra == 'test'
120
+ Requires-Dist: pytest-cov; extra == 'test'
121
+ Requires-Dist: pytest-mock; extra == 'test'
122
+ Requires-Dist: pytest-recording; extra == 'test'
123
+ Requires-Dist: pytest-rerunfailures; extra == 'test'
124
+ Requires-Dist: requests; extra == 'test'
125
+ Provides-Extra: test-downstream
126
+ Requires-Dist: aiobotocore<3.0.0,>=2.5.4; extra == 'test-downstream'
127
+ Requires-Dist: dask-expr; extra == 'test-downstream'
128
+ Requires-Dist: dask[dataframe,test]; extra == 'test-downstream'
129
+ Requires-Dist: moto[server]<5,>4; extra == 'test-downstream'
130
+ Requires-Dist: pytest-timeout; extra == 'test-downstream'
131
+ Requires-Dist: xarray; extra == 'test-downstream'
132
+ Provides-Extra: test-full
133
+ Requires-Dist: adlfs; extra == 'test-full'
134
+ Requires-Dist: aiohttp!=4.0.0a0,!=4.0.0a1; extra == 'test-full'
135
+ Requires-Dist: cloudpickle; extra == 'test-full'
136
+ Requires-Dist: dask; extra == 'test-full'
137
+ Requires-Dist: distributed; extra == 'test-full'
138
+ Requires-Dist: dropbox; extra == 'test-full'
139
+ Requires-Dist: dropboxdrivefs; extra == 'test-full'
140
+ Requires-Dist: fastparquet; extra == 'test-full'
141
+ Requires-Dist: fusepy; extra == 'test-full'
142
+ Requires-Dist: gcsfs; extra == 'test-full'
143
+ Requires-Dist: jinja2; extra == 'test-full'
144
+ Requires-Dist: kerchunk; extra == 'test-full'
145
+ Requires-Dist: libarchive-c; extra == 'test-full'
146
+ Requires-Dist: lz4; extra == 'test-full'
147
+ Requires-Dist: notebook; extra == 'test-full'
148
+ Requires-Dist: numpy; extra == 'test-full'
149
+ Requires-Dist: ocifs; extra == 'test-full'
150
+ Requires-Dist: pandas; extra == 'test-full'
151
+ Requires-Dist: panel; extra == 'test-full'
152
+ Requires-Dist: paramiko; extra == 'test-full'
153
+ Requires-Dist: pyarrow; extra == 'test-full'
154
+ Requires-Dist: pyarrow>=1; extra == 'test-full'
155
+ Requires-Dist: pyftpdlib; extra == 'test-full'
156
+ Requires-Dist: pygit2; extra == 'test-full'
157
+ Requires-Dist: pytest; extra == 'test-full'
158
+ Requires-Dist: pytest-asyncio!=0.22.0; extra == 'test-full'
159
+ Requires-Dist: pytest-benchmark; extra == 'test-full'
160
+ Requires-Dist: pytest-cov; extra == 'test-full'
161
+ Requires-Dist: pytest-mock; extra == 'test-full'
162
+ Requires-Dist: pytest-recording; extra == 'test-full'
163
+ Requires-Dist: pytest-rerunfailures; extra == 'test-full'
164
+ Requires-Dist: python-snappy; extra == 'test-full'
165
+ Requires-Dist: requests; extra == 'test-full'
166
+ Requires-Dist: smbprotocol; extra == 'test-full'
167
+ Requires-Dist: tqdm; extra == 'test-full'
168
+ Requires-Dist: urllib3; extra == 'test-full'
169
+ Requires-Dist: zarr; extra == 'test-full'
170
+ Requires-Dist: zstandard; extra == 'test-full'
171
+ Provides-Extra: tqdm
172
+ Requires-Dist: tqdm; extra == 'tqdm'
173
+ Description-Content-Type: text/markdown
174
+
175
+ # filesystem_spec
176
+
177
+ [![PyPI version](https://badge.fury.io/py/fsspec.svg)](https://pypi.python.org/pypi/fsspec/)
178
+ [![Anaconda-Server Badge](https://anaconda.org/conda-forge/fsspec/badges/version.svg)](https://anaconda.org/conda-forge/fsspec)
179
+ ![Build](https://github.com/fsspec/filesystem_spec/workflows/CI/badge.svg)
180
+ [![Docs](https://readthedocs.org/projects/filesystem-spec/badge/?version=latest)](https://filesystem-spec.readthedocs.io/en/latest/?badge=latest)
181
+ [![PyPi downloads](https://img.shields.io/pypi/dm/fsspec?label=pypi%20downloads&style=flat)](https://pepy.tech/project/fsspec)
182
+
183
+ A specification for pythonic filesystems.
184
+
185
+ ## Install
186
+
187
+ ```bash
188
+ pip install fsspec
189
+ ```
190
+
191
+ would install the base fsspec. Various optionally supported features might require specification of custom
192
+ extra require, e.g. `pip install fsspec[ssh]` will install dependencies for `ssh` backends support.
193
+ Use `pip install fsspec[full]` for installation of all known extra dependencies.
194
+
195
+ Up-to-date package also provided through conda-forge distribution:
196
+
197
+ ```bash
198
+ conda install -c conda-forge fsspec
199
+ ```
200
+
201
+
202
+ ## Purpose
203
+
204
+ To produce a template or specification for a file-system interface, that specific implementations should follow,
205
+ so that applications making use of them can rely on a common behaviour and not have to worry about the specific
206
+ internal implementation decisions with any given backend. Many such implementations are included in this package,
207
+ or in sister projects such as `s3fs` and `gcsfs`.
208
+
209
+ In addition, if this is well-designed, then additional functionality, such as a key-value store or FUSE
210
+ mounting of the file-system implementation may be available for all implementations "for free".
211
+
212
+ ## Documentation
213
+
214
+ Please refer to [RTD](https://filesystem-spec.readthedocs.io/en/latest/?badge=latest)
215
+
216
+ ## Develop
217
+
218
+ fsspec uses GitHub Actions for CI. Environment files can be found
219
+ in the "ci/" directory. Note that the main environment is called "py38",
220
+ but it is expected that the version of python installed be adjustable at
221
+ CI runtime. For local use, pick a version suitable for you.
222
+
223
+ ```bash
224
+ # For a new environment (mamba / conda).
225
+ mamba create -n fsspec -c conda-forge python=3.9 -y
226
+ conda activate fsspec
227
+
228
+ # Standard dev test install.
229
+ pip install -e ".[dev,test]"
230
+
231
+ # Full tests except for downstream
232
+ pip install s3fs
233
+ pip uninstall s3fs
234
+ pip install -e .[dev,test_full]
235
+ pip install s3fs --no-deps
236
+ pytest -v
237
+
238
+ # Downstream tests.
239
+ sh install_s3fs.sh
240
+ # Windows powershell.
241
+ install_s3fs.sh
242
+ ```
243
+
244
+ ### Testing
245
+
246
+ Tests can be run in the dev environment, if activated, via ``pytest fsspec``.
247
+
248
+ The full fsspec suite requires a system-level docker, docker-compose, and fuse
249
+ installation. If only making changes to one backend implementation, it is
250
+ not generally necessary to run all tests locally.
251
+
252
+ It is expected that contributors ensure that any change to fsspec does not
253
+ cause issues or regressions for either other fsspec-related packages such
254
+ as gcsfs and s3fs, nor for downstream users of fsspec. The "downstream" CI
255
+ run and corresponding environment file run a set of tests from the dask
256
+ test suite, and very minimal tests against pandas and zarr from the
257
+ test_downstream.py module in this repo.
258
+
259
+ ### Code Formatting
260
+
261
+ fsspec uses [Black](https://black.readthedocs.io/en/stable) to ensure
262
+ a consistent code format throughout the project.
263
+ Run ``black fsspec`` from the root of the filesystem_spec repository to
264
+ auto-format your code. Additionally, many editors have plugins that will apply
265
+ ``black`` as you edit files. ``black`` is included in the ``tox`` environments.
266
+
267
+ Optionally, you may wish to setup [pre-commit hooks](https://pre-commit.com) to
268
+ automatically run ``black`` when you make a git commit.
269
+ Run ``pre-commit install --install-hooks`` from the root of the
270
+ filesystem_spec repository to setup pre-commit hooks. ``black`` will now be run
271
+ before you commit, reformatting any changed files. You can format without
272
+ committing via ``pre-commit run`` or skip these checks with ``git commit
273
+ --no-verify``.
@@ -0,0 +1,111 @@
1
+ fsspec/__init__.py,sha256=l9MJaNNV2d4wKpCtMvXDr55n92DkdrAayGy3F9ICjzk,1998
2
+ fsspec/_version.py,sha256=2pJh6qTjZ57pXQ4LXvxc8FwirydggDedF6HpXczhFxs,417
3
+ fsspec/archive.py,sha256=S__DzfZj-urAN3tp2W6jJ6YDiXG1fAl7FjvWUN73qIE,2386
4
+ fsspec/asyn.py,sha256=AOd2SXH2YPCaQL5jA6IegYevdMFkAnGD7Seh9DC2gSE,36404
5
+ fsspec/caching.py,sha256=FYBC7hYRmuuOyrlx1Jxm-9jwHX1MXg4aw7gTVqNsfCE,31576
6
+ fsspec/callbacks.py,sha256=BDIwLzK6rr_0V5ch557fSzsivCElpdqhXr5dZ9Te-EE,9210
7
+ fsspec/compression.py,sha256=RaO-LT02c3TgIgGQ6jQJOkdNC4xYPRQf6wTD1JboyUg,4860
8
+ fsspec/config.py,sha256=LF4Zmu1vhJW7Je9Q-cwkRc3xP7Rhyy7Xnwj26Z6sv2g,4279
9
+ fsspec/conftest.py,sha256=fVfx-NLrH_OZS1TIpYNoPzM7efEcMoL62reHOdYeFCA,1245
10
+ fsspec/core.py,sha256=Iln37fNZqjjk5vaDGU_0WWuwOxN1iVsQ6sDmCmuEvrs,23681
11
+ fsspec/dircache.py,sha256=YzogWJrhEastHU7vWz-cJiJ7sdtLXFXhEpInGKd4EcM,2717
12
+ fsspec/exceptions.py,sha256=pauSLDMxzTJMOjvX1WEUK0cMyFkrFxpWJsyFywav7A8,331
13
+ fsspec/fuse.py,sha256=66amOa6wdIbS0DMhhfAPUoOB37HPorfXD1izV0prmTY,10145
14
+ fsspec/generic.py,sha256=lg7kRrxRG0qTJH349TVhBdRl-7nRH6xYe7LVOIqfcfA,13589
15
+ fsspec/gui.py,sha256=k46F11VGBLlrliPj3XbxHKlVGByWoX67Ofmu9ijaPBQ,13929
16
+ fsspec/mapping.py,sha256=hSsiRo-dgAOj6oHf67bF3i11U4xREglXToHGUX4GhRY,8261
17
+ fsspec/parquet.py,sha256=ONG29Enesp0ToCH2bQ7zkpimnVIsZ2S4xCLj35-fY78,19455
18
+ fsspec/registry.py,sha256=Y5BrunGt1dHXi178Xr1bPIpyGgJrFbpjM4cfbRtIFkw,11277
19
+ fsspec/spec.py,sha256=kr1nzYa-5DoSXHbqvtGcs8_AX3v6AA9azbj7sqRMLms,66595
20
+ fsspec/transaction.py,sha256=xliRG6U2Zf3khG4xcw9WiB-yAoqJSHEGK_VjHOdtgo0,2398
21
+ fsspec/utils.py,sha256=YB6OYqbtMEsL1idePoGbmzzBxbU57KYEwyvzq9gj3xo,22978
22
+ fsspec/implementations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ fsspec/implementations/arrow.py,sha256=Y4F_IwWXuJI1mRO_c0_PI5o-Wp58RLmoiH_s-x88w4M,8631
24
+ fsspec/implementations/cache_mapper.py,sha256=W4wlxyPxZbSp9ItJ0pYRVBMh6bw9eFypgP6kUYuuiI4,2421
25
+ fsspec/implementations/cache_metadata.py,sha256=pcOJYcBQY5OaC7Yhw0F3wjg08QLYApGmoISCrbs59ks,8511
26
+ fsspec/implementations/cached.py,sha256=CuxQXQ6f-MRnLvsRzvauEhpmXEgicZZCfViKjIu1kn4,33029
27
+ fsspec/implementations/dask.py,sha256=CXZbJzIVOhKV8ILcxuy3bTvcacCueAbyQxmvAkbPkrk,4466
28
+ fsspec/implementations/data.py,sha256=LDLczxRh8h7x39Zjrd-GgzdQHr78yYxDlrv2C9Uxb5E,1658
29
+ fsspec/implementations/dbfs.py,sha256=cix9OYUveuSOx5UO5uRUwNUkYqjzyY0fkKnca1kTgZ0,15014
30
+ fsspec/implementations/dirfs.py,sha256=qrGXraUBsXUUGneLuhVddC6EfMaPBPA4iAb8M965yRA,11374
31
+ fsspec/implementations/ftp.py,sha256=rp6cTog8xqjDPlKdSLKcsyP7K593_ByMabxGbNSEpTo,11655
32
+ fsspec/implementations/git.py,sha256=vKGI-Vd5q4H2RrvhebkPc9NwlfkZ980OUGhebeCw-M0,4034
33
+ fsspec/implementations/github.py,sha256=0kIiKkeAaROuHgdWBHVQFrzJ2ZfoDgymCehL_kJXHYA,7565
34
+ fsspec/implementations/http.py,sha256=uRmhzPzmLV6yCLJtc9XvK-aiTX48k67ZakCmh4msCzE,29637
35
+ fsspec/implementations/jupyter.py,sha256=B2uj7OEm7yIk-vRSsO37_ND0t0EBvn4B-Su43ibN4Pg,3811
36
+ fsspec/implementations/libarchive.py,sha256=5_I2DiLXwQ1JC8x-K7jXu-tBwhO9dj7tFLnb0bTnVMQ,7102
37
+ fsspec/implementations/local.py,sha256=qc68w69-I7zqVO8njv_s-THVImwICOqxyt-_2EK1VLg,15042
38
+ fsspec/implementations/memory.py,sha256=-BpOVwaWyW2rDvxWIIcrZTNFAhvuG66VWeIM6vLwhkc,10134
39
+ fsspec/implementations/reference.py,sha256=3dPi55riD_cROCafpeoUm2Xbb1vpXpyQijl09f5jTsE,43871
40
+ fsspec/implementations/sftp.py,sha256=fMY9XZcmpjszQ2tCqO_TPaJesaeD_Dv7ptYzgUPGoO0,5631
41
+ fsspec/implementations/smb.py,sha256=IHuzqwbvwYNRmflTsawNL49QXn8GTzj10_bLpjQmtvs,10933
42
+ fsspec/implementations/tar.py,sha256=dam78Tp_CozybNqCY2JYgGBS3Uc9FuJUAT9oB0lolOs,4111
43
+ fsspec/implementations/webhdfs.py,sha256=Wm7zr0iX3SZx5LtWfJIo-5rkIaoEoWq_Ev87NWbUgug,16721
44
+ fsspec/implementations/zip.py,sha256=vc1fNz-yO8uWQ9bQUqBFYpTcgsfZQq9vDwwg4Aufs9Y,4417
45
+ fsspec/implementations/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
+ fsspec/implementations/tests/conftest.py,sha256=1p3yF1BPCy8lj8Vwvg5zAHGAJACD2Dx51cviJubdEB0,941
47
+ fsspec/implementations/tests/out.zip,sha256=K7nI_KEovxQcQLwhOSHb83HKIQ2Ab7CWMEt4OiFnFsc,313
48
+ fsspec/implementations/tests/test_archive.py,sha256=9pWhgBga42Z1S27aHxr22PaDAb5NqlaXB-gq3fYZ-EI,13135
49
+ fsspec/implementations/tests/test_arrow.py,sha256=xoNkq5dtNNPl0vGWboTuXerib8zGgCUMZdbwc5S91-4,7389
50
+ fsspec/implementations/tests/test_cached.py,sha256=ya5EZv_1MEO9IulzYQbBjLDzsBK7c7jRj8TZmeEMRU8,41286
51
+ fsspec/implementations/tests/test_common.py,sha256=utlYdFeCpqMUTgDkpcSRXidi6P2DTyBEIa67ZzxhrNE,1070
52
+ fsspec/implementations/tests/test_dask.py,sha256=k3DQdnrkj4h7j_yrGHKcZas_PDCy1rGDuWhcuDKvX8k,573
53
+ fsspec/implementations/tests/test_data.py,sha256=X__H0YXcjvfkzhk6eOSgC-8AC7Tw4hAJQk5I65YNJA0,541
54
+ fsspec/implementations/tests/test_dbfs.py,sha256=ApIfNFXMc9s5d9jKC7Feqvkn-PwBJ_HDtZ01Qp3mYtc,9230
55
+ fsspec/implementations/tests/test_dirfs.py,sha256=5cxkdmRQKj-OfuzyPjowQ1NKHIKqXiPg3H2GPwkK5zQ,18151
56
+ fsspec/implementations/tests/test_ftp.py,sha256=80SAo2CUkiZzeKoRdOrB1ASkdCaF92TkBc4wweRaMJY,4877
57
+ fsspec/implementations/tests/test_git.py,sha256=z0yHEFKOs9drVEW6p7oNW8JiYT547LK-waScXHRk9hc,2805
58
+ fsspec/implementations/tests/test_http.py,sha256=qdCQm2lYhJUEDucbVxxrNT5blGhMT75zZToLjxcLob0,17584
59
+ fsspec/implementations/tests/test_jupyter.py,sha256=J9PtxmvP6k1XEjf3jSb2H4plAR_-KkM6OeMa6OREhv8,1467
60
+ fsspec/implementations/tests/test_libarchive.py,sha256=mrDGim7iEbeHLAwWqBCCQ-dFAh69tIsZgdw6bt6W8kM,1009
61
+ fsspec/implementations/tests/test_local.py,sha256=U6a22-60PWY-zzmpoWHHZjpyjxIM-dRDSVKVoJ75chA,37887
62
+ fsspec/implementations/tests/test_memory.py,sha256=3ynT7VvXnADAiYIg25jodkdmw15D01AR6cI9bt_3Np8,9994
63
+ fsspec/implementations/tests/test_reference.py,sha256=6xyzvpUALerMoq2i40TIc1At0P5NvdJJ50QCP78s_I4,20354
64
+ fsspec/implementations/tests/test_sftp.py,sha256=ge-8AbdC0Uh-jXKNb-95oejQ0yHDu7J4dvUvZ_gAMjE,6888
65
+ fsspec/implementations/tests/test_smb.py,sha256=UdXAhvXhgfOTFCZix4fXL61z_41iX2xOyG0yt_BDa9M,4244
66
+ fsspec/implementations/tests/test_tar.py,sha256=y1SCEcikX4IqGnvXxf5jO9dqQaEJuEXEdWUMCyHEAyg,8180
67
+ fsspec/implementations/tests/test_webhdfs.py,sha256=ejepo2AenzjkhUN8RhIzVKomcJCKY70RUOqonVataw4,5547
68
+ fsspec/implementations/tests/test_zip.py,sha256=DqPSG3pz9N9SqR_eacdjf7MZBbp__kUZmIi0BpxDA0Y,3889
69
+ fsspec/implementations/tests/cassettes/test_dbfs/test_dbfs_file_listing.yaml,sha256=yfZ-v2I4kDt0TdkJH5gadGuipIp2KA_uyI_5Ne00CRo,2917
70
+ fsspec/implementations/tests/cassettes/test_dbfs/test_dbfs_mkdir.yaml,sha256=7T8gDSWxyxK8wZZWYYISMtQ7FOc6sPbqO6zh8bJzdgQ,14795
71
+ fsspec/implementations/tests/cassettes/test_dbfs/test_dbfs_read_pyarrow_non_partitioned.yaml,sha256=KGhUstli2rU5TLLicYU-EJl1fnbeIX_P0rkHSieq3Ns,34473
72
+ fsspec/implementations/tests/cassettes/test_dbfs/test_dbfs_read_range.yaml,sha256=Be-U9u0kll6UGewb1C6L4TRzzt_jZmgwjIBvWiGvmwo,11385
73
+ fsspec/implementations/tests/cassettes/test_dbfs/test_dbfs_read_range_chunked.yaml,sha256=9Hz7ZM5vQugl7rnMsH4DG3rvKHM0CwXirOn98otBiMs,5312412
74
+ fsspec/implementations/tests/cassettes/test_dbfs/test_dbfs_write_and_read.yaml,sha256=vJ7jt4z0nVC2RdV6Mf6YuPIpqRTf0-lt8rcW-XIdoUE,2033937
75
+ fsspec/implementations/tests/cassettes/test_dbfs/test_dbfs_write_pyarrow_non_partitioned.yaml,sha256=kgsDrsEp37W_UmfxB0xAqtzVhVMPsx_FK7ZbFrtZ4fc,22071
76
+ fsspec/implementations/tests/local/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
+ fsspec/implementations/tests/local/local_fixtures.py,sha256=S3b43BWTG9XdJEvVsGMrY5yz2FxAZl98ibYutvhvQ9Q,445
78
+ fsspec/implementations/tests/local/local_test.py,sha256=EH2K7je3hX9Zjfw0O3vZsIsBzz8jCjK-DXmVZeQdMxw,338
79
+ fsspec/implementations/tests/memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
+ fsspec/implementations/tests/memory/memory_fixtures.py,sha256=aguF4Ys0WpS9a_7Pr6oerKop-vYdVGs46D90pBMTzQ0,610
81
+ fsspec/implementations/tests/memory/memory_test.py,sha256=SHOtU7VXrAvU9S-7xs3TQPYP0GCPiEtwpGwPFUG51CI,347
82
+ fsspec/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
+ fsspec/tests/conftest.py,sha256=2NuVnYXXTtnSjIOj2ldmMt4e7OMU9ipeurXUzyP2vFU,6332
84
+ fsspec/tests/test_api.py,sha256=-BKN7SqnKg1mqqoygTiBzo5WJxh0WwqBu6maXCGXz2c,14595
85
+ fsspec/tests/test_async.py,sha256=FkB-gTa9MG11l_VqJf76ozx5XYNdDNv0CvM8ucdHoGI,6789
86
+ fsspec/tests/test_caches.py,sha256=J87WinPHtD2T0gxng7xj8NZWopF0C90aizpkH6oz_8U,8364
87
+ fsspec/tests/test_callbacks.py,sha256=hsA4Zu8W2KmxyyMHLDYBDvWoeum60HlQtaFMQndpZZs,2600
88
+ fsspec/tests/test_compression.py,sha256=uk4ufTZWeOa6OmwvPKb4DooEEwhKOwrWhnpqMUDdfTg,5218
89
+ fsspec/tests/test_config.py,sha256=30I5zD0YB1-C5XaVGanluOqrNmdJ1CMriYq1dNwPJOg,3476
90
+ fsspec/tests/test_core.py,sha256=IneIHjTCHXaQq_qwckHukLNghV6QLCyod_C3mNcgaIY,13725
91
+ fsspec/tests/test_downstream.py,sha256=6szA8FLQNQicRN2V04Yre0kUCQfBfwCYuZQtWsoSbeI,1026
92
+ fsspec/tests/test_file.py,sha256=FjQ-RNPZPh5Xqc_K2WVjMT0wcFOs9QxZjbDe4IXcuJQ,5426
93
+ fsspec/tests/test_fuse.py,sha256=lnhdCnIMqHx2pTKtPmVNHTRdV66J-6-16hzWohBoThs,3792
94
+ fsspec/tests/test_generic.py,sha256=00g4SJX_PnQjQ5QEiIMWEJyV8KcX5UEIv9ZO3lU5PjU,2824
95
+ fsspec/tests/test_gui.py,sha256=Edc4nF6uYd9eVArY8e1SmGWfxMx7sQBgJIInvRl-7RA,508
96
+ fsspec/tests/test_mapping.py,sha256=PbY0yIfbMc2kSP4WMTmhdGwG4Wn5tyuaPmaFhpdi13Y,6510
97
+ fsspec/tests/test_parquet.py,sha256=EJxpkCwSVbQqsAyGAkuT5TNNFmyLmjTiwT76E8MZTMw,4465
98
+ fsspec/tests/test_registry.py,sha256=ZGiGHTdRAV969xp8tqNgiyqz3tJZb5EDdlwEnGI8D-A,4200
99
+ fsspec/tests/test_spec.py,sha256=6Px_9qHY4o59ImyOxE8VleSkholPVo3V0F-04flfqTY,37341
100
+ fsspec/tests/test_utils.py,sha256=K1cPcMLS_o2NKcOuvNbPaYXCL5mecTFAyVOBgaXN5H8,14064
101
+ fsspec/tests/abstract/__init__.py,sha256=i1wcFixV6QhOwdoB24c8oXjzobISNqiKVz9kl2DvAY8,10028
102
+ fsspec/tests/abstract/common.py,sha256=1GQwNo5AONzAnzZj0fWgn8NJPLXALehbsuGxS3FzWVU,4973
103
+ fsspec/tests/abstract/copy.py,sha256=gU5-d97U3RSde35Vp4RxPY4rWwL744HiSrJ8IBOp9-8,19967
104
+ fsspec/tests/abstract/get.py,sha256=vNR4HztvTR7Cj56AMo7_tx7TeYz1Jgr_2Wb8Lv-UiBY,20755
105
+ fsspec/tests/abstract/mv.py,sha256=k8eUEBIrRrGMsBY5OOaDXdGnQUKGwDIfQyduB6YD3Ns,1982
106
+ fsspec/tests/abstract/put.py,sha256=7aih17OKB_IZZh1Mkq1eBDIjobhtMQmI8x-Pw-S_aZk,21201
107
+ fsspec/tests/data/listing.html,sha256=sktoHpvjpAkM9poKlcuO-nIb4ZFlGScTK1IG8Oe79v4,1592
108
+ fsspec-2024.5.0.dist-info/METADATA,sha256=J-1w8H3GdQqiQcHSukMpyQIN2gnFl7pDzHG7OrCQ1gY,11626
109
+ fsspec-2024.5.0.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
110
+ fsspec-2024.5.0.dist-info/licenses/LICENSE,sha256=LcNUls5TpzB5FcAIqESq1T53K0mzTN0ARFBnaRQH7JQ,1513
111
+ fsspec-2024.5.0.dist-info/RECORD,,
@@ -1,5 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: hatchling 1.24.2
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
-
@@ -1,167 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: fsspec
3
- Version: 2024.3.0
4
- Summary: File-system specification
5
- Home-page: https://github.com/fsspec/filesystem_spec
6
- Maintainer: Martin Durant
7
- Maintainer-email: mdurant@anaconda.com
8
- License: BSD
9
- Project-URL: Changelog, https://filesystem-spec.readthedocs.io/en/latest/changelog.html
10
- Project-URL: Documentation, https://filesystem-spec.readthedocs.io/en/latest/
11
- Keywords: file
12
- Classifier: Development Status :: 4 - Beta
13
- Classifier: Intended Audience :: Developers
14
- Classifier: License :: OSI Approved :: BSD License
15
- Classifier: Operating System :: OS Independent
16
- Classifier: Programming Language :: Python :: 3.8
17
- Classifier: Programming Language :: Python :: 3.9
18
- Classifier: Programming Language :: Python :: 3.10
19
- Classifier: Programming Language :: Python :: 3.11
20
- Requires-Python: >=3.8
21
- Description-Content-Type: text/markdown
22
- License-File: LICENSE
23
- Provides-Extra: abfs
24
- Requires-Dist: adlfs ; extra == 'abfs'
25
- Provides-Extra: adl
26
- Requires-Dist: adlfs ; extra == 'adl'
27
- Provides-Extra: arrow
28
- Requires-Dist: pyarrow >=1 ; extra == 'arrow'
29
- Provides-Extra: dask
30
- Requires-Dist: dask ; extra == 'dask'
31
- Requires-Dist: distributed ; extra == 'dask'
32
- Provides-Extra: devel
33
- Requires-Dist: pytest ; extra == 'devel'
34
- Requires-Dist: pytest-cov ; extra == 'devel'
35
- Provides-Extra: dropbox
36
- Requires-Dist: dropboxdrivefs ; extra == 'dropbox'
37
- Requires-Dist: requests ; extra == 'dropbox'
38
- Requires-Dist: dropbox ; extra == 'dropbox'
39
- Provides-Extra: entrypoints
40
- Provides-Extra: full
41
- Requires-Dist: adlfs ; extra == 'full'
42
- Requires-Dist: aiohttp !=4.0.0a0,!=4.0.0a1 ; extra == 'full'
43
- Requires-Dist: dask ; extra == 'full'
44
- Requires-Dist: distributed ; extra == 'full'
45
- Requires-Dist: dropbox ; extra == 'full'
46
- Requires-Dist: dropboxdrivefs ; extra == 'full'
47
- Requires-Dist: fusepy ; extra == 'full'
48
- Requires-Dist: gcsfs ; extra == 'full'
49
- Requires-Dist: libarchive-c ; extra == 'full'
50
- Requires-Dist: ocifs ; extra == 'full'
51
- Requires-Dist: panel ; extra == 'full'
52
- Requires-Dist: paramiko ; extra == 'full'
53
- Requires-Dist: pyarrow >=1 ; extra == 'full'
54
- Requires-Dist: pygit2 ; extra == 'full'
55
- Requires-Dist: requests ; extra == 'full'
56
- Requires-Dist: s3fs ; extra == 'full'
57
- Requires-Dist: smbprotocol ; extra == 'full'
58
- Requires-Dist: tqdm ; extra == 'full'
59
- Provides-Extra: fuse
60
- Requires-Dist: fusepy ; extra == 'fuse'
61
- Provides-Extra: gcs
62
- Requires-Dist: gcsfs ; extra == 'gcs'
63
- Provides-Extra: git
64
- Requires-Dist: pygit2 ; extra == 'git'
65
- Provides-Extra: github
66
- Requires-Dist: requests ; extra == 'github'
67
- Provides-Extra: gs
68
- Requires-Dist: gcsfs ; extra == 'gs'
69
- Provides-Extra: gui
70
- Requires-Dist: panel ; extra == 'gui'
71
- Provides-Extra: hdfs
72
- Requires-Dist: pyarrow >=1 ; extra == 'hdfs'
73
- Provides-Extra: http
74
- Requires-Dist: aiohttp !=4.0.0a0,!=4.0.0a1 ; extra == 'http'
75
- Provides-Extra: libarchive
76
- Requires-Dist: libarchive-c ; extra == 'libarchive'
77
- Provides-Extra: oci
78
- Requires-Dist: ocifs ; extra == 'oci'
79
- Provides-Extra: s3
80
- Requires-Dist: s3fs ; extra == 's3'
81
- Provides-Extra: sftp
82
- Requires-Dist: paramiko ; extra == 'sftp'
83
- Provides-Extra: smb
84
- Requires-Dist: smbprotocol ; extra == 'smb'
85
- Provides-Extra: ssh
86
- Requires-Dist: paramiko ; extra == 'ssh'
87
- Provides-Extra: tqdm
88
- Requires-Dist: tqdm ; extra == 'tqdm'
89
-
90
- # filesystem_spec
91
-
92
- [![PyPI version](https://badge.fury.io/py/fsspec.svg)](https://pypi.python.org/pypi/fsspec/)
93
- [![Anaconda-Server Badge](https://anaconda.org/conda-forge/fsspec/badges/version.svg)](https://anaconda.org/conda-forge/fsspec)
94
- ![Build](https://github.com/fsspec/filesystem_spec/workflows/CI/badge.svg)
95
- [![Docs](https://readthedocs.org/projects/filesystem-spec/badge/?version=latest)](https://filesystem-spec.readthedocs.io/en/latest/?badge=latest)
96
- [![PyPi downloads](https://img.shields.io/pypi/dm/fsspec?label=pypi%20downloads&style=flat)](https://pepy.tech/project/fsspec)
97
-
98
- A specification for pythonic filesystems.
99
-
100
- ## Install
101
-
102
- ```bash
103
- pip install fsspec
104
- ```
105
-
106
- would install the base fsspec. Various optionally supported features might require specification of custom
107
- extra require, e.g. `pip install fsspec[ssh]` will install dependencies for `ssh` backends support.
108
- Use `pip install fsspec[full]` for installation of all known extra dependencies.
109
-
110
- Up-to-date package also provided through conda-forge distribution:
111
-
112
- ```bash
113
- conda install -c conda-forge fsspec
114
- ```
115
-
116
-
117
- ## Purpose
118
-
119
- To produce a template or specification for a file-system interface, that specific implementations should follow,
120
- so that applications making use of them can rely on a common behaviour and not have to worry about the specific
121
- internal implementation decisions with any given backend. Many such implementations are included in this package,
122
- or in sister projects such as `s3fs` and `gcsfs`.
123
-
124
- In addition, if this is well-designed, then additional functionality, such as a key-value store or FUSE
125
- mounting of the file-system implementation may be available for all implementations "for free".
126
-
127
- ## Documentation
128
-
129
- Please refer to [RTD](https://filesystem-spec.readthedocs.io/en/latest/?badge=latest)
130
-
131
- ## Develop
132
-
133
- fsspec uses GitHub Actions for CI. Environment files can be found
134
- in the "ci/" directory. Note that the main environment is called "py38",
135
- but it is expected that the version of python installed be adjustable at
136
- CI runtime. For local use, pick a version suitable for you.
137
-
138
- ### Testing
139
-
140
- Tests can be run in the dev environment, if activated, via ``pytest fsspec``.
141
-
142
- The full fsspec suite requires a system-level docker, docker-compose, and fuse
143
- installation. If only making changes to one backend implementation, it is
144
- not generally necessary to run all tests locally.
145
-
146
- It is expected that contributors ensure that any change to fsspec does not
147
- cause issues or regressions for either other fsspec-related packages such
148
- as gcsfs and s3fs, nor for downstream users of fsspec. The "downstream" CI
149
- run and corresponding environment file run a set of tests from the dask
150
- test suite, and very minimal tests against pandas and zarr from the
151
- test_downstream.py module in this repo.
152
-
153
- ### Code Formatting
154
-
155
- fsspec uses [Black](https://black.readthedocs.io/en/stable) to ensure
156
- a consistent code format throughout the project.
157
- Run ``black fsspec`` from the root of the filesystem_spec repository to
158
- auto-format your code. Additionally, many editors have plugins that will apply
159
- ``black`` as you edit files. ``black`` is included in the ``tox`` environments.
160
-
161
- Optionally, you may wish to setup [pre-commit hooks](https://pre-commit.com) to
162
- automatically run ``black`` when you make a git commit.
163
- Run ``pre-commit install --install-hooks`` from the root of the
164
- filesystem_spec repository to setup pre-commit hooks. ``black`` will now be run
165
- before you commit, reformatting any changed files. You can format without
166
- committing via ``pre-commit run`` or skip these checks with ``git commit
167
- --no-verify``.
@@ -1,54 +0,0 @@
1
- fsspec/__init__.py,sha256=C8G5rqeNAes0NHYFhdxcw-ZMg4yDipqzSNc4NIR7uoc,2010
2
- fsspec/_version.py,sha256=QVWzhY41PrpKBh7tYv787nqgMKHneU9NthMGN7DV1HU,500
3
- fsspec/archive.py,sha256=S__DzfZj-urAN3tp2W6jJ6YDiXG1fAl7FjvWUN73qIE,2386
4
- fsspec/asyn.py,sha256=AOd2SXH2YPCaQL5jA6IegYevdMFkAnGD7Seh9DC2gSE,36404
5
- fsspec/caching.py,sha256=TrZqKo3drK9Afujg7grZRiLNcmgUr84rnvMcojzURnI,28819
6
- fsspec/callbacks.py,sha256=BDIwLzK6rr_0V5ch557fSzsivCElpdqhXr5dZ9Te-EE,9210
7
- fsspec/compression.py,sha256=Yyd8FXw2rwWRtVoRVah_yguv-J7BUcBo4yDu6Qt52a0,4859
8
- fsspec/config.py,sha256=LF4Zmu1vhJW7Je9Q-cwkRc3xP7Rhyy7Xnwj26Z6sv2g,4279
9
- fsspec/conftest.py,sha256=fVfx-NLrH_OZS1TIpYNoPzM7efEcMoL62reHOdYeFCA,1245
10
- fsspec/core.py,sha256=7uHmq_iHXK7Zg2JSOBMSFNlOsZFhc0sf-75QV34GYa4,22448
11
- fsspec/dircache.py,sha256=YzogWJrhEastHU7vWz-cJiJ7sdtLXFXhEpInGKd4EcM,2717
12
- fsspec/exceptions.py,sha256=xcS7LiRrQ748kvOB9mrUR14kpjNztrHgEkZWi9M-VaI,330
13
- fsspec/fuse.py,sha256=66amOa6wdIbS0DMhhfAPUoOB37HPorfXD1izV0prmTY,10145
14
- fsspec/generic.py,sha256=jIA7wBwtUzJhTth78PTzWbOBjGom2e4IjmQ_KBSlHPg,13575
15
- fsspec/gui.py,sha256=XKoXZpUhRE7jOhRCJH4-jRbKhVu56aS8h9tecvPD3nc,13932
16
- fsspec/mapping.py,sha256=pZAOn5_bUmSNWIHXVuqwj_H6tVtuQYqj85jBxvEpjWc,8261
17
- fsspec/parquet.py,sha256=qVxDhwc960SGOt5etcYAJxCr-7HQKP01687KpDR02Gw,19463
18
- fsspec/registry.py,sha256=VjnfGUg39lvlCDxOoGSeYm8UL12wZC5yQ5n8-W92eD0,11173
19
- fsspec/spec.py,sha256=3t96RgizRN_slIuHXnuR0bXjVUfBS1TfuDrEua4oQvE,66277
20
- fsspec/transaction.py,sha256=xliRG6U2Zf3khG4xcw9WiB-yAoqJSHEGK_VjHOdtgo0,2398
21
- fsspec/utils.py,sha256=kYBiiw_0AEFJPCYwYlbZ7QxiGwuXdaaxrK6KM3mcFak,23052
22
- fsspec/implementations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
- fsspec/implementations/arrow.py,sha256=_7TLuV6ZzNlpmUU_v6ud56u2wadzsKmY5qugPBxgMEs,8649
24
- fsspec/implementations/cache_mapper.py,sha256=iHgBA6gjzDJ7_mBboHFzpLTf55HP3UEwUOZ43xyUK4M,2429
25
- fsspec/implementations/cache_metadata.py,sha256=ZvyA7Y3KK-5Ct4E5pELzD6mH_5T03XqaKVT96qYDADU,8576
26
- fsspec/implementations/cached.py,sha256=CuxQXQ6f-MRnLvsRzvauEhpmXEgicZZCfViKjIu1kn4,33029
27
- fsspec/implementations/dask.py,sha256=CXZbJzIVOhKV8ILcxuy3bTvcacCueAbyQxmvAkbPkrk,4466
28
- fsspec/implementations/data.py,sha256=LDLczxRh8h7x39Zjrd-GgzdQHr78yYxDlrv2C9Uxb5E,1658
29
- fsspec/implementations/dbfs.py,sha256=cix9OYUveuSOx5UO5uRUwNUkYqjzyY0fkKnca1kTgZ0,15014
30
- fsspec/implementations/dirfs.py,sha256=inDIRSDPhI1_ud1MMBFrpZQ11VIAMJ_dZQtbE4V08Ng,11384
31
- fsspec/implementations/ftp.py,sha256=rp6cTog8xqjDPlKdSLKcsyP7K593_ByMabxGbNSEpTo,11655
32
- fsspec/implementations/git.py,sha256=vKGI-Vd5q4H2RrvhebkPc9NwlfkZ980OUGhebeCw-M0,4034
33
- fsspec/implementations/github.py,sha256=0kIiKkeAaROuHgdWBHVQFrzJ2ZfoDgymCehL_kJXHYA,7565
34
- fsspec/implementations/http.py,sha256=yr6t0OhLwZx_pvNQ05detAehcQjRw0Pg6XdwWv81jxk,29601
35
- fsspec/implementations/jupyter.py,sha256=B2uj7OEm7yIk-vRSsO37_ND0t0EBvn4B-Su43ibN4Pg,3811
36
- fsspec/implementations/libarchive.py,sha256=5_I2DiLXwQ1JC8x-K7jXu-tBwhO9dj7tFLnb0bTnVMQ,7102
37
- fsspec/implementations/local.py,sha256=nxiRKg9FAQHTQss9-ET8ZzDXPGhSOktgkxrg0ffMs2I,13454
38
- fsspec/implementations/memory.py,sha256=tlaGCekgZ2Z_9n8B6hsSpo6_V89PwjugkOmD445QrqE,9778
39
- fsspec/implementations/reference.py,sha256=3dPi55riD_cROCafpeoUm2Xbb1vpXpyQijl09f5jTsE,43871
40
- fsspec/implementations/sftp.py,sha256=fMY9XZcmpjszQ2tCqO_TPaJesaeD_Dv7ptYzgUPGoO0,5631
41
- fsspec/implementations/smb.py,sha256=_hR5MKwDUCi3u5zEzvnenIWRIGPMhuUryWRYvNSp0WE,10804
42
- fsspec/implementations/tar.py,sha256=dam78Tp_CozybNqCY2JYgGBS3Uc9FuJUAT9oB0lolOs,4111
43
- fsspec/implementations/webhdfs.py,sha256=wqVfno7z0TY1HepaIvKTUUcl_bi5NkV6qWsST8t_s7Y,16745
44
- fsspec/implementations/zip.py,sha256=vc1fNz-yO8uWQ9bQUqBFYpTcgsfZQq9vDwwg4Aufs9Y,4417
45
- fsspec/tests/abstract/__init__.py,sha256=i1wcFixV6QhOwdoB24c8oXjzobISNqiKVz9kl2DvAY8,10028
46
- fsspec/tests/abstract/common.py,sha256=1GQwNo5AONzAnzZj0fWgn8NJPLXALehbsuGxS3FzWVU,4973
47
- fsspec/tests/abstract/copy.py,sha256=gU5-d97U3RSde35Vp4RxPY4rWwL744HiSrJ8IBOp9-8,19967
48
- fsspec/tests/abstract/get.py,sha256=vNR4HztvTR7Cj56AMo7_tx7TeYz1Jgr_2Wb8Lv-UiBY,20755
49
- fsspec/tests/abstract/put.py,sha256=7aih17OKB_IZZh1Mkq1eBDIjobhtMQmI8x-Pw-S_aZk,21201
50
- fsspec-2024.3.0.dist-info/LICENSE,sha256=LcNUls5TpzB5FcAIqESq1T53K0mzTN0ARFBnaRQH7JQ,1513
51
- fsspec-2024.3.0.dist-info/METADATA,sha256=ZfIf4_I8apEnplZLQDcDvOCu7VdOr3YKXbzW-DNGZJY,6786
52
- fsspec-2024.3.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
53
- fsspec-2024.3.0.dist-info/top_level.txt,sha256=blt2pDrQDwN3Gklcw13CSPLQRd6aaOgJ8AxqrW395MI,7
54
- fsspec-2024.3.0.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- fsspec