Python实现FTP文件定时自动下载的步骤

作者:Peanut_C 时间:2022-04-13 02:07:14 

之前遇到技术问题总能在技术博客上得到启发,十分感谢各位的无私分享。而自己却很少发文,固然是水平有限,但也限制了知识积累和总结。今后多总结分享,回馈博客的同时也希望大家多多批评。

一、需求:

某数据公司每日15:00~17:00之间,在其FTP发布当日数据供下载,我方需及时下载当日数据至指定本地目录。

二、分析:

1、需实现FTP登陆、查询、下载功能;

解答:使用内置的ftplib模块中FTP类;

2、需判断文件是否下载;

解答:使用os模块中path.exists方法;

3、需判断在指定时间段内才执行下载任务;

解答:使用内置的time模块抓取当前时间,并与指定时间做比较;

4、需考虑日期切换问题;

解答:使用内置的time模块抓取当前日期,并与变量中的日期做比较。

三、代码实现


#!/usr/bin/env python
# _*_ coding:utf-8 _*_

'''
@Time  : 2019-11-11 13:30
@Author : Peanut_C
@FileName: ftp_auto_download.py
'''

import time
from ftplib import FTP
import os

remote_path = "/xxx/yy/z/" # 远端目录
begin_time = 1500 # 任务开始时间
end_time = 1700 # 任务结束时间

today = time.strftime("%Y%m%d") # 当天日期
today_file = today + 'test.txt' # 得到当天日期的目标文件名
remote_file = remote_path + today_file # 远端文件名
local_file = '\\\\local\\' + today + '\\' + today_file # 本地文件名
log_file = 'C:\\\\log\\ftp_log.txt'

def ftp_connect():
 """用于FTP连接"""
 ftp_server = 'w.x.y.z' # ftp站点对应的IP地址
 username = 'ftpuser' # 用户名
 password = 'ftppass' # 密码
 ftp = FTP()
 ftp.set_debuglevel(0) # 较高的级别方便排查问题
 ftp.connect(ftp_server, 21)
 ftp.login(username, password)
 return ftp

def remote_file_exists():
 """用于FTP站点目标文件存在检测"""
 ftp = ftp_connect()
 ftp.cwd(remote_path) # 进入目标目录
 remote_file_names = ftp.nlst() # 获取文件列表
 ftp.quit()
 if today_file in remote_file_names:
   return True
 else:
   return False

def download_file():
 """用于目标文件下载"""
 ftp = ftp_connect()
 bufsize = 1024
 fp = open(local_file, 'wb')
 ftp.set_debuglevel(0) # 较高的级别方便排查问题
 ftp.retrbinary('RETR ' + remote_file, fp.write, bufsize)
 fp.close()
 ftp.quit()

while True:
 if int(time.strftime("%H%M")) in range(begin_time, end_time): # 判断是否在执行时间范围
   if int(time.strftime("%Y%m%d")) - int(today) == 0: # 判断是否跨日期
     while not os.path.exists(local_file): # 判断本地是否已有文件
       if remote_file_exists(): # 判断远端是否已有文件
         download_file()
         with open(log_file, 'a') as f:
           f.write('\n' + time.strftime("%Y/%m/%d %H:%M:%S") + " 今日文件已下载!")
         time.sleep(60) # 下载完毕静默1分钟
       else:
         time.sleep(180)
         break # 注意,此处跳出循环重新判断日期,避免周末或当天没文件时陷入内层循环
     else:
       time.sleep(180)
   else:
     """如果跨日期,则根据当前日期,更新各文件日期"""
     today = time.strftime("%Y%m%d") # 当天日期
     today_file = today + 'test.txt' # 得到当天日期的目标文件名
     remote_file = remote_path + today_file # 远端文件名
     local_file = '\\\\local\\' + today + '\\' + today_file # 本地文件名
     with open(log_file, 'a') as f:
       f.write('\n' + time.strftime("%Y/%m/%d %H:%M:%S") + " 任务启动, 文件日期已更新。")
 else:
   time.sleep(1800)

四、运行情况

保存为pyw文件,任务在后台持续运行,不需要计划任务,省心省力。

不用下载标记,一则较为简洁,二则本地文件如果被人误删或移动可自动重新下载。

日志中,每天仅写入任务启动和文件已下载标志,并记录对应时间,如有需要可再添加。

希望能帮到有需要的朋友。

多多指教!

来源:https://www.cnblogs.com/baitme/p/11837017.html

标签:python,ftp,下载
0
投稿

猜你喜欢

  • asp制作验证码的方法

    2008-05-08 12:50:00
  • 超简单的Python HTTP服务

    2023-01-22 06:19:15
  • ASP控制每页打印行数实例

    2008-04-13 06:48:00
  • MSSQL存储过程解秘过程全析

    2010-07-05 08:49:00
  • 实例:arguments.callee的应用

    2009-04-20 12:38:00
  • python语言time库和datetime库基本使用详解

    2022-11-15 08:59:08
  • 在Dreamweaver中自动设置网页的水平线颜色

    2007-02-03 11:30:00
  • Oracle数据库的备份与恢复

    2010-07-28 12:52:00
  • MySQL应用技巧之存取权限

    2010-08-08 09:10:00
  • Python运用于数据分析的简单教程

    2023-08-14 07:49:13
  • 正则化DropPath/drop_path用法示例(Python实现)

    2022-12-01 21:58:34
  • python读取指定字节长度的文本方法

    2022-04-17 10:42:45
  • 如何获取当前 select 元素的值

    2010-03-29 13:07:00
  • Python爬虫实现百度图片自动下载

    2021-07-12 22:42:56
  • Python使用PyQt5/PySide2编写一个极简的音乐播放器功能

    2023-11-23 16:32:45
  • Python线程池thread pool创建使用及实例代码分享

    2022-02-26 00:43:35
  • 全文译稿 Windows Internet Explorer 8 性能优化白皮书

    2010-04-23 20:13:00
  • asp下用fso和ado.stream写xml文件的方法

    2011-04-07 10:55:00
  • 让我们走进ASP.NET世界

    2007-08-24 08:52:00
  • GO语言原生实现文件上传功能

    2023-10-17 08:29:39
  • asp之家 网络编程 m.aspxhome.com