简体   繁体   English

Python 多处理运行进程两次?

[英]Python Multiprocessing running process twice?

Running the following Python 3 script and for some reason that I cannot fathom the startWebview function executes twice resulting in two PyWebView windows being opened.运行以下 Python 3 脚本,由于某种原因,我无法理解 startWebview function 执行两次,导致两个 PyWebView windows 被打开。

# Import Modules Here
import os
import time
import webview
import os.path
import multiprocessing
from dotenv import load_dotenv
from flask_wtf import FlaskForm
from flask_mde import Mde, MdeField
from wtforms import SubmitField, StringField
from wtforms.validators import InputRequired, DataRequired, Length
from flask import Flask, request, render_template, flash, session, url_for

app = Flask(__name__)
load_dotenv()
mde = Mde(app)
app.config['SECRET_KEY'] = os.environ.get("FLASK_SECRET_KEY")

windowTitle = os.environ.get("WINDOW_TITLE")
fileDirPath = os.environ.get("FILE_DIRECTORY")


def error_flasher(form):
    for field, message_list in form.errors.items():
        for message in message_list:
            flash(form[field].label.text + ': ' + message, 'error')
    print(message, message_list)


def fileHandler(form):
    savePath = os.path.join(fileDirPath, form.title.data)
    f = open(savePath, "w+")
    f.write(form.editor.data)
    f.close()


def contentLoader(form):
    savePath = os.path.join(fileDirPath, form.title.data)
    fileName = savePath
    f = open(fileName, "r")
    return f.read()


class MdeForm(FlaskForm):

    title = StringField('Title', validators=[DataRequired()])

    editor = MdeField(
        validators=[
            #InputRequired("Input required"),
            Length(min=0, max=30000)
        ]
    )
    submit = SubmitField()


@app.route('/', methods=['GET', 'POST'])
def index():
    form = MdeForm()

    if form.validate_on_submit() and form.editor.data == "":
        form.editor.data = contentLoader(form)

    elif form.validate_on_submit() and form.editor.data != "":
        session['editor'] = request.form['editor']
        fileHandler(form)
        form.title.data = ""
        form.editor.data = ""

    return render_template("index.html", form=form, windowTitle=windowTitle)


def startFlaskServer():
    app.run(debug=True)


def startWebview():
    webview.create_window(windowTitle, 'http://localhost:5000')
    webview.start(debug=True)


if __name__ == "__main__":

    p1 = multiprocessing.Process(target=startFlaskServer)
    p2 = multiprocessing.Process(target=startWebview)

    p1.start()
    time.sleep(2)
    p2.start()
    p2.join()
    p1.terminate()

在此处输入图像描述

As seen in the above image it would appear that the cause is two GET requests as the second Webview only loads after the second GET request.如上图所示,原因似乎是两个 GET 请求,因为第二个 Webview 仅在第二个 GET 请求之后加载。

Thanks in advance!提前致谢!

It would appear that this issue is caused by Multiprocessing re-evaluating the file as suggested by @Carcigenicate.看来这个问题是由多重处理重新评估文件引起的,正如@Carcigenicate 所建议的那样。

Problem solved by moving from Multithreading to threading.通过从多线程转移到线程解决了问题。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM