gpt4 book ai didi

python - SimpleHTTPServer - 服务大文件

转载 作者:太空狗 更新时间:2023-10-30 01:23:30 29 4
gpt4 key购买 nike

我正在使用 python -m SimpleHTTPServer对于一个小项目。文件 index.html 引用了一些视频。 <video><source src="big_buck_bunny_480p_stereo.ogg"></video>此文件的大小为 159 MB。当我尝试下载它时,SimpleHTTPServer 抛出一些错误消息而不是我的视频。

Marc-Laptop - - [23/Sep/2012 18:18:29] "GET /big_buck_bunny_480p_stereo.ogg HTTP
/1.1" 200 -
----------------------------------------
Exception happened during processing of request from ('192.168.4.38', 51152)
Traceback (most recent call last):
File "C:Program Files (x86)PythonlibSocketServer.py", line 284, in _handle
_request_noblock
self.process_request(request, client_address)
File "C:Program Files (x86)PythonlibSocketServer.py", line 310, in process
_request
self.finish_request(request, client_address)
File "C:Program Files (x86)PythonlibSocketServer.py", line 323, in finish_
request
self.RequestHandlerClass(request, client_address, self)
File "C:Program Files (x86)PythonlibSocketServer.py", line 640, in __init_
_
self.finish()
File "C:Program Files (x86)PythonlibSocketServer.py", line 693, in finish
self.wfile.flush()
File "C:Program Files (x86)Pythonlibsocket.py", line 303, in flush
self._sock.sendall(view[write_offset:write_offset+buffer_size])
error: [Errno 10054] Eine vorhandene Verbindung wurde vom Remotehost geschlossen

----------------------------------------

最佳答案

simpleHTTPServer 正在尝试缓冲所有内容,并且确实会因内存不足而爆炸。最好异步执行,但 simpleHTTPServer 不知道如何执行。检查 thread .有人提出了 simpleHTTPserver 的修改版本:SimpleAsyncHTTPServer.py

关于python - SimpleHTTPServer - 服务大文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12554021/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com