Guide to creating a multi-image upload form using Python

A comprehensive guide on how to create a multi-image upload form using Flask, a simple and effective Python framework.

In this article, we will learn how to use Flask to create a simple web application that allows users to upload multiple images simultaneously and store them on the server.

Python code:

from flask import Flask, render_template, request
import os

app = Flask(__name__)
UPLOAD_FOLDER = 'uploads'
app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER

# Create the upload folder if it doesn't exist
if not os.path.exists(UPLOAD_FOLDER):
    os.makedirs(UPLOAD_FOLDER)

@app.route('/', methods=['GET', 'POST'])
def upload_files():
    if request.method == 'POST':
        # Check if any files were uploaded
        if 'files[]' not in request.files:
            return "No files selected"
        
        files = request.files.getlist('files[]')
        
        # Save the uploaded files
        for file in files:
            if file.filename != '':
                file.save(os.path.join(app.config['UPLOAD_FOLDER'], file.filename))

        return "Upload successful"

    return '''
    <!doctype html>
    <html>
    <head>
        <title>Upload Multiple Images</title>
    </head>
    <body>
        <h1>Upload multiple images</h1>
        <form method="POST" enctype="multipart/form-data">
            <input type="file" name="files[]" multiple>
            <input type="submit" value="Upload">
        </form>
    </body>
    </html>
    '''

if __name__ == '__main__':
    app.run(debug=True)

Detailed explanation:

  1. from flask import Flask, render_template, request: Imports necessary modules from Flask.
  2. UPLOAD_FOLDER = 'uploads': Defines the folder to store uploaded images.
  3. if not os.path.exists(UPLOAD_FOLDER): Creates the uploads directory if it doesn't exist.
  4. @app.route('/', methods=['GET', 'POST']): Defines the main route of the application, allowing GET and POST methods.
  5. if request.method == 'POST': Handles the POST request when the user uploads images.
  6. file.save(os.path.join(app.config['UPLOAD_FOLDER'], file.filename)): Saves the images in the uploads folder.
  7. HTML form input type="file" name="files[]" multiple>: Allows selecting and uploading multiple images.

System Requirements:

  • Python version 3.6 or higher
  • Flask version 2.0 or higher

How to install the libraries needed to run the Python code above:

Use the following command to install Flask:

pip install flask

Tips:

  • Validate the uploaded files to avoid errors or malicious files.
  • Consider limiting file size and types to protect your system.
Tags: Python, Upload


Related

Convert Markdown string to HTML using Python

A guide on how to convert a Markdown string to HTML using Python with the `markdown2` library, making it easy to integrate this conversion feature into your application.
Guide to Creating a Python Application Interface with PyQT6

A detailed guide on how to create a simple application interface using PyQT6 in Python, with installation steps and code explanations.
Remove green background from image using Python

Guide on how to use Python to remove green background (chroma key) from an image using the OpenCV library. This Python code helps in removing green backgrounds to replace it with another background or make it transparent.
How to DELETE data from a MySQL database using Python

A guide on how to use Prepared Statements in Python to delete data from a table in a MySQL database safely and effectively.
How to rename columns in Pandas using a list in Python

A guide on how to rename columns in a Pandas DataFrame using a list of new names. This makes it easy to update or change column names when working with data in Python.
Commonly used functions in the Pandas library and how to use them

This article lists important functions in the Pandas library for Python and provides guidance on how to use them. Pandas is a powerful tool for data manipulation and analysis in Python.
Guide to Reading Excel Files Using Python

A comprehensive guide on how to read content from Excel files (.xlsx, .xls) using Python, utilizing the openpyxl and pandas libraries with illustrative examples.
Comprehensive Guide to Using the print() Function in Python

A detailed guide on all the ways to use the print() function in Python, covering formatting options, parameters, and advanced usage.
How to INSERT data into a MySQL database using Python

A guide on how to insert data into a MySQL database table using Python and the mysql-connector-python library.
Inject JavaScript code into a website using Selenium in Python

A guide on using Selenium in Python to inject JavaScript code into a website in the Chrome browser. This article will help you understand how to interact with web elements and execute JavaScript.

main.add_cart_success