pysftp-extension


Namepysftp-extension JSON
Version 0.2.14 PyPI version JSON
download
home_pagehttps://github.com/achillis2/pysftp_extension
SummaryA friendly face on SFTP
upload_time2023-09-24 04:27:22
maintainer
docs_urlNone
authorDing Li
requires_python
licenseBSD
keywords sftp ssh ftp internet
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            pysftp Exension
================

This package extends pysftp by providing the disabled_algorithms option at connection. It solves the problem in this post https://stackoverflow.com/questions/70812056/pysftp-fails-with-authentication-failed-and-server-did-not-send-a-server-sig.

pysftp is a simple interface to SFTP.  The module offers high level abstractions and
task based routines to handle your SFTP needs.  Checkout the Cook Book, in the
docs, to see what pysftp can do for you.

Example
-------

    import pysftp_extension

    with pysftp_extension.Connection('hostname', username='me', password='secret', disabled_algorithms=dict(pubkeys=["rsa-sha2-512", "rsa-sha2-256"])) as sftp:
        with sftp.cd('public'):             # temporarily chdir to public  
            sftp.put('/my/local/filename')  # upload file to public/ on remote
            sftp.get('remote_file')         # get a remote file


Supports
--------
Tested on Python 2.7, 3.2, 3.3, 3.4

.. image:: https://drone.io/bitbucket.org/dundeemt/pysftp/status.png
    :target: https://drone.io/bitbucket.org/dundeemt/pysftp/latest
    :alt: Build Status


* Project:  https://github.com/achillis2/pysftp_extension
* Download: https://github.com/achillis2/pysftp_extension
* Documentation: http://pysftp.rtfd.org/

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/achillis2/pysftp_extension",
    "name": "pysftp-extension",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "sftp ssh ftp internet",
    "author": "Ding Li",
    "author_email": "dingli@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/22/1d/70bfea99f87d333338fa3cdf4f9d80dad691604970abb4c73355bc54398c/pysftp_extension-0.2.14.tar.gz",
    "platform": "any",
    "description": "pysftp Exension\n================\n\nThis package extends pysftp by providing the disabled_algorithms option at connection. It solves the problem in this post https://stackoverflow.com/questions/70812056/pysftp-fails-with-authentication-failed-and-server-did-not-send-a-server-sig.\n\npysftp is a simple interface to SFTP.  The module offers high level abstractions and\ntask based routines to handle your SFTP needs.  Checkout the Cook Book, in the\ndocs, to see what pysftp can do for you.\n\nExample\n-------\n\n    import pysftp_extension\n\n    with pysftp_extension.Connection('hostname', username='me', password='secret', disabled_algorithms=dict(pubkeys=[\"rsa-sha2-512\", \"rsa-sha2-256\"])) as sftp:\n        with sftp.cd('public'):             # temporarily chdir to public  \n            sftp.put('/my/local/filename')  # upload file to public/ on remote\n            sftp.get('remote_file')         # get a remote file\n\n\nSupports\n--------\nTested on Python 2.7, 3.2, 3.3, 3.4\n\n.. image:: https://drone.io/bitbucket.org/dundeemt/pysftp/status.png\n    :target: https://drone.io/bitbucket.org/dundeemt/pysftp/latest\n    :alt: Build Status\n\n\n* Project:  https://github.com/achillis2/pysftp_extension\n* Download: https://github.com/achillis2/pysftp_extension\n* Documentation: http://pysftp.rtfd.org/\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "A friendly face on SFTP",
    "version": "0.2.14",
    "project_urls": {
        "Download": "https://pypi.python.org/pypi/pysftp_extension",
        "Homepage": "https://github.com/achillis2/pysftp_extension"
    },
    "split_keywords": [
        "sftp",
        "ssh",
        "ftp",
        "internet"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "221d70bfea99f87d333338fa3cdf4f9d80dad691604970abb4c73355bc54398c",
                "md5": "f9add62e1d6a1aa15209e76d35084a97",
                "sha256": "76ccbc42c1806e5a23e335447d5e71173addc3a078571a04bfb122b41807df7b"
            },
            "downloads": -1,
            "filename": "pysftp_extension-0.2.14.tar.gz",
            "has_sig": false,
            "md5_digest": "f9add62e1d6a1aa15209e76d35084a97",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 38649,
            "upload_time": "2023-09-24T04:27:22",
            "upload_time_iso_8601": "2023-09-24T04:27:22.624702Z",
            "url": "https://files.pythonhosted.org/packages/22/1d/70bfea99f87d333338fa3cdf4f9d80dad691604970abb4c73355bc54398c/pysftp_extension-0.2.14.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-24 04:27:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "achillis2",
    "github_project": "pysftp_extension",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "tox": true,
    "lcname": "pysftp-extension"
}
        
Elapsed time: 0.11721s