pysmbc 1.0.12
Python bindings for libsmbclient
Downloads ↓ | Package Documentation
Latest Version: 1.0.13
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
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| pysmbc-1.0.12.tar.bz2 (md5, pgp) | Source | 2011-12-09 | 20KB | 311 | |
- Author: ['Tim Waugh <twaugh@redhat.com>', 'Tsukasa Hamano <hamano@osstech.co.jp>']
- Documentation: pysmbc package documentation
- Home Page: http://cyberelk.net/tim/software/pysmbc/
- Download URL: http://cyberelk.net/tim/data/pysmbc/
- License: GPLv2+
- Categories
- Package Index Owner: twaugh, hamano
- Package Index Maintainer: hamano
- DOAP record: pysmbc-1.0.12.xml
