https://github.com/digitalslidearchive/girder-client-mount
https://github.com/digitalslidearchive/girder-client-mount
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/digitalslidearchive/girder-client-mount
- Owner: DigitalSlideArchive
- License: apache-2.0
- Created: 2021-06-02T17:30:24.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-04-01T15:24:04.000Z (about 2 years ago)
- Last Synced: 2025-01-28T21:47:55.444Z (over 1 year ago)
- Language: Python
- Size: 59.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
===================
Girder Client Mount
===================
Mount a Girder server as a local FUSE mount.
Installation
------------
You must have Python >= 3.8 and libfuse installed.
Use pip ::
pip install girder-client-mount
Example Usage
-------------
Create a mount directory (e.g., ``mkdir /mnt/remote_girder``), then mount it via ::
girder-client-mount /mnt/remote_girder --username= --password= --apiurl=https://data.kitware.com/api/v1
You can optionally use diskcache to persist data locally. Add appropriate options (see help for more details) ::
girder-client-mount /mnt/remote_girder --username= --password= --apiurl=https://data.kitware.com/api/v1 --options diskcache
On Windows, specify an available drive letter for the mount. You probably will need to also set an environment variable to point to a libfuse compatible dll. ::
set FUSE_LIBRARY_PATH=c:\Program Files\Dokan\DokanLibrary-1.5.0\dokanfuse1.dll
girder-client-mount A --username= --password= --apiurl=https://data.kitware.com/api/v1