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

sftpwrapper

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sftpwrapper

A python program that facilitates uploading and downloading of files to/from an SFTP server

  • 0.2.2
  • PyPI
  • Socket score

Maintainers
2

sftpwrapper

Overview

A Python library that facilitates uploading and downloading of files to/from an SFTP server using either username/password or username/sshkey.

Install It

From PyPI ::

$ pip install sftpwrapper

New in v0.2.1

Defaults to port 22

Logging works with the new version of Paramiko

HostKey and Private Key support for connecting to SFTP server (have to provide the file path and encryption)

Code Example

from sftpwrapper import SftpWrapper

remote_connection = SftpWrapper(host, port)
remote_connection.host_connect(user, password)
upload_good = remote_connection.upload_stuffs(csv_name, remote + csv_name)
remote_connection.host_disconnect()

Dependencies

  • paramiko

License

MIT

Keywords

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