17 lines
547 B
Python
17 lines
547 B
Python
# 配置信息
|
|
class Config:
|
|
# RSS配置
|
|
RSS_URL = "https://free.apprcn.com/feed/"
|
|
RSS_LIMIT = 3 # 限制获取最新的3条信息
|
|
|
|
# WordPress配置
|
|
WORDPRESS_URL = "https://你的站点/xmlrpc.php"
|
|
WORDPRESS_USERNAME = "用户名"
|
|
WORDPRESS_PASSWORD = "密码"
|
|
|
|
# Deepseek AI配置
|
|
DEEPSEEK_API_KEY = "Deepseek key"
|
|
DEEPSEEK_API_URL = "https://api.deepseek.com/v1/chat/completions" # Deepseek API地址
|
|
|
|
# 图片配置
|
|
IMAGE_SAVE_PATH = "images" # 图片保存路径 |