IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> 「爬FTP数据并下载到本地(python)」 -> 正文阅读

[Python知识库]「爬FTP数据并下载到本地(python)」

?感觉网上很多的东西比较零零散散,根据这次的任务要求整合一个可以扫描网段的ip地址并爬取IP地址中可以匿名登陆FTP的数据(有原创有学习)

  1. 扫描一个网段,获取其中所有的开放FTP服务的机器的IP地址
  2. 依次获取每个FTP的文件目录内容,从每个FTP中下载一定量的文件
    import platform
    import sys
    import os
    import time
    import _thread
    import datetime
    from ftplib import FTP
    
    
    class FTP_P(FTP):
        def dirs(self, *args):
            cmd = 'LIST'
            templist = []
            func = None
            if args[-1:] and type(args[-1]) != type(''):
                args, func = args[:-1], args[-1]
            for arg in args:
                if arg:
                    cmd = cmd + (' ' + arg)
            self.retrlines(cmd, templist.append)
            return templist
    
    def download_single_url_ftp(stri):
        try:
            ftp = FTP_P()
            ftp.encoding = "utf-8"
            ftp.connect(stri,21)  # 连接的ftp sever和端口
            ftp.login("anonymous")  # 连接的用户名,密码
            # print(ftp.getwelcome()) #打印出欢迎信息
            ftp.cwd(r"/")  # 设置FTP当前操作的路径
            for i in ftp.dirs():
                print(i+'')
            ftpath = '/'
            localpath = 'D:/data/'
            ftpDownload(ftp,ftpath,localpath)
            ftp.quit()  # 退出ftp
        except (ConnectionRefusedError, TimeoutError, WindowsError) as e:
                print("{}的Ftp连接失败 {}".format(stri,str(e)))
                print()
                pass
        except BaseException as e:
                print("{}的Ftp连接失败 {}".format(stri,str(e)))
                print()
                pass
    
    
    def ftpDownload(ftp, ftpath, localpath):
        '''
        :param ftp: 登陆ftp返回的信息
        :param ftpath: ftp中的目标路径
        :param localpath: 存放下载文件的本地路径
        :return:
        '''
        print('Remote Path: {0}'.format(ftpath))
        if not os.path.exists(localpath):
            os.makedirs(localpath)#如果文件不在创建文件
        for file in ftp.nlst():
            print('file:', file)
            if len(ftp.nlst(file)) == 0:
                pass
            elif file == ftp.nlst(file)[0]:
                print('扫描到文件')
                ftpDownloadFile(ftp,file, localpath)
            else:
                print('扫描到文件夹')
                path = ftp.pwd() + '/' + file
                local = localpath+'/'+ file
                ftp.cwd(path)
                ftpDownload(ftp, path, local)#递归
                ftp.cwd('..')
        return True
    #python saomiao.py 149
    
    def ftpDownloadFile(ftp, ftpfile, localfile):
        bufsize = 1024
        path = os.path.join(localfile,ftpfile)
        with open(path, 'wb') as fid:
            print('正在下载:',ftpfile)
            ftp.retrbinary('RETR {0}'.format(ftpfile), fid.write, bufsize)  # 接收服务器文件并写入本地文件
            print('下载完毕。')
        return True
    
    
    def get_os():
        os = platform.system()
        if os == "Windows":
            return "n"
        else:
            return "c"
    
    def ping_ip(ip_str):
        cmd = ["ping", "-{op}".format(op=get_os()),
               "1", ip_str]
        output = os.popen(" ".join(cmd)).readlines()
    
        flag = False
        for line in list(output):
            if not line:
                continue
            if str(line).upper().find("TTL") >=0:#判断存活时间
                flag = True
                break
        if flag:
            print("*** *** *** ip: %s 可以ping通  *** *** ***"%(ip_str))
            download_single_url_ftp(ip_str)
    
    def find_ip(ip_prefix):
        for i in range(1,256):
            ip = ('%s.%s'%(ip_prefix,i))
            _thread.start_new_thread(ping_ip, (ip,))
            time.sleep(0.5)
            # ping_ip(ip)
    
    if __name__ == "__main__":
        startTime = datetime.datetime.now()
        print("start time %s"%(time.ctime()))
        net=sys.argv[1]
        args = "".join(("211.71."+net+".1"))#211.71.149
        ip_prefix = '.'.join(args.split('.')[:-1])#211.71.149
    
        find_ip(ip_prefix)
    
        endTime = datetime.datetime.now()
        print("end time %s"%(time.ctime()))
        print("total takes :",(endTime - startTime).seconds)
    
  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2021-11-19 17:35:18  更:2021-11-19 17:37:24 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 0:30:15-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码