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.22.tar.gz
(29.4 kB
view details)
File details
Details for the file pysmbc-1.0.22.tar.gz
.
File metadata
- Download URL: pysmbc-1.0.22.tar.gz
- Upload date:
- Size: 29.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/2.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9ce6f8cf17a2e7867b3cd87b2a47eca04ed955f37937b617088698c06177eba |
|
MD5 | 5531869e3d3e9a4fe80f34a43d13551e |
|
BLAKE2b-256 | 30f9c4ff99b7dc00d775bd53ec94d51875fa4b06767215295359133d08e651fc |