前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >python ftp下载文件 脚本

python ftp下载文件 脚本

作者头像
用户5760343
发布2022-05-13 09:49:36
1.1K0
发布2022-05-13 09:49:36
举报
文章被收录于专栏:sktjsktj

------------------------------------------getfile.py

!/usr/local/bin/python

from ftplib import FTP # socket-based FTP tools from os.path import exists # file existence test

def getfile(file, site, dir, user=(), , verbose=True, refetch=False): """ fetch a file by ftp from a site/directory anonymous or real login, binary transfer """ if exists(file) and not refetch: if verbose: print(file, 'already fetched') else: if verbose: print('Downloading', file) local = open(file, 'wb') # local file of same name try: remote = FTP(site) # connect to FTP site remote.login(user) # anonymous=() or (name, pswd) remote.cwd(dir) remote.retrbinary('RETR ' + file, local.write, 1024) remote.quit() finally: local.close() # close file no matter what if verbose: print('Download done.') # caller handles exceptions

if name == 'main': from getpass import getpass file = 'monkeys.jpg' dir = '.' site = 'ftp.rmi.net' user = ('lutz', getpass('Pswd?')) getfile(file, site, dir, user)

---------------------------------getfilegui.py

from tkinter import Tk, mainloop from tkinter.messagebox import showinfo import getfile, os, sys, _thread # FTP getfile here, not socket from PP4E.Internet.Sockets.form import Form # reuse form tool in socket dir

class FtpForm(Form): def init(self): root = Tk() root.title(self.title) labels = ['Server Name', 'Remote Dir', 'File Name', 'Local Dir', 'User Name?', 'Password?'] Form.init(self, labels, root) self.mutex = _thread.allocate_lock() self.threads = 0

代码语言:javascript
复制
def transfer(self, filename, servername, remotedir, userinfo):
    try:
        self.do_transfer(filename, servername, remotedir, userinfo)
        print('%s of "%s" successful'  % (self.mode, filename))
    except:
        print('%s of "%s" has failed:' % (self.mode, filename), end=' ')
        print(sys.exc_info()[0], sys.exc_info()[1])
    self.mutex.acquire()
    self.threads -= 1
    self.mutex.release()

def onSubmit(self):
    Form.onSubmit(self)
    localdir   = self.content['Local Dir'].get()
    remotedir  = self.content['Remote Dir'].get()
    servername = self.content['Server Name'].get()
    filename   = self.content['File Name'].get()
    username   = self.content['User Name?'].get()
    password   = self.content['Password?'].get()
    userinfo   = ()
    if username and password:
        userinfo = (username, password)
    if localdir:
        os.chdir(localdir)
    self.mutex.acquire()
    self.threads += 1
    self.mutex.release()
    ftpargs = (filename, servername, remotedir, userinfo)
    _thread.start_new_thread(self.transfer, ftpargs)
    showinfo(self.title, '%s of "%s" started' % (self.mode, filename))

def onCancel(self):
    if self.threads == 0:
        Tk().quit()
    else:
        showinfo(self.title,
                 'Cannot exit: %d threads running' % self.threads)

class FtpGetfileForm(FtpForm): title = 'FtpGetfileGui' mode = 'Download' def do_transfer(self, filename, servername, remotedir, userinfo): getfile.getfile( filename, servername, remotedir, userinfo, verbose=False, refetch=True)

if name == 'main': FtpGetfileForm() mainloop()

-----------------------------------------------------Form.py from tkinter import * entrysize = 40

class Form: # add non-modal form box def init(self, labels, parent=None): # pass field labels list labelsize = max(len(x) for x in labels) + 2 box = Frame(parent) # box has rows, buttons box.pack(expand=YES, fill=X) # rows has row frames rows = Frame(box, bd=2, relief=GROOVE) # go=button or return key rows.pack(side=TOP, expand=YES, fill=X) # runs onSubmit method self.content = {} for label in labels: row = Frame(rows) row.pack(fill=X) Label(row, text=label, width=labelsize).pack(side=LEFT) entry = Entry(row, width=entrysize) entry.pack(side=RIGHT, expand=YES, fill=X) self.content[label] = entry Button(box, text='Cancel', command=self.onCancel).pack(side=RIGHT) Button(box, text='Submit', command=self.onSubmit).pack(side=RIGHT) box.master.bind('<Return>', (lambda event: self.onSubmit()))

代码语言:javascript
复制
def onSubmit(self):                                      # override this
    for key in self.content:                             # user inputs in
        print(key, '\t=>\t', self.content[key].get())    # self.content[k]

def onCancel(self):                                      # override if need
    Tk().quit()                                          # default is exit

class DynamicForm(Form): def init(self, labels=None): labels = input('Enter field names: ').split() Form.init(self, labels) def onSubmit(self): print('Field values...') Form.onSubmit(self) self.onCancel()

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2022-05-13,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • !/usr/local/bin/python
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档