“Stop Servidor de frascos” Código de respuesta

Cómo cerrar un servidor web frasco con Python

from flask import Flask, request, jsonify

# Workaround - otherwise doesn't work in windows service.
cli = sys.modules['flask.cli']
cli.show_server_banner = lambda *x: None

app = Flask('MyService')

# ... business logic endpoints are skipped.

@app.route("/shutdown", methods=['GET'])
def shutdown():
    shutdown_func = request.environ.get('werkzeug.server.shutdown')
    if shutdown_func is None:
        raise RuntimeError('Not running werkzeug')
    shutdown_func()
    return "Shutting down..."


def start():
    app.run(host='0.0.0.0', threaded=True, port=5001)


def stop():
    import requests
    resp = requests.get('http://localhost:5001/shutdown')
Gentle Gerbil

Cómo cerrar un servidor web frasco con Python

from multiprocessing import Process

server = Process(target=app.run)
server.start()
# ...
server.terminate()
server.join()
Gentle Gerbil

Python cómo reiniciar automáticamente el frasco sever

app.run(debug=True)
loneWolf_sage

Servidor de frasco de cierre con solicitud

from flask import request

def shutdown_server():
    func = request.environ.get('werkzeug.server.shutdown')
    if func is None:
        raise RuntimeError('Not running with the Werkzeug Server')
    func()

@app.route('/shutdown', methods=['POST'])
def shutdown():
    shutdown_server()
    return 'Server shutting down...'
Puzzled Puffin

Stop Servidor de frascos

@app.route("/shutdown", methods=['GET'])
def shutdown():
    shutdown_func = request.environ.get('werkzeug.server.shutdown')
    if shutdown_func is None:
        raise RuntimeError('Not running werkzeug')
    shutdown_func()
    return "Shutting down..."
SMR

Respuestas similares a “Stop Servidor de frascos”

Preguntas similares a “Stop Servidor de frascos”

Más respuestas relacionadas con “Stop Servidor de frascos” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código