Skip to content

Commit 0d6d6d7

Browse files
authored
Merge pull request #119 from iterative/fsspec
fs: implement a fsspec-based filesystem backend
2 parents 7f97a69 + 7a01785 commit 0d6d6d7

File tree

6 files changed

+759
-3
lines changed

6 files changed

+759
-3
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
python-version: ${{ matrix.pyv }}
2828

2929
- name: Install dependencies
30-
run: python -m pip install -e '.[tests]'
30+
run: python -m pip install -e '.[fsspec, tests]'
3131

3232
- name: Test
3333
run: python -m pytest -m "not manual"

pydrive2/fs/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from pydrive2.fs.spec import GDriveFileSystem
2+
3+
__all__ = ["GDriveFileSystem"]

0 commit comments

Comments
 (0)