Как получить доступ к отдельному html-файлу из питона WSGI - PullRequest
0 голосов
/ 28 февраля 2019

Чтобы создать простой веб-сервер с использованием WSGI, и когда я запускаю этот код через это сообщение «Произошла ошибка сервера. Пожалуйста, свяжитесь с администратором» в моем браузере.

Мой код

main.py

import os
from wsgiref.simple_server import make_server


def application(environ, start_response):
    # Mimetype
    ctype = 'text/html'

    # Directory
    dir = environ["SCRIPT_FILENAME"][:environ["SCRIPT_FILENAME"].rindex("/")]
    # Get File Contents
    file_contents = b""
    with open(dir+"/main.html", "rb") as file:
        file_contents = file.read()

    # Add Dynamic Content
    response_body = b"This is a header!".join(
        b"".join(
            file_contents.split(b"%(HEAD)")
        ).split(b"%(HEADING)")
    )

    # Heading
    status = '200 OK'
    response_headers = [
        ('Content-Type', ctype), ('Content-Length', str(len(response_body)))
    ]

    # Send Response
    start_response(status, response_headers)
    return [response_body.encode('utf-8')]


httpd = make_server('localhost', 8080, application)
# Now it is serve_forever() in instead of handle_request()
httpd.serve_forever()

main.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Home</title>
</head>
<body>

<h1>Hello, Python WSGI Application</h1>

</body>
</html>

И файл main.py и main.html содержится в имени каталога "app".Я не мог обнаружить настоящую проблему, что здесь произошло.

Спасибо.

...