Python使用Flask框架同时上传多个文件的方法


Posted in Python onMarch 21, 2015

本文实例讲述了Python使用Flask框架同时上传多个文件的方法,分享给大家供大家参考。具体如下:

下面的演示代码带有详细的html页面和python代码

import os
# We'll render HTML templates and access data sent by POST
# using the request object from flask. Redirect and url_for
# will be used to redirect the user once the upload is done
# and send_from_directory will help us to send/show on the
# browser the file that the user just uploaded
from flask import Flask, render_template, request, redirect, url_for, send_from_directory
from werkzeug import secure_filename
# Initialize the Flask application
app = Flask(__name__)
# This is the path to the upload directory
app.config['UPLOAD_FOLDER'] = 'uploads/'
# These are the extension that we are accepting to be uploaded
app.config['ALLOWED_EXTENSIONS'] = set(['txt', 'pdf', 'png', 'jpg', 'jpeg', 'gif'])
# For a given file, return whether it's an allowed type or not
def allowed_file(filename):
  return '.' in filename and \
      filename.rsplit('.', 1)[1] in app.config['ALLOWED_EXTENSIONS']
# This route will show a form to perform an AJAX request
# jQuery is loaded to execute the request and update the
# value of the operation
@app.route('/')
def index():
  return render_template('index.html')
# Route that will process the file upload
@app.route('/upload', methods=['POST'])
def upload():
  # Get the name of the uploaded files
  uploaded_files = request.files.getlist("file[]")
  filenames = []
  for file in uploaded_files:
    # Check if the file is one of the allowed types/extensions
    if file and allowed_file(file.filename):
      # Make the filename safe, remove unsupported chars
      filename = secure_filename(file.filename)
      # Move the file form the temporal folder to the upload
      # folder we setup
      file.save(os.path.join(app.config['UPLOAD_FOLDER'],filename))
      # Save the filename into a list, we'll use it later
      filenames.append(filename)
      # Redirect the user to the uploaded_file route, which
      # will basicaly show on the browser the uploaded file
  # Load an html page with a link to each uploaded file
  return render_template('upload.html', filenames=filenames)
 
# This route is expecting a parameter containing the name
# of a file. Then it will locate that file on the upload
# directory and show it on the browser, so if the user uploads
# an image, that image is going to be show after the upload
@app.route('/uploads/<filename>')
def uploaded_file(filename):
  return send_from_directory(app.config['UPLOAD_FOLDER'],
                filename)
if __name__ == '__main__':
  app.run(
    host="0.0.0.0",
    port=int("80"),
    debug=True
  )

index.html代码

<!DOCTYPE html>
<html lang="en">
 <head>
  <link href="bootstrap/3.0.0/css/bootstrap.min.css"
  rel="stylesheet">
 </head>
 <body>
  <div class="container">
   <div class="header">
    <h3 class="text-muted">How To Upload a File.</h3>
   </div>
   <hr/>
   <div>
   <form action="upload" method="post" enctype="multipart/form-data">
   <input type="file" multiple="" name="file[]" class="span3" /><br/>
    <input type="submit" value="Upload" class="span2">
   </form>
   </div>
  </div>
 </body>
</html>

upload.html页面:

<!DOCTYPE html>
<html lang="en">
 <head>
  <link href="bootstrap/3.0.0/css/bootstrap.min.css"
     rel="stylesheet">
 </head>
 <body>
  <div class="container">
   <div class="header">
    <h3 class="text-muted">Uploaded files</h3>
   </div>
   <hr/>
   <div>
   This is a list of the files you just uploaded, click on them to load/download them
   <ul>
    {% for file in filenames %}
     <li><a href="{{url_for('uploaded_file', filename=file)}}">{{file}}</a></li>
    {% endfor %}
   </ul>
   </div>
   <div class="header">
    <h3 class="text-muted">Code to manage a Upload</h3>
   </div>
   <hr/>  
<pre>
@app.route('/upload', methods=['POST'])
def upload():
  # Get the name of the uploaded file
  #file = request.files['file']
  uploaded_files = request.files.getlist("file[]")
  filenames = []
  for file in uploaded_files:
    # Check if the file is one of the allowed types/extensions
    if file and allowed_file(file.filename):
      # Make the filename safe, remove unsupported chars
      filename = secure_filename(file.filename)
      # Move the file form the temporal folder to the upload
      # folder we setup
      file.save(os.path.join(app.config['UPLOAD_FOLDER'], filename))
      filenames.append(filename)
      # Redirect the user to the uploaded_file route, which
      # will basicaly show on the browser the uploaded file
  # Load an html page with a link to each uploaded file
  return render_template('upload.html', filenames=filenames)
</pre>
   </div>
  </div>
 </body>
</html>

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
Python描述器descriptor详解
Feb 03 Python
python+requests+unittest API接口测试实例(详解)
Jun 10 Python
python timestamp和datetime之间转换详解
Dec 11 Python
python的Crypto模块实现AES加密实例代码
Jan 22 Python
python与字符编码问题
May 24 Python
python实现点击按钮修改数据的方法
Jul 17 Python
python处理excel绘制雷达图
Oct 18 Python
Python操作MongoDb数据库流程详解
Mar 05 Python
如何使用python切换hosts文件
Apr 29 Python
Python爬虫requests库多种用法实例
May 28 Python
Pandas缺失值2种处理方式代码实例
Jun 13 Python
分享几种python 变量合并方法
Mar 20 Python
python中Flask框架简单入门实例
Mar 21 #Python
python中django框架通过正则搜索页面上email地址的方法
Mar 21 #Python
Python去除列表中重复元素的方法
Mar 20 #Python
python在windows下实现ping操作并接收返回信息的方法
Mar 20 #Python
Python实现微信公众平台自定义菜单实例
Mar 20 #Python
python在windows和linux下获得本机本地ip地址方法小结
Mar 20 #Python
python使用三角迭代计算圆周率PI的方法
Mar 20 #Python
You might like
php中全局变量global的使用演示代码
2011/05/18 PHP
php中base64_decode与base64_encode加密解密函数实例
2014/11/24 PHP
php获取文章上一页与下一页的方法
2014/12/01 PHP
windows下配置php5.5开发环境及开发扩展
2014/12/25 PHP
CI分页类首页、尾页不显示的解决方法
2016/03/28 PHP
php+redis实现商城秒杀功能
2020/11/19 PHP
extjs 学习笔记 四 带分页的grid
2009/10/20 Javascript
jquery实现多行文字图片滚动效果示例代码
2014/10/10 Javascript
解决js下referer兼容各大浏览器的方法
2014/11/03 Javascript
JS实现的幻灯片切换显示效果
2016/09/07 Javascript
Ionic+AngularJS实现登录和注册带验证功能
2017/02/09 Javascript
基于mpvue小程序使用echarts画折线图的方法示例
2019/04/24 Javascript
[03:40]DOTA2亚洲邀请赛小组赛第二日 赛事回顾
2015/01/31 DOTA
[01:32]dota2拉比克至宝(222)
2018/12/20 DOTA
python代码检查工具pylint 让你的python更规范
2012/09/05 Python
Python写的PHPMyAdmin暴力破解工具代码
2014/08/06 Python
Python处理菜单消息操作示例【基于win32ui模块】
2018/05/09 Python
Python爬虫图片懒加载技术 selenium和PhantomJS解析
2019/09/18 Python
pytorch查看torch.Tensor和model是否在CUDA上的实例
2020/01/03 Python
Python实现在Windows平台修改文件属性
2020/03/05 Python
Python yield的用法实例分析
2020/03/06 Python
keras的三种模型实现与区别说明
2020/07/03 Python
python利用线程实现多任务
2020/09/18 Python
css3中用animation的steps属性制作帧动画
2019/04/25 HTML / CSS
super关键字的用法
2012/04/10 面试题
构造方法和其他方法的区别?怎么调用父类的构造方法
2013/09/22 面试题
高中三年学习生活的自我评价
2013/10/10 职场文书
优秀的计算机专业求职信范文
2013/12/27 职场文书
国贸专业的职业规划范文
2014/01/23 职场文书
爱国卫生月活动总结范文
2014/04/25 职场文书
2014年个人思想工作总结
2014/11/27 职场文书
邀请书模板
2015/02/02 职场文书
2016年圣诞节寄语(一句话)
2015/12/07 职场文书
高中地理教学反思
2016/02/19 职场文书
解决Django transaction进行事务管理踩过的坑
2021/04/24 Python
Python常用配置文件ini、json、yaml读写总结
2021/07/09 Python