I am using Paramiko in my python code (for sftp). Everything works fine except that everytime I import or call a paramiko function. This warning would show up:
C
Easiest way would be as the warnings module suggests here:
with warnings.catch_warnings(): warnings.simplefilter("ignore") import paramiko