1f18d2ec87
- 新增 chinese_holidays 表,通过 timor.tech API 同步节假日数据 - 修正 holiday 字段解读:holiday=true → 休息日,holiday=false → 调休工作日 - 工作日 8:00-22:00 每小时爬取,周末/节假日/夜间自动跳过 - 新增 /api/v1/holidays/sync 和 /api/v1/holidays/today 接口 - 企微菜单新增「同步节假日」按钮,支持手动触发同步
45 lines
2.3 KiB
Python
45 lines
2.3 KiB
Python
|
|
from pydantic_settings import BaseSettings, SettingsConfigDict
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
model_config = SettingsConfigDict(env_file=".env", env_file_encoding="utf-8")
|
|
|
|
# 应用
|
|
debug: bool = False
|
|
log_level: str = "INFO"
|
|
|
|
# 数据库
|
|
database_url: str = "postgresql+asyncpg://gx-gp-notify:password@localhost:5432/gx-gp-notify"
|
|
|
|
# 爬虫
|
|
crawler_base_url: str = "https://zfcg.gxzf.gov.cn"
|
|
crawler_keywords: list[str] = ["大化"]
|
|
crawler_max_pages: int = 10
|
|
crawler_timeout: int = 30
|
|
crawler_page_size: int = 100
|
|
|
|
# 企业微信
|
|
wechat_enabled: bool = True
|
|
wechat_corp_id: str = ""
|
|
wechat_agent_id: str = ""
|
|
wechat_secret: str = ""
|
|
wechat_token: str = ""
|
|
wechat_encoding_aes_key: str = ""
|
|
wechat_port: int = 18001
|
|
wechat_host: str = "0.0.0.0"
|
|
|
|
# 定时任务
|
|
scheduler_enabled: bool = True
|
|
scheduler_cron: str = "0 8-21 * * *"
|
|
|
|
# Markdown
|
|
markdown_enabled: bool = True
|
|
markdown_output_file: str = "onu.md"
|
|
|
|
# 公告来源(JSON 字符串,从环境变量读取)
|
|
announcement_sources: str = '{"ZcyAnnouncement1":{"category_id":66485,"name":"采购公告","type":"purchase"},"ZcyAnnouncement2":{"category_id":66485,"name":"结果公告","type":"result"},"ZcyAnnouncement3":{"category_id":66485,"name":"合同公告","type":"contract"},"ZcyAnnouncement4":{"category_id":66485,"name":"更正公告","type":"correction"},"ZcyAnnouncement5":{"category_id":66485,"name":"招标文件预公示","type":"pre_announcement"},"ZcyAnnouncement6":{"category_id":66485,"name":"单一来源公示","type":"single_source"},"ZcyAnnouncement7":{"category_id":66485,"name":"电子卖场公示","type":"electronic_market"},"ZcyAnnouncement10":{"category_id":66485,"name":"履约验收公示","type":"acceptance"},"ZcyAnnouncement11":{"category_id":66485,"name":"工程类公告","type":"engineering"},"ZcyAnnouncement20":{"category_id":66485,"name":"框架协议征集公告","type":"framework_agreement"},"ZcyAnnouncement21":{"category_id":66485,"name":"框架协议入围结果公告","type":"framework_result"},"ZcyAnnouncement23":{"category_id":66485,"name":"框架协议成交结果汇总公告","type":"framework_summary"},"61-266648":{"category_id":66485,"name":"采购意向公开","type":"intention"}}' # noqa: E501
|
|
|
|
|
|
settings = Settings()
|