ftp.py 801 B

123456789101112131415161718192021222324252627
  1. import plac
  2. from ftplib import FTP
  3. import json
  4. from pathlib import Path
  5. from collections import namedtuple
  6. FtpConfig = namedtuple('FtpConfig', 'server username password path')
  7. class ftp:
  8. commands = ['upload']
  9. def __init__(self):
  10. cfg = json.load(open('ftp_config.json', 'r'))
  11. self.ftp_cfg = FtpConfig(**cfg)
  12. @plac.pos('filename', '', type=str)
  13. def upload(self, filename='CARLO.csv'):
  14. file_path = Path(filename)
  15. with FTP(self.ftp_cfg.server, self.ftp_cfg.username, self.ftp_cfg.password) as ftp_conn, open(file_path, 'rb') as f:
  16. ftp_conn.cwd(self.ftp_cfg.path)
  17. res = ftp_conn.storbinary(f'STOR {file_path.name}', f)
  18. print(res)
  19. if __name__ == '__main__':
  20. plac.Interpreter.call(ftp)