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.9.tar.bz2
(19.6 kB
view details)
File details
Details for the file pysmbc-1.0.9.tar.bz2
.
File metadata
- Download URL: pysmbc-1.0.9.tar.bz2
- Upload date:
- Size: 19.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c57e227d30494b1cba79711e6ace506aa8e4a9f14b0fc8321d7f0a20a012fe7 |
|
MD5 | 32b995dbf8419128f652279881b9023d |
|
BLAKE2b-256 | 96b07b192fa742b0db3a43ec45ab05049df76f075ec36b9fe3f14e47cd6346c8 |