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.dropbox

try:
    from dropboxfs.dropboxfs import DropboxFS
except ImportError:
    DropboxFS = None

from ._pyfilesystem2 import PyFilesystem2FilesSource


[docs]class DropboxFilesSource(PyFilesystem2FilesSource): plugin_type = 'dropbox' required_module = DropboxFS required_package = "fs.dropboxfs" def _open_fs(self, user_context): props = self._serialization_props(user_context) handle = DropboxFS(**props) return handle
__all__ = ('DropboxFilesSource',)