mcp-demo/applications/temp-auto-editor/temp-auto-editor/get_fablecut_readme.py
Codex Backup 6d96585d42 Initial backup of Codex development projects
包含内容:
- 应用程序: temp-auto-editor (带货短视频自动化剪辑系统)
- 项目: auto-editor, FableCut, footage_screener
- 文档: 视频工作流, chatcut, latentdync
- 配置: config.toml, .env
- 技能: kimi-webbridge
- MCP 包装器: gitea wrapper.js
- 记忆文件: memories/*.md
- 会话摘要: session_index.jsonl

备份日期: 2026-07-27 14:00:28
2026-07-27 14:00:29 +08:00

14 lines
376 B
Python

import httpx
url = "https://raw.githubusercontent.com/ronak-create/FableCut/main/README.md"
try:
with httpx.Client(timeout=30.0) as client:
response = client.get(url)
if response.status_code == 200:
print(response.text[:3000])
else:
print(f"Failed: {response.status_code}")
except Exception as e:
print(f"Error: {e}")