Pyfilesystem2 over SSH using paramiko
Project description
Requirements
pyfilesystem2 |
|||
six |
|||
paramiko |
|||
property-cached |
Installation
Install directly from PyPI, using pip
pip install fs.sshfs
Usage
Opener
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]/[directory]")
VThe following URL parameters are supported: timeout, keepalive.
Constructor
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, user=None, paswd=None, pkey=None, timeout=10, port=22,
keepalive=10, compress=False, config_path='~/.ssh/config'
)
with each argument explained below:
- host
the name or IP address of the SSH server
- user
the username to connect with, defaults to the current user.
- passwd
an optional password, used to connect directly to the server or to decrypt the public key, if any given.
- pkey
a paramiko.PKey object, a path, or a list of paths to an SSH key.
- timeout
the timeout, in seconds, for networking operations.
- port
the port the SSH server is listening on.
- keepalive
the interval of time between keepalive packets, in seconds. Set to 0 to disable.
- compress
set to True to compress the communications with the server
- config_path
the path to an OpenSSH configuration file.
Additional keyword arguments will be passed to the underlying connection call, taking precedence over implicitly derived arguments. Once created, the SSHFS filesystem behaves like any other filesystem (see the Pyfilesystem2 documentation).
Files
SSHFS.openbin has the following extra options that can be passed as keyword arguments to control the file buffering:
- prefetch
enabled by default, use a background thread to prefetch the content of a file opened in reading mode. Does nothing for files in writing mode.
- pipelined
enable pipelined mode, avoid waiting for server answer between two uploaded chunks. Does nothing for files in reading mode.
Configuration
SSHFS are aware of SSH config files and as such, one of the hosts in the configuration file can be provided as the host argument for the filesystem to connect to the server with the proper configuration values.
Feedback
Found a bug ? Have an enhancement request ? Head over to the GitHub issue tracker of the project if you need to report or ask something. If you are filling in on a bug, please include as much information as you can about the issue, and try to recreate the same bug in a simple, easily reproductible situation.
See also
fs, the core pyfilesystem2 library
fs.archive, enhanced archive filesystems for pyfilesystem2
fs.smbfs, Pyfilesystem2 over SMB using pysmb
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file fs.sshfs-0.11.1.tar.gz
.
File metadata
- Download URL: fs.sshfs-0.11.1.tar.gz
- Upload date:
- Size: 24.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d761c295d23ddcf13d4ed6351548c3bc8013f8a49aa01fcfce119fda54a4610 |
|
MD5 | 070f6ac822049a01b6f2c2b704d8b1bb |
|
BLAKE2b-256 | 629616df7308ffaa2cfe38575036a84ee8cec1e3e431cb1cf08f71d2ff3a1353 |
Provenance
File details
Details for the file fs.sshfs-0.11.1-py2.py3-none-any.whl
.
File metadata
- Download URL: fs.sshfs-0.11.1-py2.py3-none-any.whl
- Upload date:
- Size: 21.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 693c02875ca9d2a914fde67ffca4224b9fa3afff709f33c7e297b291a8fc10dd |
|
MD5 | c866b594f2f99831b92dbea8b3401011 |
|
BLAKE2b-256 | 954122eec4774f1d7d79c5539b56a2130608dd59246de90a6332750564d79095 |