From today’s spreadsheet: countries_2020-03-28_07-38
NY Times is starting to use rates as well Some U.S. Cities Could Have Coronavirus Outbreaks Worse Than Wuhan’s
Interesting chat as an expert(?) on developing code in the future
Working on the ssh transfer in code using paramiko. This seems to be a good one.
It works!
import paramiko filename = "C:/Development/Sandboxes/DaysToZero/data/external/countries_2020-03-28_07-38.xlsx" remote_dir = "/home/some_place.com/d20/countries_2020-03-28_07-38.xlsx" client = paramiko.SSHClient() client.set_missing_host_key_policy(paramiko.AutoAddPolicy()) client.connect('ssh.some_place.com', username='some_login', password='some_password') ftp_client = client.open_sftp() #l = ftp_client.listdir() #print(l) ftp_client.put(filename, remote_dir) ftp_client.close() client.close()
I should try to put all the pieces together, but I am just done, and am stress-scrolling through Twitter, which really doesn’t help. Getting away from the computer for a while