python camera


from paramiko import SSHClient

from scp import SCPClient

import os


ssh = SSHClient()

ssh.load_host_keys(os.path.expanduser(os.path.join("~", ".ssh", "known_hosts")))

ssh.connect('192.168.4.105', username='kri', password='')

#ssh.connect(server, username='username', password='password')

with SCPClient(ssh.get_transport()) as scp:

       scp.put('test.txt', 'test2.txt')



https://github.com/Gowresh7/V380_Python

https://www.folkstalk.com/tech/python-ip-camera-with-code-examples/#google_vignette