a day ago 分享一个vibe coding了一个http服务器,支持上传,下载🌐 链接: https://linux.do/t/topic/2523052🔍 关键词: #api #cursor🏷️ 分组: LinuxDo论坛🕒 时间: 2026-07-04 14:08:38 LINUX DO 分享一个vibe coding了一个http服务器,支持上传,下载 先看效果图: 依赖安装 pip install aiohttp 启动服务 python server.py 访问 http://localhost:8080 客户端示例 单文件下载(普通) curl -O http://localhost:8080/download/test.txt 2. 断点续传下载 从第 1024 字节开始下载 curl -H “Range: bytes=1024-” -o test.txt http://localhost:8080/download/test.txt…