Skip to main content

Pyfilesystem2 implementation for SSH/SFTP using paramiko

Project description

Source PyPI Travis Codecov Codacy Format License

Requirements

pyfilesystem2

PyPI fs

Source fs

License fs

six

PyPI six

Source six

License six

paramiko

PyPI paramiko

Source paramiko

License paramiko

Installation

Install directly from PyPI, using pip

pip install fs.sshfs

Usage

Use fs.open_fs to open a filesystem with an SSH FS URL:

import fs
my_fs = fs.open_fs("ssh://user:password@host:port/resource")

with the following optional parts:

  • user: defaults to the current user

  • password: if none provided, passwordless authentification methods are used (either using public keys or no authentification to connect to the host)

  • port: defaults to the usual SSH port (port 22)

  • resource: defaults to the root directory ("/")

For a more granular way of connecting to an SSH server, use the fs.sshfs.SSHFS constructor, which signature is:

from fs.sshfs import SSHFS
my_fs = SSHFS(
  host,            # The name or adress of the SSH server
  user=None,       # an optional username, defaults to the current user
  passwd=None,     # an optional password, not needed if using a public key or
                   #   an SSH server without authentification
  pkey=None,       # a `paramiko.PKey` object, used to connect with a
                   #   specific key (undiscoverable key, etc.)
  timeout=10,      # The timeout of the connection, in seconds
                   #   (None to disable)
  port=22,         # The port to which to connect, default to default SSH port
  keepalive=10,    # The interval of time between keepalive packets, in
                   #    seconds (0 to disable)
  compress=False   # Compress the communications with the server
)

Once created, the SSHFS filesystem behaves like any other filesystem (see the Pyfilesystem2 documentation)

See also

  • fs, the core pyfilesystem2 library

  • fs.archive, enhanced archive filesystems for pyfilesystem2

  • fs.proxy, miscellaneous proxy filesystems for pyfilesystem2

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fs.sshfs-0.2.2.tar.gz (9.8 kB view details)

Uploaded Source

Built Distribution

fs.sshfs-0.2.2-py2.py3-none-any.whl (11.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file fs.sshfs-0.2.2.tar.gz.

File metadata

  • Download URL: fs.sshfs-0.2.2.tar.gz
  • Upload date:
  • Size: 9.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for fs.sshfs-0.2.2.tar.gz
Algorithm Hash digest
SHA256 65124c18304e3090f042d18d79eb20995748fa79176f70ab1db6b00df65fc6d4
MD5 1c2b03a512796daaff257d16c63c7716
BLAKE2b-256 3a5dd5a6900aa77ea6b55faf237273c020c8b936ce2a69cf195b8d0d7c218f8b

See more details on using hashes here.

Provenance

File details

Details for the file fs.sshfs-0.2.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for fs.sshfs-0.2.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 be5c02e0353d7287a727ab3147ecfcf5a5805c8f0bd813be6297cb167105601b
MD5 58767cfcf09d578f9183faa3af15b35a
BLAKE2b-256 c9afb7147999dff53ce188322495f6eba8eff5b043d14f0c974553be2e1484fd

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page