ssh2-python icon indicating copy to clipboard operation
ssh2-python copied to clipboard

Python bindings for libssh2 C library.

Results 27 ssh2-python issues
Sort by recently updated
recently updated
newest added

### Bug reports ERROR: Command errored out with exit status 1: /Library/Frameworks/Python.framework/Versions/3.10/bin/python3 -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/vy/wtkzjlqx7kv442vcjx4mh9400000gn/T/pip-install-jlfhuw96/ssh2-python_a5fdf50f6e8f430f9993603a5bb86f32/setup.py'"'"'; __file__='"'"'/private/var/folders/vy/wtkzjlqx7kv442vcjx4mh9400000gn/T/pip-install-jlfhuw96/ssh2-python_a5fdf50f6e8f430f9993603a5bb86f32/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__)...

documentation

### Bug reports __Steps to reproduce:__ 1. Example code that produces error: Python 3.8.3 (default, Jun 18 2020, 20:51:40) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] on linux Type "help", "copyright",...

more info needed

Adds trace logging API. TODO - [ ] Enable/disable debug build of libssh2

Documentation says: > scp_send64(self, path, int mode, libssh2_uint64_t size, time_t mtime, time_t atime) But mtime and atime seem to be ignored. I tried copying from the examples, but it still...

C code reproduction needed

I noticed this has been added recently added to the libssh2 library and was wondering if it could be wrapped and accessible through this as well. Here is the pull...

enhancement
API implementation

### Bug reports __Steps to reproduce:__ 1. Example code that produces error. ``` import socket from ssh2.session import Session sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.connect(("dest.server", 22)) session = Session() session.handshake(sock) pkey...

C code reproduction needed

ssh2-python failed to install on windows 11 python 3.11, python 3.10 install succeded Steps to reproduce: pip install ssh2-python `Building wheels for collected packages: ssh2-python Building wheel for ssh2-python (setup.py)...

libssh2 has to be updated to the latest version in order to fix a bug mentioned in https://github.com/ParallelSSH/ssh2-python/issues/178 The fix on the libssh2 side was mentioned here: https://github.com/libssh2/libssh2/issues/764 BONUS: Add...

### Bug reports Hello, I'm getting a core dump when calling the `methods()` method of a session object. __Steps to reproduce:__ 1. Example code that produces error. ```python from ssh2...