Spaces:
Sleeping
Sleeping
| """ | |
| 信息图表标题生成器 | |
| 一个用于生成专业信息图表标题的Python模块。 | |
| """ | |
| from modules.title_styler.infographic_title_generator import ( | |
| InfographicTitleGenerator, | |
| generate_title | |
| ) | |
| from modules.title_styler.templates import ( | |
| TitleTemplate, | |
| get_all_templates, | |
| get_templates_by_alignment | |
| ) | |
| from modules.title_styler.svg_renderer import SVGRenderer | |
| from modules.title_styler.llm_analyzer import LLMAnalyzer | |
| from modules.title_styler.config import ( | |
| TITLE_FONTS, | |
| NEUTRAL_COLORS, | |
| ALIGNMENT_LEFT, | |
| ALIGNMENT_CENTER, | |
| ALIGNMENT_RIGHT | |
| ) | |
| __version__ = '1.0.0' | |
| __author__ = 'Your Name' | |
| __all__ = [ | |
| # 主要类 | |
| 'InfographicTitleGenerator', | |
| 'TitleTemplate', | |
| 'SVGRenderer', | |
| 'LLMAnalyzer', | |
| # 便捷函数 | |
| 'generate_title', | |
| 'generate_and_save', | |
| 'render_title', | |
| 'analyze_title_structure', | |
| # 模板相关 | |
| 'get_all_templates', | |
| 'get_templates_by_line_count', | |
| 'get_templates_by_alignment', | |
| # 常量 | |
| 'TITLE_FONTS', | |
| 'NEUTRAL_COLORS', | |
| 'ALIGNMENT_LEFT', | |
| 'ALIGNMENT_CENTER', | |
| 'ALIGNMENT_RIGHT', | |
| ] | |