I am trying to build ssh module(like paramiko) for Python-3.11.5, but I find many dependencies among modules, for ex: paramiko requires crypto module which requires a rust compiler, ssh-python requires kerberos, and so on. Is there any pure python package for ssh with no dependency. Any help would be appreciated.
I am on linux. I was just looking for a light weight ssh package with minimal functionality(send and receive would cover most of my cases) and no dependencies on other packages. Thank you Barry, I will go with the default packages available.