1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
| from flask import Flask, send_file, abort, render_template_string from gevent.pywsgi import WSGIServer import os import socket import qrcode
app = Flask(__name__)
HTML_TEMPLATE = ''' <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> <title>Local File Server</title> <style> a { color: #007bff; text-decoration: none; } a:visited { color: #007bff; } </style> </head> <body> <div class="container"> <table class="table table-hover"> <thead> <tr> <th>File Name</th> </tr> </thead> <tbody> {% for file in files %} <tr> <td><a href="/{{ file[1] }}">{{ file[0] }}</a></td> </tr> {% endfor %} </tbody> </table> </div> </body> </html> '''
@app.route('/<path:filename>') def serve_file(filename): if not os.path.exists(filename): abort(404)
if os.path.isfile(filename): return send_file(os.path.join(os.getcwd(), filename)) else: return render_template(filename)
@app.route('/') def index(): return render_template("./")
def render_template(path): files = os.listdir(path) files_path = map( lambda file: os.path.join(path, file), files )
return render_template_string(HTML_TEMPLATE, files=zip(files, files_path))
def get_local_ip(): sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) sock.connect(("8.8.8.8", 80)) local_ip = sock.getsockname()[0]
return local_ip
if __name__ == '__main__': ip = get_local_ip() port = 1128
url = "http://{}:{}".format(ip, port) print("Server running at {}".format(url))
qr = qrcode.QRCode( version=5, error_correction=qrcode.constants.ERROR_CORRECT_Q, box_size=10, border=4, ) qr.add_data(url) qr.print_ascii()
http_server = WSGIServer(('0.0.0.0', port), app, log=None) http_server.serve_forever()
|