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.14.tar.gz
(28.4 kB
view details)
File details
Details for the file pysmbc-1.0.14.tar.gz.
File metadata
- Download URL: pysmbc-1.0.14.tar.gz
- Upload date:
- Size: 28.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c496143d4db04c20728e157bf9a55f5aa957420372804a9a162a2925e977fd8d
|
|
| MD5 |
e86be74a0772901db66110d3313c8bf8
|
|
| BLAKE2b-256 |
cf32bf1e268a7f44e1e3a0b2d02c8b9ef25f5675c2be9c48f4dfaa84e601526b
|