Pyfilesystem2 over SMB using pysmb
Project description
Requirements
pyfilesystem2 |
|||
six |
|||
pysmb |
Installation
Install directly from PyPI, using pip
pip install fs.smbfs
Usage
Opener
Use fs.open_fs to open a filesystem with an SMB FS URL:
import fs
smb_fs = fs.open_fs('smb://username:password@SAMBAHOSTNAME:port/share')
The opener can use either an IPv4 address or a NetBIOS hostname, using the NetBIOS name service to find the other token.
The following parameters can be passed as URL parameters: timeout, name-port, direct-tcp.
Constructor
import fs.smbfs
smb_fs = fs.smbfs.SMBFS(
host, username='guest', passwd='', timeout=15,
port=139, name_port=137, direct_tcp=False
)
with each argument explained below:
- host
the name or IP address of the SMB server
- user
the username to connect with, defaults to ‘guest’ for anonymous connection.
- passwd
an optional password, defaults to ‘’ for anonymous connection.
- timeout
the timeout, in seconds, for NetBIOS and TCP requests.
- port
the port the SMB server is listening on.
- naming_port
the port the NetBIOS naming service is listening on
- direct_tcp
set to True if the server is accessible directly through TCP, leave to False for maximum compatibility
Once created, the SMBFS filesystem behaves like any other filesystem (see the Pyfilesystem2 documentation), except if it was open in the root directory of the server, in which case the root directory of the SMBFS instance will be read-only (since SMB clients cannot create new shares).
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.sshfs, Pyfilesystem2 over SSH using paramiko
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
Hashes for fs.smbfs-0.4.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ca9ec30ae917221d2a45432e2fea2c26c66edbbfa79d7284995b9425346eaf0 |
|
MD5 | b618e49555d681f1c84476c349734214 |
|
BLAKE2b-256 | af5f78074ec75bb4c0da6970f98e2d07c780cc75cff8d36b3300f0abd81d288a |