1 Star 1 Fork 0

HonestQiao/网页版bdf转pcf字体转换工具

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
server.py 297 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jeff Epler 提交于 2021-01-01 02:22 +08:00 . Checkpoint
#!/usr/bin/env python3
import http.server
import socketserver
PORT = 4242
Handler = http.server.SimpleHTTPRequestHandler
Handler.extensions_map[".wasm"] = "application/wasm"
with socketserver.TCPServer(("", PORT), Handler) as httpd:
print("serving at port", PORT)
httpd.serve_forever()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/honestqiao/web_bdf2pcf.git
[email protected]:honestqiao/web_bdf2pcf.git
honestqiao
web_bdf2pcf
网页版bdf转pcf字体转换工具
main

搜索帮助