I have requirement like while sending data to sever using SFTP i need to use crccheck/cheksum for data integrity. I am newbie to python. For SFTP file transfer i am using pysftp module and using put() i am transferring one by one file to server.
sftp.put(localpath=newlocalPath,remotepath=newremotePath,preserve_mtime=True)
So to check unsuccessful transfer, corrupted data transferred i need to implement CRCCheck. Is there any library for that in python? Any help please..