Skip to main content

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


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.15.7.tar.bz2 (24.6 kB view details)

Uploaded Source

File details

Details for the file pysmbc-1.0.15.7.tar.bz2.

File metadata

  • Download URL: pysmbc-1.0.15.7.tar.bz2
  • Upload date:
  • Size: 24.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pysmbc-1.0.15.7.tar.bz2
Algorithm Hash digest
SHA256 414a37ee19c0ee62186b6a36b4ffe44496ca2e9b7eeff67043dd70f8ae3a92c7
MD5 f5538684792793fb53e1a1c9fdc6695d
BLAKE2b-256 66d436481c01d468db3f6d2c42a7a95de92b74f829dbb1662f5b8d18cc32aca1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page