{“content”:”---\nname: daily-news-podcast-rss-sources\ndescription: Reliable RSS news sources for the daily Chinese news podcast pipeline — covers AI tech, Malaysian business, world news, and interior design trends.\n---\n\n# Daily News Podcast RSS Sources\n\n## 概述\n每日新闻 Podcast 生成系统的可靠新闻 RSS 来源。适用于马来西亚华语播客(AI科技、马来西亚经济、国际局势、室内设计)。\n\n## 可靠的 RSS 新闻来源\n\n### AI 科技新闻\n- TechCrunch AI: https://feeds.feedburner.com/TechCrunch/AI\n - 可靠、经常更新\n - 示例:「This is fine」创作者指控AI初创公司盗用其艺术作品、哈佛研究AI急诊诊断准确率超过两名人类医生、奥斯卡不接受AI生成演员和剧本\n\n### 马来西亚新闻(经济/商业/综合)\n- Free Malaysia Today: https://www.freemalaysiatoday.com/category/nation/feed\n - 目前唯一可靠的马来西亚新闻RSS源\n - 其他马来西亚来源(The Edge Markets、Malay Mail Business、Malaysiakini等)RSS均失效或返回空\n- Malay Mail 综合: https://www.malaymail.com/news/rss/malaysia\n\n### 国际局势新闻\n- BBC World News: https://feeds.bbci.co.uk/news/world/rss.xml\n - 可靠、经常更新\n - 示例:伊朗表示美国已回应其和平提议、乌克兰冲突最新进展\n\n### 室内设计趋势\n- 无可靠英文RSS源,建议使用通用设计趋势关键词搜索或使用 AI 生成模拟新闻\n\n## 不可靠/失效的来源(避免使用)\n- The Edge Markets (theedgemarkets.com) — RSS 返回空\n- Malay Mail Business (malaymail.com/news/rss/business) — RSS 返回空\n- Malaysiakini (malaysiakini.com) — RSS 返回空\n- Astro Awani (astroawani.com) — RSS 返回空\n- The Sun Daily (thesundaily.my) — 超时\n- NST (nst.com.my/news/rss) — 返回空\n- 各大中文马来西亚媒体 RSS 均不工作\n\n## 解析 RSS 的 Python 代码模板\npython\nimport urllib.request\nimport re\n\ndef fetch_rss(url, max_items=5):\n try:\n req = urllib.request.Request(url, headers={'User-Agent': 'Mozilla/5.0'})\n with urllib.request.urlopen(req, timeout=15) as response:\n content = response.read().decode('utf-8', errors='ignore')\n \n items = re.findall(r'<item>(.*?)</item>', content, re.DOTALL)\n results = []\n for item in items[:max_items]:\n title = re.findall(r'<title>(.*?)</title>', item)\n pub = re.findall(r'<pubDate>(.*?)</pubDate>', item)\n desc = re.findall(r'<description>(.*?)</description>', item)\n title_text = title[0].replace('<![CDATA[','').replace(']]>','').strip() if title else ''\n results.append({\n 'title': title_text,\n 'date': pub[0].strip() if pub else '',\n 'desc': re.sub('<[^<]+?>', '', desc[0].replace('<![CDATA[','').replace(']]>','').strip())[:300] if desc else ''\n })\n return results\n except Exception as e:\n return []\n\n\n## 注意事项\n- 马来西亚媒体中文RSS极少且大多失效,英文来源是更可靠的选择\n- RSS 超时设置建议 15-30 秒\n- 多个马来西亚来源(Malaysiakini、The Edge等)的RSS解析返回空内容,需实际测试\n”}