ftp_client.py 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. import plac
  2. import pysftp
  3. from pathlib import Path
  4. from dataclasses import dataclass
  5. import warnings
  6. @dataclass
  7. class FtpConfig:
  8. server: str
  9. username: str
  10. password: str
  11. path: str
  12. class FtpClient:
  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. self.ftp_cfg = FtpConfig("ftp.global-cube.com", "u1339416173", "dihob#ratuy5kub%", "/")
  20. warnings.filterwarnings("ignore")
  21. @plac.pos("filename", "", type=str)
  22. def upload(self, filename="CARLO.csv"):
  23. cnopts = pysftp.CnOpts()
  24. cnopts.hostkeys = None
  25. with pysftp.Connection(
  26. self.ftp_cfg.server, username=self.ftp_cfg.username, password=self.ftp_cfg.password, cnopts=cnopts
  27. ) as ftp_conn:
  28. ftp_conn.cwd(self.ftp_cfg.path)
  29. ftp_conn.put(filename)
  30. # print(res)
  31. @plac.pos("path_from", "", type=str)
  32. @plac.pos("path_to", "", type=str)
  33. def download_dir(self, path_from="/server2019", path_to="./"):
  34. cnopts = pysftp.CnOpts()
  35. cnopts.hostkeys = None
  36. with pysftp.Connection(
  37. self.ftp_cfg.server, username=self.ftp_cfg.username, password=self.ftp_cfg.password, cnopts=cnopts
  38. ) as ftp_conn:
  39. ftp_conn.cwd(path_from)
  40. files_list = ftp_conn.listdir()
  41. print(files_list)
  42. ftp_conn.get_d(path_from, path_to)
  43. if __name__ == "__main__":
  44. # plac.Interpreter.call(ftp)
  45. FtpClient().download_dir()