从Python的http.server提供文件 - 使用文件正确响应

时间:2017-09-07 21:27:21

标签: python-3.x servlets httpserver simplehttpserver basehttpserver

我只是尝试从http.server提供PDF文件。这是我的代码:

from http.server import BaseHTTPRequestHandler, HTTPServer

class MyServer(BaseHTTPRequestHandler):

    def do_GET(self):
        self.send_response(200)
        self.send_header('Content-type', 'application/pdf')
        self.send_header('Content-Disposition', 'attachment; filename="file.pdf"')
        self.end_headers()

        # not sure about this part below
        self.wfile.write(open('/filepath/file.pdf', 'rb'))


myServer = HTTPServer(('localhost', 8080), MyServer)
myServer.serve_forever()
myServer.server_close()

我不确定我现在如何回复file.pdf并且我无法到达任何地方。我确信标题是正确的但我无法设置发送实际文件。

1 个答案:

答案 0 :(得分:2)

看起来正如你所说的那样正确设置标题。我已经完成了你只想用文本数据(CSV)做的事情。如图所示,您的代码存在的一个问题是您正在尝试编写文件对象而不是实际数据。您需要执行read来实际获取二进制数据。

def do_GET(self):

    # Your header stuff here...

    # Open the file
    with open('/filepath/file.pdf', 'rb') as file: 
        self.wfile.write(file.read()) # Read the file and send the contents 

希望这至少让你更接近。