feat: 军事科技每日资讯推送系统 - Docker部署 + 日志系统 + 数据目录重组
This commit is contained in:
@@ -0,0 +1,77 @@
|
||||
import os
|
||||
import xml.etree.ElementTree as ET
|
||||
from xml.dom import minidom
|
||||
|
||||
base_dir = os.path.dirname(os.path.abspath(__file__))
|
||||
input_path = os.path.join(base_dir, 'rss_feeds_merged.txt')
|
||||
output_path = os.path.join(base_dir, 'rss_feeds_merged.opml')
|
||||
|
||||
|
||||
def parse_merged(filepath):
|
||||
categories = {}
|
||||
current_category = None
|
||||
with open(filepath, 'r', encoding='utf-8') as f:
|
||||
for line in f:
|
||||
line = line.strip()
|
||||
if not line:
|
||||
continue
|
||||
if line.startswith('# 英文'):
|
||||
current_category = '英文军事源'
|
||||
categories[current_category] = []
|
||||
continue
|
||||
if line.startswith('# 中文'):
|
||||
current_category = '中文微信公众号源'
|
||||
categories[current_category] = []
|
||||
continue
|
||||
if line.startswith('#'):
|
||||
continue
|
||||
if '|' in line and current_category:
|
||||
name, url = line.split('|', 1)
|
||||
categories[current_category].append((name.strip(), url.strip()))
|
||||
return categories
|
||||
|
||||
|
||||
def build_opml(categories):
|
||||
opml = ET.Element('opml', version='2.0')
|
||||
|
||||
head = ET.SubElement(opml, 'head')
|
||||
ET.SubElement(head, 'title').text = '军事科技RSS订阅源'
|
||||
ET.SubElement(head, 'dateCreated').text = 'Mon, 29 May 2026 12:00:00 +0800'
|
||||
|
||||
body = ET.SubElement(opml, 'body')
|
||||
|
||||
for cat_name, feeds in categories.items():
|
||||
cat_outline = ET.SubElement(body, 'outline', text=cat_name, title=cat_name)
|
||||
for name, url in feeds:
|
||||
ET.SubElement(
|
||||
cat_outline,
|
||||
'outline',
|
||||
text=name,
|
||||
title=name,
|
||||
type='rss',
|
||||
xmlUrl=url,
|
||||
)
|
||||
|
||||
raw_xml = ET.tostring(opml, encoding='unicode')
|
||||
dom = minidom.parseString(raw_xml)
|
||||
return dom.toprettyxml(indent=' ', encoding='UTF-8').decode('utf-8')
|
||||
|
||||
|
||||
def main():
|
||||
categories = parse_merged(input_path)
|
||||
xml_str = build_opml(categories)
|
||||
|
||||
xml_str = '<?xml version="1.0" encoding="UTF-8"?>\n' + xml_str.split('\n', 1)[1]
|
||||
|
||||
with open(output_path, 'w', encoding='utf-8') as f:
|
||||
f.write(xml_str)
|
||||
|
||||
total = sum(len(v) for v in categories.values())
|
||||
for cat, feeds in categories.items():
|
||||
print(f'{cat}: {len(feeds)} 个')
|
||||
print(f'总计: {total} 个')
|
||||
print(f'已写入: {output_path}')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
@@ -0,0 +1,88 @@
|
||||
import os
|
||||
import re
|
||||
|
||||
base_dir = os.path.dirname(os.path.abspath(__file__))
|
||||
|
||||
def parse_rss_feeds(filepath):
|
||||
"""解析 rss_feeds.txt 格式:源名称|RSS地址"""
|
||||
entries = []
|
||||
with open(filepath, 'r', encoding='utf-8') as f:
|
||||
for line in f:
|
||||
line = line.strip()
|
||||
if not line or line.startswith('#'):
|
||||
continue
|
||||
if '|' in line:
|
||||
name, url = line.split('|', 1)
|
||||
entries.append((name.strip(), url.strip()))
|
||||
return entries
|
||||
|
||||
def parse_high_quality(filepath):
|
||||
"""解析高质量列表格式:公众号名称\t公众号ID\tRSS订阅地址"""
|
||||
entries = []
|
||||
with open(filepath, 'r', encoding='utf-8') as f:
|
||||
for line in f:
|
||||
line = line.strip()
|
||||
if not line or line.startswith('#'):
|
||||
continue
|
||||
parts = line.split('\t')
|
||||
if len(parts) >= 3:
|
||||
name = parts[0].strip()
|
||||
url = parts[2].strip()
|
||||
if url:
|
||||
entries.append((name, url))
|
||||
return entries
|
||||
|
||||
def main():
|
||||
feeds_path = os.path.join(base_dir, 'rss_feeds.txt')
|
||||
hq_path = os.path.join(base_dir, 'rss_feed_list_高质量 copy.txt')
|
||||
output_path = os.path.join(base_dir, 'rss_feeds_merged.txt')
|
||||
|
||||
feeds_entries = parse_rss_feeds(feeds_path)
|
||||
hq_entries = parse_high_quality(hq_path)
|
||||
|
||||
all_entries = feeds_entries + hq_entries
|
||||
|
||||
seen_urls = set()
|
||||
unique_entries = []
|
||||
for name, url in all_entries:
|
||||
if url not in seen_urls:
|
||||
seen_urls.add(url)
|
||||
unique_entries.append((name, url))
|
||||
|
||||
english_entries = []
|
||||
wechat_entries = []
|
||||
for name, url in unique_entries:
|
||||
if 'werss.yynnice.top' in url:
|
||||
wechat_entries.append((name, url))
|
||||
else:
|
||||
english_entries.append((name, url))
|
||||
|
||||
wechat_entries.sort(key=lambda x: x[0].lower())
|
||||
english_entries.sort(key=lambda x: x[0].lower())
|
||||
|
||||
with open(output_path, 'w', encoding='utf-8') as f:
|
||||
f.write('# 军事科技RSS订阅源列表(合并版)\n')
|
||||
f.write('# 格式:<源名称>|<RSS地址>\n')
|
||||
f.write('# 以#开头的行是注释,会自动忽略\n')
|
||||
f.write('# 空行也会自动跳过\n')
|
||||
f.write('# 合并时间: 2026-05-29\n')
|
||||
f.write('\n')
|
||||
|
||||
if english_entries:
|
||||
f.write('# 英文军事源\n')
|
||||
for name, url in english_entries:
|
||||
f.write(f'{name}|{url}\n')
|
||||
f.write('\n')
|
||||
|
||||
if wechat_entries:
|
||||
f.write('# 中文微信公众号源\n')
|
||||
for name, url in wechat_entries:
|
||||
f.write(f'{name}|{url}\n')
|
||||
|
||||
print(f'英文源: {len(english_entries)} 个')
|
||||
print(f'中文微信公众号源: {len(wechat_entries)} 个')
|
||||
print(f'总计: {len(english_entries) + len(wechat_entries)} 个')
|
||||
print(f'已写入: {output_path}')
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
@@ -0,0 +1,137 @@
|
||||
# 高质量订阅源列表
|
||||
# 生成时间: 2026-05-14 02:08:52
|
||||
# 共 123 个订阅源
|
||||
# 公众号名称 公众号ID RSS订阅地址
|
||||
# ==== 国际时政与战略评论 ====
|
||||
环太国际战略 MP_WXS_3092636490 https://werss.yynnice.top/feed/MP_WXS_3092636490.rss
|
||||
破圈了 MP_WXS_3896642917 https://werss.yynnice.top/feed/MP_WXS_3896642917.rss
|
||||
时政国关分析 MP_WXS_3076746747 https://werss.yynnice.top/feed/MP_WXS_3076746747.rss
|
||||
华山穹剑 MP_WXS_3096373438 https://werss.yynnice.top/feed/MP_WXS_3096373438.rss
|
||||
环时枢密院十号 MP_WXS_3889757200 https://werss.yynnice.top/feed/MP_WXS_3889757200.rss
|
||||
补壹刀 MP_WXS_3698108903 https://werss.yynnice.top/feed/MP_WXS_3698108903.rss
|
||||
欧亚新观察 MP_WXS_3210250850 https://werss.yynnice.top/feed/MP_WXS_3210250850.rss
|
||||
舆情文摘 MP_WXS_3218815490 https://werss.yynnice.top/feed/MP_WXS_3218815490.rss
|
||||
迷彩虎观察 MP_WXS_3297325221 https://werss.yynnice.top/feed/MP_WXS_3297325221.rss
|
||||
胡锡进观察 MP_WXS_3557544392 https://werss.yynnice.top/feed/MP_WXS_3557544392.rss
|
||||
米尔观天下 MP_WXS_3916786326 https://werss.yynnice.top/feed/MP_WXS_3916786326.rss
|
||||
盛唐如松 MP_WXS_3018607289 https://werss.yynnice.top/feed/MP_WXS_3018607289.rss
|
||||
白马V视角 MP_WXS_3073217929 https://werss.yynnice.top/feed/MP_WXS_3073217929.rss
|
||||
戎评 MP_WXS_3207447547 https://werss.yynnice.top/feed/MP_WXS_3207447547.rss
|
||||
沃德舆情观察 MP_WXS_2399567124 https://werss.yynnice.top/feed/MP_WXS_2399567124.rss
|
||||
纯科学 MP_WXS_3098610162 https://werss.yynnice.top/feed/MP_WXS_3098610162.rss
|
||||
补三刀 MP_WXS_3567246386 https://werss.yynnice.top/feed/MP_WXS_3567246386.rss
|
||||
动态大参考 MP_WXS_2391979278 https://werss.yynnice.top/feed/MP_WXS_2391979278.rss
|
||||
今日台湾 MP_WXS_3295805547 https://werss.yynnice.top/feed/MP_WXS_3295805547.rss
|
||||
六爷阿旦 MP_WXS_3554694732 https://werss.yynnice.top/feed/MP_WXS_3554694732.rss
|
||||
牛弹琴 MP_WXS_3099984603 https://werss.yynnice.top/feed/MP_WXS_3099984603.rss
|
||||
秦安战略 MP_WXS_3090850520 https://werss.yynnice.top/feed/MP_WXS_3090850520.rss
|
||||
战略纵横家 MP_WXS_3070598345 https://werss.yynnice.top/feed/MP_WXS_3070598345.rss
|
||||
砺剑 MP_WXS_3074198822 https://werss.yynnice.top/feed/MP_WXS_3074198822.rss
|
||||
梅特涅的信徒 MP_WXS_3207441864 https://werss.yynnice.top/feed/MP_WXS_3207441864.rss
|
||||
占豪 MP_WXS_3516511878 https://werss.yynnice.top/feed/MP_WXS_3516511878.rss
|
||||
# ==== 智库与战略研究 ====
|
||||
大湾区评论 MP_WXS_3881524286 https://werss.yynnice.top/feed/MP_WXS_3881524286.rss
|
||||
亚太安全与海洋研究 MP_WXS_3003645862 https://werss.yynnice.top/feed/MP_WXS_3003645862.rss
|
||||
智强战略咨询 MP_WXS_3247764091 https://werss.yynnice.top/feed/MP_WXS_3247764091.rss
|
||||
华语智库 MP_WXS_3207743237 https://werss.yynnice.top/feed/MP_WXS_3207743237.rss
|
||||
占知智库 MP_WXS_3296995449 https://werss.yynnice.top/feed/MP_WXS_3296995449.rss
|
||||
中国南海研究院 MP_WXS_3215640033 https://werss.yynnice.top/feed/MP_WXS_3215640033.rss
|
||||
中国现代国际关系研究院 MP_WXS_3013473766 https://werss.yynnice.top/feed/MP_WXS_3013473766.rss
|
||||
盘古智库 MP_WXS_3090238314 https://werss.yynnice.top/feed/MP_WXS_3090238314.rss
|
||||
IPP评论 MP_WXS_3087967104 https://werss.yynnice.top/feed/MP_WXS_3087967104.rss
|
||||
远望智库 MP_WXS_3081622154 https://werss.yynnice.top/feed/MP_WXS_3081622154.rss
|
||||
人大重阳 MP_WXS_3092044019 https://werss.yynnice.top/feed/MP_WXS_3092044019.rss
|
||||
中国周边安全研究中心 MP_WXS_3095455037 https://werss.yynnice.top/feed/MP_WXS_3095455037.rss
|
||||
参考消息智库 MP_WXS_2393278785 https://werss.yynnice.top/feed/MP_WXS_2393278785.rss
|
||||
东南亚问题研究 MP_WXS_2391747267 https://werss.yynnice.top/feed/MP_WXS_2391747267.rss
|
||||
瞭望智库 MP_WXS_3990649802 https://werss.yynnice.top/feed/MP_WXS_3990649802.rss
|
||||
复旦大学中国研究院 MP_WXS_3284625196 https://werss.yynnice.top/feed/MP_WXS_3284625196.rss
|
||||
上海国际问题研究院 MP_WXS_3008760667 https://werss.yynnice.top/feed/MP_WXS_3008760667.rss
|
||||
知远战略与防务研究所 MP_WXS_3074319407 https://werss.yynnice.top/feed/MP_WXS_3074319407.rss
|
||||
国观智库 MP_WXS_2390460653 https://werss.yynnice.top/feed/MP_WXS_2390460653.rss
|
||||
# ==== 军事国防资讯 ====
|
||||
军事文摘 MP_WXS_3073744139 https://werss.yynnice.top/feed/MP_WXS_3073744139.rss
|
||||
防务指南 MP_WXS_2399475774 https://werss.yynnice.top/feed/MP_WXS_2399475774.rss
|
||||
军鹰动态 MP_WXS_3289924814 https://werss.yynnice.top/feed/MP_WXS_3289924814.rss
|
||||
海洋防务前沿 MP_WXS_3920305066 https://werss.yynnice.top/feed/MP_WXS_3920305066.rss
|
||||
防务快讯 MP_WXS_3511027745 https://werss.yynnice.top/feed/MP_WXS_3511027745.rss
|
||||
渊亭防务 MP_WXS_3865628826 https://werss.yynnice.top/feed/MP_WXS_3865628826.rss
|
||||
中国国防报 MP_WXS_3518062346 https://werss.yynnice.top/feed/MP_WXS_3518062346.rss
|
||||
装备参考 MP_WXS_3545019176 https://werss.yynnice.top/feed/MP_WXS_3545019176.rss
|
||||
光明军事 MP_WXS_3948650622 https://werss.yynnice.top/feed/MP_WXS_3948650622.rss
|
||||
国防工业出版社 MP_WXS_3083160855 https://werss.yynnice.top/feed/MP_WXS_3083160855.rss
|
||||
前沿深度解码 MP_WXS_3889836759 https://werss.yynnice.top/feed/MP_WXS_3889836759.rss
|
||||
央广军事 MP_WXS_2392718635 https://werss.yynnice.top/feed/MP_WXS_2392718635.rss
|
||||
三剑客 MP_WXS_3891893742 https://werss.yynnice.top/feed/MP_WXS_3891893742.rss
|
||||
书剑杂谈 MP_WXS_3543213462 https://werss.yynnice.top/feed/MP_WXS_3543213462.rss
|
||||
国防时报排头兵 MP_WXS_3015378336 https://werss.yynnice.top/feed/MP_WXS_3015378336.rss
|
||||
凤凰网军事频道 MP_WXS_3545426725 https://werss.yynnice.top/feed/MP_WXS_3545426725.rss
|
||||
军武次位面 MP_WXS_3261086876 https://werss.yynnice.top/feed/MP_WXS_3261086876.rss
|
||||
中国舰船 MP_WXS_3004044381 https://werss.yynnice.top/feed/MP_WXS_3004044381.rss
|
||||
一号哨位 MP_WXS_2393475036 https://werss.yynnice.top/feed/MP_WXS_2393475036.rss
|
||||
兵路文化 MP_WXS_3271103541 https://werss.yynnice.top/feed/MP_WXS_3271103541.rss
|
||||
# ==== 国防科技与无人系统 ====
|
||||
电波之矛 MP_WXS_3004998095 https://werss.yynnice.top/feed/MP_WXS_3004998095.rss
|
||||
全球技术地图 MP_WXS_3259114655 https://werss.yynnice.top/feed/MP_WXS_3259114655.rss
|
||||
无人机邦 MP_WXS_3957361285 https://werss.yynnice.top/feed/MP_WXS_3957361285.rss
|
||||
无人争锋 MP_WXS_3283663941 https://werss.yynnice.top/feed/MP_WXS_3283663941.rss
|
||||
战略前沿技术 MP_WXS_3271903347 https://werss.yynnice.top/feed/MP_WXS_3271903347.rss
|
||||
军民融合观察 MP_WXS_3549249397 https://werss.yynnice.top/feed/MP_WXS_3549249397.rss
|
||||
NEWUAS MP_WXS_3246130840 https://werss.yynnice.top/feed/MP_WXS_3246130840.rss
|
||||
精确打击洞见 MP_WXS_3931193121 https://werss.yynnice.top/feed/MP_WXS_3931193121.rss
|
||||
军事高科技在线 MP_WXS_3562758605 https://werss.yynnice.top/feed/MP_WXS_3562758605.rss
|
||||
国防科技要闻 MP_WXS_3921202880 https://werss.yynnice.top/feed/MP_WXS_3921202880.rss
|
||||
大柳树防务 MP_WXS_3218623168 https://werss.yynnice.top/feed/MP_WXS_3218623168.rss
|
||||
数字孪生战场 MP_WXS_3937277593 https://werss.yynnice.top/feed/MP_WXS_3937277593.rss
|
||||
中国指挥与控制学会 MP_WXS_3088709111 https://werss.yynnice.top/feed/MP_WXS_3088709111.rss
|
||||
望穹科技 MP_WXS_3894541959 https://werss.yynnice.top/feed/MP_WXS_3894541959.rss
|
||||
# ==== 航空航天与太空 ====
|
||||
海鹰资讯 MP_WXS_3091381580 https://werss.yynnice.top/feed/MP_WXS_3091381580.rss
|
||||
空天界 MP_WXS_3223068327 https://werss.yynnice.top/feed/MP_WXS_3223068327.rss
|
||||
浮空飞行器 MP_WXS_3291643707 https://werss.yynnice.top/feed/MP_WXS_3291643707.rss
|
||||
空天大视野 MP_WXS_3291909422 https://werss.yynnice.top/feed/MP_WXS_3291909422.rss
|
||||
航小宇 MP_WXS_3934934363 https://werss.yynnice.top/feed/MP_WXS_3934934363.rss
|
||||
太空与网络 MP_WXS_3078315210 https://werss.yynnice.top/feed/MP_WXS_3078315210.rss
|
||||
# ==== 网络安全 ====
|
||||
奇安网情局 MP_WXS_3288433970 https://werss.yynnice.top/feed/MP_WXS_3288433970.rss
|
||||
安全内参 MP_WXS_3284660303 https://werss.yynnice.top/feed/MP_WXS_3284660303.rss
|
||||
网信前沿观察 MP_WXS_3884585502 https://werss.yynnice.top/feed/MP_WXS_3884585502.rss
|
||||
安全圈 MP_WXS_3233184559 https://werss.yynnice.top/feed/MP_WXS_3233184559.rss
|
||||
# ==== 前沿科技与产业 ====
|
||||
半导体行业观察 MP_WXS_3864835480 https://werss.yynnice.top/feed/MP_WXS_3864835480.rss
|
||||
科技导报 MP_WXS_3070380920 https://werss.yynnice.top/feed/MP_WXS_3070380920.rss
|
||||
搜狐科技 MP_WXS_3569830872 https://werss.yynnice.top/feed/MP_WXS_3569830872.rss
|
||||
智源社区 MP_WXS_3598841003 https://werss.yynnice.top/feed/MP_WXS_3598841003.rss
|
||||
国科环宇 MP_WXS_3932598371 https://werss.yynnice.top/feed/MP_WXS_3932598371.rss
|
||||
最黑科技 MP_WXS_3094611859 https://werss.yynnice.top/feed/MP_WXS_3094611859.rss
|
||||
# ==== 商业财经与管理 ====
|
||||
北大纵横 MP_WXS_2393231480 https://werss.yynnice.top/feed/MP_WXS_2393231480.rss
|
||||
艾瑞咨询 MP_WXS_2399237400 https://werss.yynnice.top/feed/MP_WXS_2399237400.rss
|
||||
正和岛 MP_WXS_2398018440 https://werss.yynnice.top/feed/MP_WXS_2398018440.rss
|
||||
泽平宏观 MP_WXS_3877603551 https://werss.yynnice.top/feed/MP_WXS_3877603551.rss
|
||||
蓝血研究 MP_WXS_3225909356 https://werss.yynnice.top/feed/MP_WXS_3225909356.rss
|
||||
跨境前沿 MP_WXS_3079503503 https://werss.yynnice.top/feed/MP_WXS_3079503503.rss
|
||||
国际法务 MP_WXS_3586411852 https://werss.yynnice.top/feed/MP_WXS_3586411852.rss
|
||||
黑天鹅商业情报站 MP_WXS_3091701544 https://werss.yynnice.top/feed/MP_WXS_3091701544.rss
|
||||
# ==== 国内时事与社会人文 ====
|
||||
南方周末 MP_WXS_699115 https://werss.yynnice.top/feed/MP_WXS_699115.rss
|
||||
阜成门六号院 MP_WXS_3253307008 https://werss.yynnice.top/feed/MP_WXS_3253307008.rss
|
||||
侠客岛 MP_WXS_3070365200 https://werss.yynnice.top/feed/MP_WXS_3070365200.rss
|
||||
混沌巡洋舰 MP_WXS_3073407278 https://werss.yynnice.top/feed/MP_WXS_3073407278.rss
|
||||
大浪淘沙 MP_WXS_2397165646 https://werss.yynnice.top/feed/MP_WXS_2397165646.rss
|
||||
龙牙的一座山 MP_WXS_3517933009 https://werss.yynnice.top/feed/MP_WXS_3517933009.rss
|
||||
明叔杂谈 MP_WXS_3005999417 https://werss.yynnice.top/feed/MP_WXS_3005999417.rss
|
||||
90号茶室 MP_WXS_2391931960 https://werss.yynnice.top/feed/MP_WXS_2391931960.rss
|
||||
施展世界 MP_WXS_3574336774 https://werss.yynnice.top/feed/MP_WXS_3574336774.rss
|
||||
职场老校尉 MP_WXS_3260157145 https://werss.yynnice.top/feed/MP_WXS_3260157145.rss
|
||||
李光满说 MP_WXS_3089234433 https://werss.yynnice.top/feed/MP_WXS_3089234433.rss
|
||||
乌鸦校尉 MP_WXS_3292984219 https://werss.yynnice.top/feed/MP_WXS_3292984219.rss
|
||||
中国舆论场 MP_WXS_3211151294 https://werss.yynnice.top/feed/MP_WXS_3211151294.rss
|
||||
一个坏土豆 MP_WXS_3542082915 https://werss.yynnice.top/feed/MP_WXS_3542082915.rss
|
||||
# ==== 官方信息与综合资讯 ====
|
||||
澎湃新闻 MP_WXS_2393295571 https://werss.yynnice.top/feed/MP_WXS_2393295571.rss
|
||||
观察者网 MP_WXS_2392082080 https://werss.yynnice.top/feed/MP_WXS_2392082080.rss
|
||||
参考消息 MP_WXS_2393041860 https://werss.yynnice.top/feed/MP_WXS_2393041860.rss
|
||||
新华国际头条 MP_WXS_2392135301 https://werss.yynnice.top/feed/MP_WXS_2392135301.rss
|
||||
人民日报 MP_WXS_2392014380 https://werss.yynnice.top/feed/MP_WXS_2392014380.rss
|
||||
美国驻华大使馆 MP_WXS_2390064940 https://werss.yynnice.top/feed/MP_WXS_2390064940.rss
|
||||
@@ -0,0 +1,20 @@
|
||||
# 军事科技RSS订阅源列表
|
||||
# 格式:<源名称>|<RSS地址>
|
||||
# 以#开头的行是注释,会自动忽略
|
||||
# 空行也会自动跳过
|
||||
|
||||
# 英文军事源
|
||||
Defense One|https://www.defenseone.com/rss/all/
|
||||
Seapower|https://seapowermagazine.org/feed/
|
||||
The War Zone|https://www.twz.com/feed
|
||||
|
||||
# 中文微信公众号源
|
||||
NEWUAS|https://werss.yynnice.top/feed/MP_WXS_3246130840.rss
|
||||
国防科技要闻|https://werss.yynnice.top/feed/MP_WXS_3921202880.rss
|
||||
战略前沿技术|https://werss.yynnice.top/feed/MP_WXS_3271903347.rss
|
||||
无人机邦|https://werss.yynnice.top/feed/MP_WXS_3957361285.rss
|
||||
浮空飞行器|https://werss.yynnice.top/feed/MP_WXS_3291643707.rss
|
||||
海鹰资讯|https://werss.yynnice.top/feed/MP_WXS_3091381580.rss
|
||||
渊亭防务|https://werss.yynnice.top/feed/MP_WXS_3865628826.rss
|
||||
电波之矛|https://werss.yynnice.top/feed/MP_WXS_3004998095.rss
|
||||
龙牙的一座山|https://werss.yynnice.top/feed/MP_WXS_3517933009.rss
|
||||
@@ -0,0 +1,139 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<opml version="2.0">
|
||||
<head>
|
||||
<title>军事科技RSS订阅源</title>
|
||||
<dateCreated>Mon, 29 May 2026 12:00:00 +0800</dateCreated>
|
||||
</head>
|
||||
<body>
|
||||
<outline text="英文军事源" title="英文军事源">
|
||||
<outline text="Defense One" title="Defense One" type="rss" xmlUrl="https://www.defenseone.com/rss/all/"/>
|
||||
<outline text="Seapower" title="Seapower" type="rss" xmlUrl="https://seapowermagazine.org/feed/"/>
|
||||
<outline text="The War Zone" title="The War Zone" type="rss" xmlUrl="https://www.twz.com/feed"/>
|
||||
</outline>
|
||||
<outline text="中文微信公众号源" title="中文微信公众号源">
|
||||
<outline text="90号茶室" title="90号茶室" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2391931960.rss"/>
|
||||
<outline text="IPP评论" title="IPP评论" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3087967104.rss"/>
|
||||
<outline text="NEWUAS" title="NEWUAS" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3246130840.rss"/>
|
||||
<outline text="一个坏土豆" title="一个坏土豆" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3542082915.rss"/>
|
||||
<outline text="一号哨位" title="一号哨位" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2393475036.rss"/>
|
||||
<outline text="三剑客" title="三剑客" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3891893742.rss"/>
|
||||
<outline text="上海国际问题研究院" title="上海国际问题研究院" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3008760667.rss"/>
|
||||
<outline text="东南亚问题研究" title="东南亚问题研究" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2391747267.rss"/>
|
||||
<outline text="中国南海研究院" title="中国南海研究院" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3215640033.rss"/>
|
||||
<outline text="中国周边安全研究中心" title="中国周边安全研究中心" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3095455037.rss"/>
|
||||
<outline text="中国国防报" title="中国国防报" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3518062346.rss"/>
|
||||
<outline text="中国指挥与控制学会" title="中国指挥与控制学会" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3088709111.rss"/>
|
||||
<outline text="中国现代国际关系研究院" title="中国现代国际关系研究院" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3013473766.rss"/>
|
||||
<outline text="中国舆论场" title="中国舆论场" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3211151294.rss"/>
|
||||
<outline text="中国舰船" title="中国舰船" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3004044381.rss"/>
|
||||
<outline text="乌鸦校尉" title="乌鸦校尉" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3292984219.rss"/>
|
||||
<outline text="书剑杂谈" title="书剑杂谈" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3543213462.rss"/>
|
||||
<outline text="亚太安全与海洋研究" title="亚太安全与海洋研究" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3003645862.rss"/>
|
||||
<outline text="人大重阳" title="人大重阳" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3092044019.rss"/>
|
||||
<outline text="人民日报" title="人民日报" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2392014380.rss"/>
|
||||
<outline text="今日台湾" title="今日台湾" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3295805547.rss"/>
|
||||
<outline text="侠客岛" title="侠客岛" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3070365200.rss"/>
|
||||
<outline text="光明军事" title="光明军事" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3948650622.rss"/>
|
||||
<outline text="全球技术地图" title="全球技术地图" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3259114655.rss"/>
|
||||
<outline text="六爷阿旦" title="六爷阿旦" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3554694732.rss"/>
|
||||
<outline text="兵路文化" title="兵路文化" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3271103541.rss"/>
|
||||
<outline text="军事文摘" title="军事文摘" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3073744139.rss"/>
|
||||
<outline text="军事高科技在线" title="军事高科技在线" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3562758605.rss"/>
|
||||
<outline text="军武次位面" title="军武次位面" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3261086876.rss"/>
|
||||
<outline text="军民融合观察" title="军民融合观察" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3549249397.rss"/>
|
||||
<outline text="军鹰动态" title="军鹰动态" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3289924814.rss"/>
|
||||
<outline text="凤凰网军事频道" title="凤凰网军事频道" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3545426725.rss"/>
|
||||
<outline text="前沿深度解码" title="前沿深度解码" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3889836759.rss"/>
|
||||
<outline text="动态大参考" title="动态大参考" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2391979278.rss"/>
|
||||
<outline text="北大纵横" title="北大纵横" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2393231480.rss"/>
|
||||
<outline text="半导体行业观察" title="半导体行业观察" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3864835480.rss"/>
|
||||
<outline text="华山穹剑" title="华山穹剑" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3096373438.rss"/>
|
||||
<outline text="华语智库" title="华语智库" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3207743237.rss"/>
|
||||
<outline text="南方周末" title="南方周末" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_699115.rss"/>
|
||||
<outline text="占知智库" title="占知智库" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3296995449.rss"/>
|
||||
<outline text="占豪" title="占豪" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3516511878.rss"/>
|
||||
<outline text="参考消息" title="参考消息" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2393041860.rss"/>
|
||||
<outline text="参考消息智库" title="参考消息智库" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2393278785.rss"/>
|
||||
<outline text="国科环宇" title="国科环宇" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3932598371.rss"/>
|
||||
<outline text="国观智库" title="国观智库" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2390460653.rss"/>
|
||||
<outline text="国防工业出版社" title="国防工业出版社" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3083160855.rss"/>
|
||||
<outline text="国防时报排头兵" title="国防时报排头兵" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3015378336.rss"/>
|
||||
<outline text="国防科技要闻" title="国防科技要闻" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3921202880.rss"/>
|
||||
<outline text="国际法务" title="国际法务" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3586411852.rss"/>
|
||||
<outline text="复旦大学中国研究院" title="复旦大学中国研究院" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3284625196.rss"/>
|
||||
<outline text="大柳树防务" title="大柳树防务" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3218623168.rss"/>
|
||||
<outline text="大浪淘沙" title="大浪淘沙" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2397165646.rss"/>
|
||||
<outline text="大湾区评论" title="大湾区评论" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3881524286.rss"/>
|
||||
<outline text="太空与网络" title="太空与网络" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3078315210.rss"/>
|
||||
<outline text="央广军事" title="央广军事" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2392718635.rss"/>
|
||||
<outline text="奇安网情局" title="奇安网情局" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3288433970.rss"/>
|
||||
<outline text="安全内参" title="安全内参" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3284660303.rss"/>
|
||||
<outline text="安全圈" title="安全圈" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3233184559.rss"/>
|
||||
<outline text="戎评" title="戎评" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3207447547.rss"/>
|
||||
<outline text="战略前沿技术" title="战略前沿技术" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3271903347.rss"/>
|
||||
<outline text="战略纵横家" title="战略纵横家" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3070598345.rss"/>
|
||||
<outline text="搜狐科技" title="搜狐科技" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3569830872.rss"/>
|
||||
<outline text="数字孪生战场" title="数字孪生战场" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3937277593.rss"/>
|
||||
<outline text="新华国际头条" title="新华国际头条" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2392135301.rss"/>
|
||||
<outline text="施展世界" title="施展世界" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3574336774.rss"/>
|
||||
<outline text="无人争锋" title="无人争锋" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3283663941.rss"/>
|
||||
<outline text="无人机邦" title="无人机邦" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3957361285.rss"/>
|
||||
<outline text="时政国关分析" title="时政国关分析" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3076746747.rss"/>
|
||||
<outline text="明叔杂谈" title="明叔杂谈" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3005999417.rss"/>
|
||||
<outline text="智强战略咨询" title="智强战略咨询" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3247764091.rss"/>
|
||||
<outline text="智源社区" title="智源社区" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3598841003.rss"/>
|
||||
<outline text="最黑科技" title="最黑科技" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3094611859.rss"/>
|
||||
<outline text="望穹科技" title="望穹科技" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3894541959.rss"/>
|
||||
<outline text="李光满说" title="李光满说" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3089234433.rss"/>
|
||||
<outline text="梅特涅的信徒" title="梅特涅的信徒" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3207441864.rss"/>
|
||||
<outline text="欧亚新观察" title="欧亚新观察" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3210250850.rss"/>
|
||||
<outline text="正和岛" title="正和岛" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2398018440.rss"/>
|
||||
<outline text="沃德舆情观察" title="沃德舆情观察" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2399567124.rss"/>
|
||||
<outline text="泽平宏观" title="泽平宏观" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3877603551.rss"/>
|
||||
<outline text="浮空飞行器" title="浮空飞行器" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3291643707.rss"/>
|
||||
<outline text="海洋防务前沿" title="海洋防务前沿" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3920305066.rss"/>
|
||||
<outline text="海鹰资讯" title="海鹰资讯" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3091381580.rss"/>
|
||||
<outline text="混沌巡洋舰" title="混沌巡洋舰" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3073407278.rss"/>
|
||||
<outline text="渊亭防务" title="渊亭防务" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3865628826.rss"/>
|
||||
<outline text="澎湃新闻" title="澎湃新闻" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2393295571.rss"/>
|
||||
<outline text="牛弹琴" title="牛弹琴" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3099984603.rss"/>
|
||||
<outline text="环太国际战略" title="环太国际战略" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3092636490.rss"/>
|
||||
<outline text="环时枢密院十号" title="环时枢密院十号" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3889757200.rss"/>
|
||||
<outline text="电波之矛" title="电波之矛" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3004998095.rss"/>
|
||||
<outline text="白马V视角" title="白马V视角" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3073217929.rss"/>
|
||||
<outline text="盘古智库" title="盘古智库" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3090238314.rss"/>
|
||||
<outline text="盛唐如松" title="盛唐如松" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3018607289.rss"/>
|
||||
<outline text="瞭望智库" title="瞭望智库" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3990649802.rss"/>
|
||||
<outline text="知远战略与防务研究所" title="知远战略与防务研究所" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3074319407.rss"/>
|
||||
<outline text="破圈了" title="破圈了" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3896642917.rss"/>
|
||||
<outline text="砺剑" title="砺剑" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3074198822.rss"/>
|
||||
<outline text="科技导报" title="科技导报" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3070380920.rss"/>
|
||||
<outline text="秦安战略" title="秦安战略" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3090850520.rss"/>
|
||||
<outline text="空天大视野" title="空天大视野" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3291909422.rss"/>
|
||||
<outline text="空天界" title="空天界" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3223068327.rss"/>
|
||||
<outline text="米尔观天下" title="米尔观天下" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3916786326.rss"/>
|
||||
<outline text="精确打击洞见" title="精确打击洞见" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3931193121.rss"/>
|
||||
<outline text="纯科学" title="纯科学" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3098610162.rss"/>
|
||||
<outline text="网信前沿观察" title="网信前沿观察" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3884585502.rss"/>
|
||||
<outline text="美国驻华大使馆" title="美国驻华大使馆" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2390064940.rss"/>
|
||||
<outline text="职场老校尉" title="职场老校尉" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3260157145.rss"/>
|
||||
<outline text="胡锡进观察" title="胡锡进观察" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3557544392.rss"/>
|
||||
<outline text="舆情文摘" title="舆情文摘" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3218815490.rss"/>
|
||||
<outline text="航小宇" title="航小宇" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3934934363.rss"/>
|
||||
<outline text="艾瑞咨询" title="艾瑞咨询" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2399237400.rss"/>
|
||||
<outline text="蓝血研究" title="蓝血研究" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3225909356.rss"/>
|
||||
<outline text="补三刀" title="补三刀" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3567246386.rss"/>
|
||||
<outline text="补壹刀" title="补壹刀" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3698108903.rss"/>
|
||||
<outline text="装备参考" title="装备参考" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3545019176.rss"/>
|
||||
<outline text="观察者网" title="观察者网" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2392082080.rss"/>
|
||||
<outline text="跨境前沿" title="跨境前沿" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3079503503.rss"/>
|
||||
<outline text="远望智库" title="远望智库" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3081622154.rss"/>
|
||||
<outline text="迷彩虎观察" title="迷彩虎观察" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3297325221.rss"/>
|
||||
<outline text="阜成门六号院" title="阜成门六号院" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3253307008.rss"/>
|
||||
<outline text="防务快讯" title="防务快讯" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3511027745.rss"/>
|
||||
<outline text="防务指南" title="防务指南" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_2399475774.rss"/>
|
||||
<outline text="黑天鹅商业情报站" title="黑天鹅商业情报站" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3091701544.rss"/>
|
||||
<outline text="龙牙的一座山" title="龙牙的一座山" type="rss" xmlUrl="https://werss.yynnice.top/feed/MP_WXS_3517933009.rss"/>
|
||||
</outline>
|
||||
</body>
|
||||
</opml>
|
||||
@@ -0,0 +1,135 @@
|
||||
# 军事科技RSS订阅源列表(合并版)
|
||||
# 格式:<源名称>|<RSS地址>
|
||||
# 以#开头的行是注释,会自动忽略
|
||||
# 空行也会自动跳过
|
||||
# 合并时间: 2026-05-29
|
||||
|
||||
# 英文军事源
|
||||
Defense One|https://www.defenseone.com/rss/all/
|
||||
Seapower|https://seapowermagazine.org/feed/
|
||||
The War Zone|https://www.twz.com/feed
|
||||
|
||||
# 中文微信公众号源
|
||||
90号茶室|https://werss.yynnice.top/feed/MP_WXS_2391931960.rss
|
||||
IPP评论|https://werss.yynnice.top/feed/MP_WXS_3087967104.rss
|
||||
NEWUAS|https://werss.yynnice.top/feed/MP_WXS_3246130840.rss
|
||||
一个坏土豆|https://werss.yynnice.top/feed/MP_WXS_3542082915.rss
|
||||
一号哨位|https://werss.yynnice.top/feed/MP_WXS_2393475036.rss
|
||||
三剑客|https://werss.yynnice.top/feed/MP_WXS_3891893742.rss
|
||||
上海国际问题研究院|https://werss.yynnice.top/feed/MP_WXS_3008760667.rss
|
||||
东南亚问题研究|https://werss.yynnice.top/feed/MP_WXS_2391747267.rss
|
||||
中国南海研究院|https://werss.yynnice.top/feed/MP_WXS_3215640033.rss
|
||||
中国周边安全研究中心|https://werss.yynnice.top/feed/MP_WXS_3095455037.rss
|
||||
中国国防报|https://werss.yynnice.top/feed/MP_WXS_3518062346.rss
|
||||
中国指挥与控制学会|https://werss.yynnice.top/feed/MP_WXS_3088709111.rss
|
||||
中国现代国际关系研究院|https://werss.yynnice.top/feed/MP_WXS_3013473766.rss
|
||||
中国舆论场|https://werss.yynnice.top/feed/MP_WXS_3211151294.rss
|
||||
中国舰船|https://werss.yynnice.top/feed/MP_WXS_3004044381.rss
|
||||
乌鸦校尉|https://werss.yynnice.top/feed/MP_WXS_3292984219.rss
|
||||
书剑杂谈|https://werss.yynnice.top/feed/MP_WXS_3543213462.rss
|
||||
亚太安全与海洋研究|https://werss.yynnice.top/feed/MP_WXS_3003645862.rss
|
||||
人大重阳|https://werss.yynnice.top/feed/MP_WXS_3092044019.rss
|
||||
人民日报|https://werss.yynnice.top/feed/MP_WXS_2392014380.rss
|
||||
今日台湾|https://werss.yynnice.top/feed/MP_WXS_3295805547.rss
|
||||
侠客岛|https://werss.yynnice.top/feed/MP_WXS_3070365200.rss
|
||||
光明军事|https://werss.yynnice.top/feed/MP_WXS_3948650622.rss
|
||||
全球技术地图|https://werss.yynnice.top/feed/MP_WXS_3259114655.rss
|
||||
六爷阿旦|https://werss.yynnice.top/feed/MP_WXS_3554694732.rss
|
||||
兵路文化|https://werss.yynnice.top/feed/MP_WXS_3271103541.rss
|
||||
军事文摘|https://werss.yynnice.top/feed/MP_WXS_3073744139.rss
|
||||
军事高科技在线|https://werss.yynnice.top/feed/MP_WXS_3562758605.rss
|
||||
军武次位面|https://werss.yynnice.top/feed/MP_WXS_3261086876.rss
|
||||
军民融合观察|https://werss.yynnice.top/feed/MP_WXS_3549249397.rss
|
||||
军鹰动态|https://werss.yynnice.top/feed/MP_WXS_3289924814.rss
|
||||
凤凰网军事频道|https://werss.yynnice.top/feed/MP_WXS_3545426725.rss
|
||||
前沿深度解码|https://werss.yynnice.top/feed/MP_WXS_3889836759.rss
|
||||
动态大参考|https://werss.yynnice.top/feed/MP_WXS_2391979278.rss
|
||||
北大纵横|https://werss.yynnice.top/feed/MP_WXS_2393231480.rss
|
||||
半导体行业观察|https://werss.yynnice.top/feed/MP_WXS_3864835480.rss
|
||||
华山穹剑|https://werss.yynnice.top/feed/MP_WXS_3096373438.rss
|
||||
华语智库|https://werss.yynnice.top/feed/MP_WXS_3207743237.rss
|
||||
南方周末|https://werss.yynnice.top/feed/MP_WXS_699115.rss
|
||||
占知智库|https://werss.yynnice.top/feed/MP_WXS_3296995449.rss
|
||||
占豪|https://werss.yynnice.top/feed/MP_WXS_3516511878.rss
|
||||
参考消息|https://werss.yynnice.top/feed/MP_WXS_2393041860.rss
|
||||
参考消息智库|https://werss.yynnice.top/feed/MP_WXS_2393278785.rss
|
||||
国科环宇|https://werss.yynnice.top/feed/MP_WXS_3932598371.rss
|
||||
国观智库|https://werss.yynnice.top/feed/MP_WXS_2390460653.rss
|
||||
国防工业出版社|https://werss.yynnice.top/feed/MP_WXS_3083160855.rss
|
||||
国防时报排头兵|https://werss.yynnice.top/feed/MP_WXS_3015378336.rss
|
||||
国防科技要闻|https://werss.yynnice.top/feed/MP_WXS_3921202880.rss
|
||||
国际法务|https://werss.yynnice.top/feed/MP_WXS_3586411852.rss
|
||||
复旦大学中国研究院|https://werss.yynnice.top/feed/MP_WXS_3284625196.rss
|
||||
大柳树防务|https://werss.yynnice.top/feed/MP_WXS_3218623168.rss
|
||||
大浪淘沙|https://werss.yynnice.top/feed/MP_WXS_2397165646.rss
|
||||
大湾区评论|https://werss.yynnice.top/feed/MP_WXS_3881524286.rss
|
||||
太空与网络|https://werss.yynnice.top/feed/MP_WXS_3078315210.rss
|
||||
央广军事|https://werss.yynnice.top/feed/MP_WXS_2392718635.rss
|
||||
奇安网情局|https://werss.yynnice.top/feed/MP_WXS_3288433970.rss
|
||||
安全内参|https://werss.yynnice.top/feed/MP_WXS_3284660303.rss
|
||||
安全圈|https://werss.yynnice.top/feed/MP_WXS_3233184559.rss
|
||||
戎评|https://werss.yynnice.top/feed/MP_WXS_3207447547.rss
|
||||
战略前沿技术|https://werss.yynnice.top/feed/MP_WXS_3271903347.rss
|
||||
战略纵横家|https://werss.yynnice.top/feed/MP_WXS_3070598345.rss
|
||||
搜狐科技|https://werss.yynnice.top/feed/MP_WXS_3569830872.rss
|
||||
数字孪生战场|https://werss.yynnice.top/feed/MP_WXS_3937277593.rss
|
||||
新华国际头条|https://werss.yynnice.top/feed/MP_WXS_2392135301.rss
|
||||
施展世界|https://werss.yynnice.top/feed/MP_WXS_3574336774.rss
|
||||
无人争锋|https://werss.yynnice.top/feed/MP_WXS_3283663941.rss
|
||||
无人机邦|https://werss.yynnice.top/feed/MP_WXS_3957361285.rss
|
||||
时政国关分析|https://werss.yynnice.top/feed/MP_WXS_3076746747.rss
|
||||
明叔杂谈|https://werss.yynnice.top/feed/MP_WXS_3005999417.rss
|
||||
智强战略咨询|https://werss.yynnice.top/feed/MP_WXS_3247764091.rss
|
||||
智源社区|https://werss.yynnice.top/feed/MP_WXS_3598841003.rss
|
||||
最黑科技|https://werss.yynnice.top/feed/MP_WXS_3094611859.rss
|
||||
望穹科技|https://werss.yynnice.top/feed/MP_WXS_3894541959.rss
|
||||
李光满说|https://werss.yynnice.top/feed/MP_WXS_3089234433.rss
|
||||
梅特涅的信徒|https://werss.yynnice.top/feed/MP_WXS_3207441864.rss
|
||||
欧亚新观察|https://werss.yynnice.top/feed/MP_WXS_3210250850.rss
|
||||
正和岛|https://werss.yynnice.top/feed/MP_WXS_2398018440.rss
|
||||
沃德舆情观察|https://werss.yynnice.top/feed/MP_WXS_2399567124.rss
|
||||
泽平宏观|https://werss.yynnice.top/feed/MP_WXS_3877603551.rss
|
||||
浮空飞行器|https://werss.yynnice.top/feed/MP_WXS_3291643707.rss
|
||||
海洋防务前沿|https://werss.yynnice.top/feed/MP_WXS_3920305066.rss
|
||||
海鹰资讯|https://werss.yynnice.top/feed/MP_WXS_3091381580.rss
|
||||
混沌巡洋舰|https://werss.yynnice.top/feed/MP_WXS_3073407278.rss
|
||||
渊亭防务|https://werss.yynnice.top/feed/MP_WXS_3865628826.rss
|
||||
澎湃新闻|https://werss.yynnice.top/feed/MP_WXS_2393295571.rss
|
||||
牛弹琴|https://werss.yynnice.top/feed/MP_WXS_3099984603.rss
|
||||
环太国际战略|https://werss.yynnice.top/feed/MP_WXS_3092636490.rss
|
||||
环时枢密院十号|https://werss.yynnice.top/feed/MP_WXS_3889757200.rss
|
||||
电波之矛|https://werss.yynnice.top/feed/MP_WXS_3004998095.rss
|
||||
白马V视角|https://werss.yynnice.top/feed/MP_WXS_3073217929.rss
|
||||
盘古智库|https://werss.yynnice.top/feed/MP_WXS_3090238314.rss
|
||||
盛唐如松|https://werss.yynnice.top/feed/MP_WXS_3018607289.rss
|
||||
瞭望智库|https://werss.yynnice.top/feed/MP_WXS_3990649802.rss
|
||||
知远战略与防务研究所|https://werss.yynnice.top/feed/MP_WXS_3074319407.rss
|
||||
破圈了|https://werss.yynnice.top/feed/MP_WXS_3896642917.rss
|
||||
砺剑|https://werss.yynnice.top/feed/MP_WXS_3074198822.rss
|
||||
科技导报|https://werss.yynnice.top/feed/MP_WXS_3070380920.rss
|
||||
秦安战略|https://werss.yynnice.top/feed/MP_WXS_3090850520.rss
|
||||
空天大视野|https://werss.yynnice.top/feed/MP_WXS_3291909422.rss
|
||||
空天界|https://werss.yynnice.top/feed/MP_WXS_3223068327.rss
|
||||
米尔观天下|https://werss.yynnice.top/feed/MP_WXS_3916786326.rss
|
||||
精确打击洞见|https://werss.yynnice.top/feed/MP_WXS_3931193121.rss
|
||||
纯科学|https://werss.yynnice.top/feed/MP_WXS_3098610162.rss
|
||||
网信前沿观察|https://werss.yynnice.top/feed/MP_WXS_3884585502.rss
|
||||
美国驻华大使馆|https://werss.yynnice.top/feed/MP_WXS_2390064940.rss
|
||||
职场老校尉|https://werss.yynnice.top/feed/MP_WXS_3260157145.rss
|
||||
胡锡进观察|https://werss.yynnice.top/feed/MP_WXS_3557544392.rss
|
||||
舆情文摘|https://werss.yynnice.top/feed/MP_WXS_3218815490.rss
|
||||
航小宇|https://werss.yynnice.top/feed/MP_WXS_3934934363.rss
|
||||
艾瑞咨询|https://werss.yynnice.top/feed/MP_WXS_2399237400.rss
|
||||
蓝血研究|https://werss.yynnice.top/feed/MP_WXS_3225909356.rss
|
||||
补三刀|https://werss.yynnice.top/feed/MP_WXS_3567246386.rss
|
||||
补壹刀|https://werss.yynnice.top/feed/MP_WXS_3698108903.rss
|
||||
装备参考|https://werss.yynnice.top/feed/MP_WXS_3545019176.rss
|
||||
观察者网|https://werss.yynnice.top/feed/MP_WXS_2392082080.rss
|
||||
跨境前沿|https://werss.yynnice.top/feed/MP_WXS_3079503503.rss
|
||||
远望智库|https://werss.yynnice.top/feed/MP_WXS_3081622154.rss
|
||||
迷彩虎观察|https://werss.yynnice.top/feed/MP_WXS_3297325221.rss
|
||||
阜成门六号院|https://werss.yynnice.top/feed/MP_WXS_3253307008.rss
|
||||
防务快讯|https://werss.yynnice.top/feed/MP_WXS_3511027745.rss
|
||||
防务指南|https://werss.yynnice.top/feed/MP_WXS_2399475774.rss
|
||||
黑天鹅商业情报站|https://werss.yynnice.top/feed/MP_WXS_3091701544.rss
|
||||
龙牙的一座山|https://werss.yynnice.top/feed/MP_WXS_3517933009.rss
|
||||
Reference in New Issue
Block a user