qwen_agent/skills_developing/z-card-image/scripts/render_tweet_thread.py
2026-03-17 21:55:10 +08:00

11 lines
263 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env python3
"""
兼容入口tweet-thread 已升级为 x-like-posts。
请优先使用 render_x_like_posts.py。
"""
from pathlib import Path
import runpy
runpy.run_path(str(Path(__file__).with_name("render_x_like_posts.py")), run_name="__main__")