Warning

This document is for an old release of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.

Source code for galaxy.files.sources.ssh

try:
    from fs.sshfs import SSHFS
except ImportError:
    SSHFS = None

from ._pyfilesystem2 import PyFilesystem2FilesSource


[docs]class SshFilesSource(PyFilesystem2FilesSource): plugin_type = "ssh" required_module = SSHFS required_package = "fs.sshfs" def _open_fs(self, user_context): props = self._serialization_props(user_context) path = props.pop("path") handle = SSHFS(**props) if path: handle = handle.opendir(path) return handle
__all__ = ("SshFilesSource",)