This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Bare bones download/upload Python server using Flask. | |
""" | |
import os | |
from flask import ( | |
Flask, redirect, render_template_string, request, send_from_directory | |
) | |
from werkzeug.utils import secure_filename |