Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pysmbc

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pysmbc

Python bindings for libsmbclient

  • 1.0.25.1
  • PyPI
  • Socket score

Maintainers
2

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

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc