gpt4 book ai didi

python - 我怎样才能使用扭曲的外部文件夹?

转载 作者:太空宇宙 更新时间:2023-11-04 01:06:57 25 4
gpt4 key购买 nike

python 中有一个 captiveportal 脚本可以与 twisted 一起使用,但它会在脚本中加载门户页面(搜索 CAPTIVE_TEMPLATE)

https://github.com/bendemott/captiveportal/blob/master/captiveportal

如何加载包含 js 和 css 的完整 index.html 文件夹以及其他 Material (如文档和文件)?

最好的问候

最佳答案

使用 File 并传递给它一个目录。

from twisted.web.server import Site
from twisted.web.static import File
from twisted.internet import reactor

resource = File('/tmp')
factory = Site(resource)
reactor.listenTCP(8888, factory)
reactor.run()

查看更多here

关于python - 我怎样才能使用扭曲的外部文件夹?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29895310/

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