ftp.py 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. import plac
  2. import pysftp
  3. import json
  4. from pathlib import Path
  5. from dataclasses import dataclass
  6. @dataclass
  7. class FtpConfig:
  8. server: str
  9. username: str
  10. password: str
  11. path: str
  12. class ftp:
  13. commands = ['upload', 'download_dir']
  14. def __init__(self):
  15. self.base_dir = Path(__file__).parent
  16. # cfg = json.load(open(self.base_dir.joinpath('ftp_config.json'), 'r'))
  17. # self.ftp_cfg = FtpConfig(**cfg)
  18. self.ftp_cfg = FtpConfig("ftp.global-cube.com", "p33781016-vm", "Gcbs12ma-vm2020!!", "/")
  19. @plac.pos('filename', '', type=str)
  20. def upload(self, filename='CARLO.csv'):
  21. file_path = Path(filename)
  22. with pysftp.Connection(self.ftp_cfg.server, self.ftp_cfg.username, self.ftp_cfg.password) as ftp_conn, open(file_path, 'rb') as f:
  23. ftp_conn.cwd(self.ftp_cfg.path)
  24. res = ftp_conn.storbinary(f'STOR {file_path.name}', f)
  25. print(res)
  26. @plac.pos('path_from', '', type=str)
  27. @plac.pos('path_to', '', type=str)
  28. def download_dir(self, path_from='/server2019', path_to='./'):
  29. cnopts = pysftp.CnOpts()
  30. cnopts.hostkeys = None
  31. with pysftp.Connection(self.ftp_cfg.server,
  32. username=self.ftp_cfg.username,
  33. password=self.ftp_cfg.password, cnopts=cnopts) as ftp_conn:
  34. ftp_conn.cwd(path_from)
  35. files_list = ftp_conn.listdir()
  36. print(files_list)
  37. ftp_conn.get_d(path_from, path_to)
  38. if __name__ == '__main__':
  39. # plac.Interpreter.call(ftp)
  40. ftp().download_dir()