Python bindings for libsmbclient
Project description
This is a set of Python bindings for the libsmbclient library from the samba project.
>>> # Directory listing example:
>>> import smbc
>>> ctx = smbc.Context (auth_fn=my_auth_callback_fn)
>>> entries = ctx.opendir ("smb://SERVER").getdents ()
>>> for entry in entries:
... print entry
<smbc.Dirent object "music" (File share) at 0x7fbd7c42b3a0>
<smbc.Dirent object "IPC$" (IPC share) at 0x7fbd7c42b148>
<smbc.Dirent object "Charlie" (Printer share) at 0x7fbd7c42b3c8>
>>> d = ctx.open ("smb://SERVER/music")
>>> # Write file example:
>>> import smbc
>>> import os
>>> ctx = smbc.Context (auth_fn=my_auth_callback_fn)
>>> file = ctx.open ("smb://SERVER/music/file.txt", os.O_CREAT | os.O_WRONLY)
>>> file.write ("hello")
>>> # Read file example:
>>> import smbc
>>> ctx = smbc.Context (auth_fn=my_auth_callback_fn)
>>> file = ctx.open ("smb://SERVER/music/file.txt")
>>> print file.read()
hello
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
pysmbc-1.0.16.1.tar.bz2
(25.6 kB
view details)
File details
Details for the file pysmbc-1.0.16.1.tar.bz2.
File metadata
- Download URL: pysmbc-1.0.16.1.tar.bz2
- Upload date:
- Size: 25.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/2.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b43b5eb50f0bfc310447f90cc50d173fb446b28c5f147f5f6400dc46e9345859
|
|
| MD5 |
c6e0f8c502f0ac722a0d9f810590f17a
|
|
| BLAKE2b-256 |
c2017047c03606acfaa9628eb6d5bb830b1321043b7495467cc44dc242a2fa3b
|