File tree 6 files changed +9
-4
lines changed
6 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ Built-in Implementations
138
138
.. autoclass :: fsspec.implementations.arrow.ArrowFSWrapper
139
139
:members: __init__
140
140
141
- .. autoclass :: fsspec.implementations.hdfs .HadoopFileSystem
141
+ .. autoclass :: fsspec.implementations.arrow .HadoopFileSystem
142
142
:members: __init__
143
143
144
144
.. autoclass :: fsspec.implementations.dask.DaskWorkerFileSystem
Original file line number Diff line number Diff line change 39
39
"numpydoc" ,
40
40
]
41
41
42
+ numpydoc_show_class_members = False
43
+
42
44
# Add any paths that contain templates here, relative to this directory.
43
45
templates_path = ["_templates" ]
44
46
99
101
"pygit2" ,
100
102
"requests" ,
101
103
"smbprotocol" ,
104
+ "smbclient" ,
102
105
]
103
106
104
107
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ Other similar work
69
69
------------------
70
70
71
71
It might have been conceivable to reuse code in ``pyfilesystems ``, which has an established interface and several
72
- implementations of its own. However, it supports none of the :ref: ` highlight `, critical to
72
+ implementations of its own. However, it supports none of the ** critical ** features for
73
73
cloud and parallel access, and would not be easy to
74
74
coerce. Following on the success of ``s3fs `` and ``gcsfs ``, and their use within Dask, it seemed best to
75
75
have an interface as close to those as possible. See a
Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ def cache_info(self):
229
229
The statistics on the block cache.
230
230
231
231
Returns
232
- ----------
232
+ -------
233
233
NamedTuple
234
234
Returned directly from the LRU Cache used internally.
235
235
"""
Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ class CachingFileSystem(AbstractFileSystem):
26
26
directory with random hashes for the filenames. If no directory is given,
27
27
a temporary one is used, which should be cleaned up by the OS after the
28
28
process ends. The files themselves are sparse (as implemented in
29
- :class:`~fsspec.core.MMapCache`), so only the data which is accessed takes up space.
29
+ :class:`~fsspec.caching.MMapCache`), so only the data which is accessed
30
+ takes up space.
30
31
31
32
Restrictions:
32
33
Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ def __init__(
109
109
- a dict of protocol:filesystem, where each value is either a filesystem
110
110
instance, or a dict of kwargs that can be used to create in
111
111
instance for the given protocol
112
+
112
113
If this is given, remote_options and remote_protocol are ignored.
113
114
template_overrides : dict
114
115
Swap out any templates in the references file with these - useful for
You can’t perform that action at this time.
0 commit comments