v0.3.6test

This commit is contained in:
bigbrother666sh 2025-01-02 22:05:51 +08:00
parent dc8391c357
commit b4da3cc853
72 changed files with 1811 additions and 14057 deletions

View File

@ -45,7 +45,7 @@ wiseflow自2024年6月底发布 V0.3.0版本来受到了开源社区的广泛关
| | 与 **首席情报官Wiseflow** 的比较说明|
|-------------|-----------------|
| **爬虫类工具** | 首先 wiseflow 是基于爬虫工具的项目(以目前版本而言,我们基于爬虫框架 Crawlee),但传统的爬虫工具在信息提取方面需要人工的介入,提供明确的 Xpath 等信息……这不仅阻挡了普通用户,同时也毫无通用性可言,对于不同网站(包括已有网站升级后)都需要人工重做分析,并更新提取代码。wiseflow致力于使用 LLM 自动化网页的分析和提取工作,用户只要告诉程序他的关注点即可,从这个角度来说,可以简单理解 wiseflow 为 “能自动使用爬虫工具的 AI 智能体” |
| **爬虫类工具** | 首先 wiseflow 是基于爬虫工具的项目(目前我们基于的是 Crawl4ai),但传统的爬虫工具在信息提取方面需要人工的提供明确的 Xpath 等信息……这不仅阻挡了普通用户,同时也毫无通用性可言,对于不同网站(包括已有网站升级后)都需要人工重做分析,更新程序。wiseflow致力于使用 LLM 自动化网页的分析和提取工作,用户只要告诉程序他的关注点即可。 如果以 Crawl4ai 为例对比说明Crawl4ai 是会使用 llm 进行信息提取的爬虫而wiseflow 则是会使用爬虫工具的llm信息提取器。|
| **AI搜索** | AI搜索主要的应用场景是**具体问题的即时问答**举例”XX公司的创始人是谁“、“xx品牌下的xx产品哪里有售” ,用户要的是**一个答案**wiseflow主要的应用场景是**某一方面信息的持续采集**比如XX公司的关联信息追踪XX品牌市场行为的持续追踪……在这些场景下用户能提供关注点某公司、某品牌、甚至能提供信源站点 url 等),但无法提出具体搜索问题,用户要的是**一系列相关信息**|
| **知识库RAG类项目** | 知识库RAG类项目一般是基于已有信息的下游任务并且一般面向的是私有知识比如企业内的操作手册、产品手册、政府部门的文件等wiseflow 目前并未整合下游任务同时面向的是互联网上的公开信息如果从“智能体”的角度来看二者属于为不同目的而构建的智能体RAG 类项目是“(内部)知识助理智能体”,而 wiseflow 则是“(外部)信息采集智能体”|
@ -55,7 +55,7 @@ wiseflow自2024年6月底发布 V0.3.0版本来受到了开源社区的广泛关
🌹 点赞、fork是好习惯 🌹
**windows 用户请提前下载 git bash 工具** [链接](https://git-scm.com/downloads/win)
**windows 用户请提前下载 git bash 工具,并在 bash 中执行如下命令** [bash下载链接](https://git-scm.com/downloads/win)
```bash
git clone https://github.com/TeamWiseFlow/wiseflow.git
@ -65,6 +65,8 @@ git clone https://github.com/TeamWiseFlow/wiseflow.git
该脚本会引导下载并配置 pocketbase版本选择0.23.4),同时在 core 下创建 .env 文件。
注意:该脚本目前不支持 windows 操作系统windows 用户可以手动去 https://github.com/pocketbase/pocketbase/releases/tag/v0.23.4 下载,解压放入 wiseflow/pb 目录下
```bash
chmod +x install_pocketbase.sh
./install_pocketbase.sh

View File

@ -1,53 +1,61 @@
from llms.openai_wrapper import openai_llm as llm
# from core.llms.siliconflow_wrapper import sfa_llm
from utils.general_utils import is_chinese, extract_and_convert_dates, extract_urls
# -*- coding: utf-8 -*-
from loguru import logger
from utils.pb_api import PbTalker
import os, re
import os, re, sys
from datetime import datetime
from urllib.parse import urlparse
import json_repair
current_dir = os.path.dirname(os.path.abspath(__file__))
project_root = os.path.dirname(current_dir) # get parent dir
sys.path.append(project_root)
list_judge_threshold = 0.007
valid_list_min_length = 10
min_content_length = 420
from utils.deep_scraper import common_chars, common_file_exts, common_tlds
from utils.pb_api import PbTalker
from llms.openai_wrapper import openai_llm as llm
# from llms.siliconflow_wrapper import sfa_llm # or other llm wrapper
from utils.general_utils import is_chinese, extract_and_convert_dates, extract_urls
common_file_exts = [
'jpg', 'jpeg', 'png', 'gif', 'pdf', 'doc', 'docx', 'svg', 'm3u8',
'mp4', 'mp3', 'wav', 'avi', 'mov', 'wmv', 'flv', 'webp', 'webm',
'zip', 'rar', '7z', 'tar', 'gz', 'bz2',
'txt', 'csv', 'xls', 'xlsx', 'ppt', 'pptx',
'json', 'xml', 'yaml', 'yml', 'css', 'js', 'php', 'asp', 'jsp'
]
common_tlds = [
'.com', '.cn', '.net', '.org', '.edu', '.gov', '.io', '.co',
'.info', '.biz', '.me', '.tv', '.cc', '.xyz', '.app', '.dev',
'.cloud', '.ai', '.tech', '.online', '.store', '.shop', '.site',
'.top', '.vip', '.pro', '.ltd', '.group', '.team', '.work'
]
def find_article_or_list(link_dict: dict, text: str) -> (bool, bool, dict, str):
lines = [l.strip() for l in text.split('\n') if l.strip()]
text = '\n'.join(lines)
for key, value in link_dict.items():
link_dict[key] = value.lower()
async def get_author_and_publish_date(text: str) -> tuple[str, str]:
if not text:
return "", ""
text_no_tags = re.sub(r'<\w{1,5}>', '', text)
text_no_urls = re.sub(r'\[url\d+]', '', text_no_tags)
content_length = len(text_no_urls)
if len(text) > 1024:
text = f'{text[:500]}......{text[-500:]}'
valid_url = set()
for url in link_dict.values():
has_common_ext = any(url.endswith(ext) for ext in common_file_exts)
has_common_tld = any(url.endswith(tld) or url.endswith(tld + '/') for tld in common_tlds)
if not has_common_ext and not has_common_tld:
valid_url.add(url)
system_prompt = "As an information extraction assistant, your task is to accurately extract the source (or author) and publication date from the given webpage text. It is important to adhere to extracting the information directly from the original text. If the original text does not contain a particular piece of information, please replace it with NA"
suffix = '''Please output the extracted information in the following JSON format:
{"source": source or article author (use "NA" if this information cannot be extracted), "publish_date": extracted publication date (keep only the year, month, and day; use "NA" if this information cannot be extracted)}'''
valid_url_rate = len(valid_url) / content_length
is_list = valid_url_rate > list_judge_threshold and len(valid_url) > valid_list_min_length
need_more_info = content_length < min_content_length
return is_list, need_more_info, link_dict, text
content = f'<text>\n{text}\n</text>\n\n{suffix}'
llm_output = await llm([{'role': 'system', 'content': system_prompt}, {'role': 'user', 'content': content}],
model=self.secondary_model, max_tokens=50, temperature=0.1, response_format={"type": "json_object"})
if not llm_output:
return '', ''
result = json_repair.repair_json(llm_output, return_objects=True)
if not isinstance(result, dict):
print("failed to parse from llm output")
return '', ''
if 'source' not in result or 'publish_date' not in result:
print("failed to parse from llm output")
return '', ''
return result['source'], extract_and_convert_dates(result['publish_date'])
async def extract_info_from_img(task: list, vl_model: str) -> dict:
cache = {}
for url in task:
llm_output = await llm([{"role": "user",
"content": [{"type": "image_url", "image_url": {"url": url, "detail": "high"}},
{"type": "text", "text": "提取图片中的所有文字如果图片不包含文字或者文字很少或者你判断图片仅是网站logo、商标、图标等则输出NA。注意请仅输出提取出的文字不要输出别的任何内容。"}]}],
model=vl_model)
cache[url] = llm_output
return cache
class GeneralInfoExtractor:
@ -57,11 +65,17 @@ class GeneralInfoExtractor:
self.model = os.environ.get("PRIMARY_MODEL", "")
self.secondary_model = os.environ.get("SECONDARY_MODEL", "")
if not self.model or not self.secondary_model:
self.logger.error("PRIMARY_MODEL or SECONDARY_MODEL not set, can't continue")
raise ValueError("PRIMARY_MODEL or SECONDARY_MODEL not set, please set it in environment variables or edit core/.env")
if not self.model:
self.logger.error("PRIMARY_MODEL not set, can't continue")
raise ValueError("PRIMARY_MODEL not set, please set it in environment variables or edit core/.env")
if not self.secondary_model:
self.logger.warning("SECONDARY_MODEL not set, will use primary model for secondary model, pls attention the request rate limit")
self.secondary_model = self.model
self.vl_model = os.environ.get("VL_MODEL", "")
if not self.vl_model:
self.logger.warning("VL_MODEL not set, will skip extracting info from img, some info may be lost!")
# collect tags user set in pb database and determin the system prompt language based on tags
focus_data = pb.read(collection_name='focus_points', filter=f'activated=True')
@ -178,35 +192,6 @@ text2
self.info_judge_suffix = 'First, output all found text fragments, then output the final conclusion (only "Y" or "N").'
async def get_author_and_publish_date(self, text: str) -> tuple[str, str]:
if not text:
return "", ""
if len(text) > 1024:
text = f'{text[:500]}......{text[-500:]}'
system_prompt = "As an information extraction assistant, your task is to accurately extract the source (or author) and publication date from the given webpage text. It is important to adhere to extracting the information directly from the original text. If the original text does not contain a particular piece of information, please replace it with NA"
suffix = '''Please output the extracted information in the following JSON format:
{"source": source or article author (use "NA" if this information cannot be extracted), "publish_date": extracted publication date (keep only the year, month, and day; use "NA" if this information cannot be extracted)}'''
content = f'<text>\n{text}\n</text>\n\n{suffix}'
llm_output = await llm([{'role': 'system', 'content': system_prompt}, {'role': 'user', 'content': content}],
model=self.secondary_model, max_tokens=50, temperature=0.1, response_format={"type": "json_object"})
self.logger.debug(f'get_author_and_publish_date llm output:\n{llm_output}')
if not llm_output:
return '', ''
result = json_repair.repair_json(llm_output, return_objects=True)
if not isinstance(result, dict):
self.logger.warning("failed to parse from llm output")
return '', ''
if 'source' not in result or 'publish_date' not in result:
self.logger.warning("failed to parse from llm output")
return '', ''
return result['source'], extract_and_convert_dates(result['publish_date'])
async def _generate_results(self, text: str, mode: str) -> set:
if mode == 'get_info':
system_prompt = self.get_info_prompt
@ -261,36 +246,6 @@ text2
item = item.split('\n')
cache.update(item)
return cache
async def _extract_info_from_img(self, text, link_dict) -> str:
if not self.vl_model:
self.logger.warning("vl model not found, skip extracting info from img")
return text
cache = {}
pattern = r'<img>\[url\d+\]'
matches = re.findall(pattern, text)
for match in matches:
key = match.split('[url')[1][:-1]
url = link_dict.get(f'url{key}', '')
if not url:
continue
if url in cache:
replace_text = cache[url]
else:
if any(url.endswith(tld) or url.endswith(tld + '/') for tld in common_tlds):
continue
if any(url.endswith(ext) for ext in common_file_exts if ext not in ['jpg', 'jpeg', 'png']):
continue
llm_output = await llm([{"role": "user",
"content": [{"type": "image_url", "image_url": {"url": url, "detail": "high"}},
{"type": "text", "text": "提取图片中的所有文字如果图片不包含文字或者文字很少或者你判断图片仅是网站logo、商标、图标等则输出NA。注意请仅输出提取出的文字不要输出别的任何内容。"}]}],
model=self.vl_model)
self.logger.debug(f"vl model output: \n{llm_output}\n")
replace_text = llm_output
cache[url] = replace_text
text = text.replace(match, f'{replace_text}{match}', 1)
return text
async def get_more_related_urls(self, link_dict: dict, text: str) -> list[str]:
raw_result = await self._generate_results(text, 'get_link')

View File

@ -8,7 +8,7 @@
import os, re
import json
import time
from urllib.parse import urlparse, urljoin
from urllib.parse import urlparse, urljoin, quote
common_file_exts = [
@ -28,20 +28,24 @@ common_tlds = [
common_chars = ',.!;:,;:、一二三四五六七八九十#*@% \t\n\r|*-_…>#'
def normalize_url(url: str) -> str:
if url.startswith("www."):
if url.lower().startswith("www."):
url = f"https://{url}"
parsed_url = urlparse(url)
if not parsed_url.netloc:
return ''
# 处理路径中的多余斜杠
path = re.sub(r'//+', '/', parsed_url.path)
# remove hash fragment
path = quote(re.sub(r'//+', '/', parsed_url.path))
# 构建查询字符串
query = f"?{quote(parsed_url.query)}" if parsed_url.query else ""
# 构建完整URL
if not parsed_url.scheme:
# just try https
return f"https://{parsed_url.netloc}{path}{parsed_url.params}{parsed_url.query}"
return f"https://{parsed_url.netloc}{path}{parsed_url.params}{query}"
else:
return f"{parsed_url.scheme}://{parsed_url.netloc}{path}{parsed_url.params}{parsed_url.query}"
return f"{parsed_url.scheme}://{parsed_url.netloc}{path}{parsed_url.params}{query}"
def deep_scraper(raw_markdown: str, base_url: str, used_img: dict[str, str]) -> tuple[dict, tuple[str, dict]]:
@ -157,7 +161,7 @@ def deep_scraper(raw_markdown: str, base_url: str, used_img: dict[str, str]) ->
img_src = alt_img_src
img_alt = alt_img_alt
if not img_src:
if not img_src or img_src.startswith('#'):
continue
img_src = img_src.lower()
@ -166,8 +170,6 @@ def deep_scraper(raw_markdown: str, base_url: str, used_img: dict[str, str]) ->
if any(img_src.endswith(ext) for ext in common_file_exts if ext not in ['jpg', 'jpeg', 'png']):
continue
if not img_src or img_src.startswith('#'):
continue
if img_src.startswith('//'):
img_src = f"https:{img_src}"
else:
@ -197,6 +199,10 @@ def deep_scraper(raw_markdown: str, base_url: str, used_img: dict[str, str]) ->
alt = used_img[src]
src = src.strip().lower()
if not src or src.startswith('#'):
html_text = html_text.replace(match, alt)
continue
if any(src.endswith(tld) or src.endswith(tld + '/') for tld in common_tlds):
html_text = html_text.replace(match, alt)
continue
@ -204,9 +210,6 @@ def deep_scraper(raw_markdown: str, base_url: str, used_img: dict[str, str]) ->
html_text = html_text.replace(match, alt)
continue
if not src or src.startswith('#'):
html_text = html_text.replace(match, alt)
continue
if src.startswith('//'):
src = f"https:{src}"
else:

View File

@ -7,7 +7,7 @@ import json
sites = [
"https://www.cnaiplus.com/a/news/?btwaf=75608141"
"https://www.lejucaijing.com/news-7276781538510567338.html"
]
save_dir = 'webpage_samples'

View File

@ -73,8 +73,6 @@ if __name__ == '__main__':
if sample_dir:
files.extend([os.path.join(sample_dir, file) for file in os.listdir(sample_dir)])
result_folder = sample_dir if sample_dir else '.'
for file in files:
if not file.endswith('.json'): continue

View File

@ -1,153 +1,166 @@
# -*- coding: utf-8 -*-
import os, re
import os, re, sys
import json
import asyncio
import time
from prompts import *
import json_repair
from openai_wrapper import openai_llm as llm
from find_article_or_list import find_article_or_list, common_tlds, common_file_exts
sample_dir = 'webpage_samples'
models = ['deepseek-ai/DeepSeek-V2.5', 'Qwen/Qwen2.5-Coder-32B-Instruct', 'Qwen/Qwen2.5-32B-Instruct', 'Qwen/Qwen2.5-14B-Instruct', 'Qwen/Qwen2.5-Coder-7B-Instruct']
# secondary_model = 'Qwen/Qwen2.5-7B-Instruct' # recommended to use for source and publish date extraction
vl_model = 'OpenGVLab/InternVL2-26B'
current_dir = os.path.dirname(os.path.abspath(__file__))
project_root = os.path.dirname(current_dir) # get parent dir
sys.path.append(project_root)
async def generate_results(text, model, system_prompt, suffix_prompt) -> set:
lines = text.split('\n')
cache = set()
text_batch = ''
for line in lines:
text_batch = f'{text_batch}\n{line}'
if len(text_batch) > 1024:
content = f'<text>\n{text_batch}\n</text>\n\n{suffix_prompt}'
result = await llm(
[{'role': 'system', 'content': system_prompt}, {'role': 'user', 'content': content}],
model=model, temperature=0.1)
print(f"llm output: {result}")
result = re.findall(r'\"\"\"(.*?)\"\"\"', result, re.DOTALL)
if not result:
print(f"warning: bad generate result")
from core.llms.openai_wrapper import openai_llm as llm
models = ['Qwen/Qwen2.5-7B-Instruct', 'Qwen/Qwen2.5-14B-Instruct', 'Qwen/Qwen2.5-32B-Instruct', 'deepseek-ai/DeepSeek-V2.5']
async def main(link_dict: dict, text: str, record_file: str, prompts: list, focus_points: list):
# first get more links
_to_be_processed = []
link_map = {}
for i, (url, des) in enumerate(link_dict.items()):
des = des.replace('\n', ' ')
_to_be_processed.append(f'<t{i+1}>//{des}//')
link_map[f'<t{i+1}'] = url
for model in models:
print(f"running {model} ...")
start_time = time.time()
get_more_links_hallucination_times = 0
more_links = set()
text_batch = ''
for t in _to_be_processed:
text_batch = f'{text_batch}{t}\n'
if len(text_batch) > 2048:
print(f"text_batch\n{text_batch}")
content = f'<text>\n{text_batch}</text>\n\n{text_link_suffix}'
result = await llm(
[{'role': 'system', 'content': prompts[0]}, {'role': 'user', 'content': content}],
model=model, temperature=0.1)
print(f"llm output\n{result}")
text_batch = ''
continue
result = result.strip('"""').strip()
result = result.split('\n')
for item in result:
segs = item.split('>')
if len(segs) != 2:
get_more_links_hallucination_times += 1
continue
_index, focus = segs
_index = _index.strip()
focus = focus.strip().strip('//').strip('#')
if focus == 'NA':
continue
if focus not in focus_points or _index not in link_map:
get_more_links_hallucination_times += 1
print(f"bad generate result: {item}")
continue
more_links.add(link_map[_index])
if text_batch:
print(f"text_batch\n{text_batch}")
content = f'<text>\n{text_batch}</text>\n\n{text_link_suffix}'
result = await llm(
[{'role': 'system', 'content': prompts[0]}, {'role': 'user', 'content': content}],
model=model, temperature=0.1)
print(f"llm output\n{result}")
result = result.strip('"""').strip()
result = result.split('\n')
for item in result:
segs = item.split('>')
if len(segs) != 2:
continue
_index, focus = segs
_index = _index.strip()
focus = focus.strip().strip('//').strip('#')
if focus == 'NA':
continue
if focus not in focus_points or _index not in link_map:
get_more_links_hallucination_times += 1
print(f"bad generate result: {item}")
continue
more_links.add(link_map[_index])
t1 = time.time()
get_more_links_time = t1 - start_time
print(f"get more links time: {get_more_links_time}")
# second get more infos
lines = text.split('\n')
cache = set()
text_batch = ''
for line in lines:
text_batch = f'{text_batch}{line}\n'
if len(text_batch) > 2048:
print(f"text_batch\n{text_batch}")
content = f'<text>\n{text_batch}</text>\n\n{text_info_suffix}'
result = await llm(
[{'role': 'system', 'content': prompts[1]}, {'role': 'user', 'content': content}],
model=model, temperature=0.1)
print(f"llm output\n{result}")
text_batch = ''
result = re.findall(r'\"\"\"(.*?)\"\"\"', result, re.DOTALL)
for item in result:
item = item.strip()
if not item:
continue
item = item.split('\n')
cache.update(item)
if text_batch:
print(f"text_batch\n{text_batch}")
content = f'<text>\n{text_batch}</text>\n\n{text_info_suffix}'
result = await llm(
[{'role': 'system', 'content': prompts[1]}, {'role': 'user', 'content': content}],
model=model, temperature=0.1)
print(f"llm output\n{result}")
result = re.findall(r'\"\"\"(.*?)\"\"\"', result, re.DOTALL)
for item in result:
item = item.strip()
if not item:
continue
item = item.split('\n')
cache.update(item)
text_batch = ''
if text_batch:
content = f'<text>\n{text_batch}\n</text>\n\n{suffix_prompt}'
result = await llm(
[{'role': 'system', 'content': system_prompt}, {'role': 'user', 'content': content}],
model=model, temperature=0.1)
print(f"llm output: {result}")
result = re.findall(r'\"\"\"(.*?)\"\"\"', result, re.DOTALL)
if not result:
print(f"warning: bad generate result")
return cache
for item in result:
item = item.strip()
if not item:
get_infos_hallucination_times = 0
infos = []
for item in cache:
result = json_repair.repair_json(item, return_objects=True)
if not result:
continue
item = item.split('\n')
cache.update(item)
return cache
async def extract_info_from_img(text, link_dict) -> str:
cache = {}
pattern = r'<img>\[url\d+\]'
matches = re.findall(pattern, text)
for match in matches:
key = match.split('[url')[1][:-1]
url = link_dict.get(f'url{key}', '')
if not url:
continue
if url in cache:
replace_text = cache[url]
else:
if any(url.endswith(tld) or url.endswith(tld + '/') for tld in common_tlds):
if not isinstance(result, dict):
get_infos_hallucination_times += 1
print(f"bad generate result: {item}")
continue
if any(url.endswith(ext) for ext in common_file_exts if ext not in ['jpg', 'jpeg', 'png']):
if 'focus' not in result or 'content' not in result:
get_infos_hallucination_times += 1
print(f"bad generate result: {item}")
continue
llm_output = await llm([{"role": "user",
"content": [{"type": "image_url", "image_url": {"url": url, "detail": "high"}},
{"type": "text", "text": image_system}]}], model=vl_model)
print(f"vl model output: \n{llm_output}\n")
replace_text = llm_output
cache[url] = replace_text
text = text.replace(match, f'{replace_text}{match}', 1)
return text
if not result['focus']:
get_infos_hallucination_times += 1
print(f"bad generate result: {item}")
continue
if not result['content']:
continue
focus = result['focus'].strip().strip('#')
if not focus or focus not in focus_points:
get_infos_hallucination_times += 1
print(f"bad generate result: {item}")
continue
content = result['content'].strip()
if not content:
continue
if content in link_dict.values():
continue
infos.append(result)
async def main(link_dict, text, record_file, prompts):
is_list, need_more_info, link_dict, text = find_article_or_list(link_dict, text)
if is_list:
print("may be a article list page, get more urls ...")
system_prompt = prompts[1]
suffix_prompt = text_link_suffix
else:
if need_more_info:
print("may be a article page need to get more text from images...")
text = await extract_info_from_img(text, link_dict)
print(f"extended text: \n{text}\n")
system_prompt = prompts[0]
suffix_prompt = text_info_suffix
for model in models:
print(f"running {model} ...")
start_time = time.time()
hallucination_times = 0
raw_result = await generate_results(text, model, system_prompt, suffix_prompt)
final_result = set()
for item in raw_result:
if is_list:
if '[url' not in item:
hallucination_times += 1
continue
# 从item中提取[]中的url标记
url_tags = re.findall(r'\[url\d+]', item)
if not url_tags:
hallucination_times += 1
continue
for url_tag in url_tags:
url_tag = url_tag[1:-1] # 去掉前后的[]
if url_tag not in link_dict:
hallucination_times += 1
continue
result_url = link_dict[url_tag]
if any(result_url.endswith(tld) or result_url.endswith(tld + '/') for tld in common_tlds):
continue
if any(result_url.endswith(ext) for ext in common_file_exts if ext not in ['jpg', 'jpeg', 'png']):
continue
final_result.add(f'{item} {result_url}')
else:
result = json_repair.repair_json(item, return_objects=True)
if not isinstance(result, dict):
hallucination_times += 1
continue
if not result:
hallucination_times += 1
continue
if 'focus' not in result or 'content' not in result:
hallucination_times += 1
continue
if not result['content'] or not result['focus']:
hallucination_times += 1
continue
if result['focus'].startswith('#'):
result['focus'] = result['focus'][1:]
final_result.add(f'{result}')
final_infos = '\n'.join(final_result)
judge = await llm([{'role': 'system', 'content': verified_system},
{'role': 'user', 'content': f'<info>\n{result["content"]}\n</info>\n\n<text>\n{text}\n</text>\n\n{verified_suffix}'}],
model=model, temperature=0.1)
print(f'judge llm output:\n{judge}')
t2 = time.time()
get_infos_time = t2 - t1
print(f"get more infos time: {get_infos_time}")
# get author and publish date from text
if len(text) > 1024:
@ -158,73 +171,75 @@ async def main(link_dict, text, record_file, prompts):
llm_output = await llm([{'role': 'system', 'content': text_ap_system}, {'role': 'user', 'content': content}],
model=model, max_tokens=50, temperature=0.1, response_format={"type": "json_object"})
print(f"llm output: {llm_output}")
if not llm_output:
hallucination_times += 1
ap_ = {}
else:
result = json_repair.repair_json(llm_output, return_objects=True)
if not isinstance(result, dict):
hallucination_times += 1
ap_ = {}
else:
ap_ = result
ap_ = llm_output.strip()
total_analysis_time = time.time() - start_time
print(f"text analysis finished, total time used: {total_analysis_time}")
print("*" * 12)
print('\n\n')
more_links_to_record = [f'{link_dict[link]}:{link}' for link in more_links]
infos_to_record = [f'{info["focus"]}:{info["content"]}' for info in infos]
more_links_to_record = '\n'.join(more_links_to_record)
infos_to_record = '\n'.join(infos_to_record)
with open(record_file, 'a') as f:
f.write(f"llm model: {model}\n")
f.write(f"hallucination times: {hallucination_times}\n")
f.write(f"total results: {len(final_result)}\n")
f.write(f"total analysis time: {total_analysis_time}\n\n")
f.write(f"author and publish time(not formated): {ap_}\n")
f.write(f"infos(not formated): \n{final_infos}\n")
#f.write(f"more urls: \n{more_url_text}\n\n")
f.write(f"get more links hallucination times: {get_more_links_hallucination_times}\n")
f.write(f"get infos hallucination times: {get_infos_hallucination_times}\n")
f.write(f"get more links time: {get_more_links_time} s\n")
f.write(f"get infos time: {get_infos_time} s\n")
f.write(f"total more links: {len(more_links)}\n")
f.write(f"total infos: {len(infos)}\n")
f.write(f"author and publish time: {ap_}\n")
f.write(f"infos: \n{infos_to_record}\n")
f.write(f"more links: \n{more_links_to_record}\n")
f.write("*" * 12)
f.write('\n\n')
if __name__ == '__main__':
dirs = os.listdir(sample_dir)
for _dir in dirs:
if not _dir.startswith('task'):
continue
_path = os.path.join(sample_dir, _dir)
if not os.path.isdir(_path):
continue
if not os.path.exists(os.path.join(_path, 'focus_point.json')):
print(f'{_dir} focus_point.json not found, skip')
continue
focus_points = json.load(open(os.path.join(_path, 'focus_point.json'), 'r'))
focus_statement = ''
for item in focus_points:
tag = item["focuspoint"]
expl = item["explanation"]
focus_statement = f"{focus_statement}#{tag}\n"
if expl:
focus_statement = f"{focus_statement}解释:{expl}\n"
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('--sample_dir', '-D', type=str, default='')
args = parser.parse_args()
print(f'start testing {_dir}')
get_info_system = text_info_system.replace('{focus_statement}', focus_statement)
get_link_system = text_link_system.replace('{focus_statement}', focus_statement)
prompts = [get_info_system, get_link_system]
sample_dir = args.sample_dir
samples = os.listdir(_path)
if not os.path.exists(os.path.join(sample_dir, 'focus_point.json')):
raise ValueError(f'{sample_dir} focus_point.json not found')
focus_points = json.load(open(os.path.join(sample_dir, 'focus_point.json'), 'r'))
focus_statement = ''
for item in focus_points:
tag = item["focuspoint"]
expl = item["explanation"]
focus_statement = f"{focus_statement}#{tag}\n"
if expl:
focus_statement = f"{focus_statement}解释:{expl}\n"
get_info_system = text_info_system.replace('{focus_statement}', focus_statement)
get_link_system = text_link_system.replace('{focus_statement}', focus_statement)
prompts = [get_link_system, get_info_system]
focus_points = [item["focuspoint"] for item in focus_points]
for dirs in os.listdir(sample_dir):
if not os.path.isdir(os.path.join(sample_dir, dirs)):
continue
_path = os.path.join(sample_dir, dirs)
print(f'start testing {_path}')
if 'sample_recognized.json' not in os.listdir(_path):
print(f'{dirs} sample_recognized.json not found, use sample.json instead')
if 'sample.json' not in os.listdir(_path):
print(f'{dirs} sample.json not found, skip')
continue
sample_recognized = json.load(open(os.path.join(_path, 'sample.json'), 'r'))
else:
sample_recognized = json.load(open(os.path.join(_path, 'sample_recognized.json'), 'r'))
link_dict = sample_recognized['link_dict']
text = sample_recognized['text']
time_stamp = time.strftime('%Y-%m-%d-%H-%M-%S', time.localtime())
record_file = os.path.join(_path, f'record-{time_stamp}.txt')
record_file = os.path.join(sample_dir, dirs, f'record-{time_stamp}.txt')
with open(record_file, 'w') as f:
f.write(f"focus statement: \n{focus_statement}\n\n")
for sample in samples:
if not os.path.isdir(os.path.join(_path, sample)):
continue
files = os.listdir(os.path.join(_path, sample))
if 'link_dict.json' not in files or 'text.txt' not in files:
print(f'{sample} files not complete, skip')
continue
link_dict = json.load(open(os.path.join(_path, sample, 'link_dict.json'), 'r'))
text = open(os.path.join(_path, sample, 'text.txt'), 'r').read()
with open(record_file, 'a') as f:
f.write(f"raw materials: {sample}\n\n")
asyncio.run(main(link_dict, text, record_file, prompts))
f.write(f"raw materials in: {dirs}\n\n")
asyncio.run(main(link_dict, text, record_file, prompts, focus_points))

View File

@ -0,0 +1,95 @@
import os, sys
import asyncio
current_dir = os.path.dirname(os.path.abspath(__file__))
project_root = os.path.dirname(current_dir) # get parent dir
sys.path.append(project_root)
from core.agents.get_info import extract_info_from_img
vl_model = os.environ.get("VL_MODEL", "")
if not vl_model:
print("错误: VL_MODEL not set, will skip extracting info from img, some info may be lost!")
sys.exit(1)
async def main(task: list):
return await extract_info_from_img(task, vl_model)
if __name__ == '__main__':
import argparse
import time
import json
import re
parser = argparse.ArgumentParser()
parser.add_argument('--test_file', '-F', type=str, default='')
parser.add_argument('--sample_dir', '-D', type=str, default='')
args = parser.parse_args()
test_file = args.test_file
sample_dir = args.sample_dir
files = []
if test_file:
files.append(test_file)
if sample_dir:
files.extend([os.path.join(sample_dir, file) for file in os.listdir(sample_dir)])
for file in files:
if not file.endswith('sample.json'): continue
with open(file, 'r') as f:
sample = json.load(f)
link_dict = sample['link_dict'].copy()
text = sample['text']
to_be_replaces = {}
pattern = r'§to_be_recognized_by_visual_llm_(.*?)§'
for url, des in link_dict.items():
matches = re.findall(pattern, des)
if matches:
for img_url in matches:
# 替换原始描述中的标记
des = des.replace(f'§to_be_recognized_by_visual_llm_{img_url}§', img_url)
link_dict[url] = des
if img_url in to_be_replaces:
to_be_replaces[img_url].append(url)
else:
to_be_replaces[img_url] = [url]
matches = re.findall(pattern, text)
if matches:
for img_url in matches:
text = text.replace(f'§to_be_recognized_by_visual_llm_{img_url}§', f'h{img_url}')
img_url = f'h{img_url}'
if img_url in to_be_replaces:
to_be_replaces[img_url].append("content")
else:
to_be_replaces[img_url] = ["content"]
start_time = time.time()
print(f"开始提取图片信息")
result = asyncio.run(main(list(to_be_replaces.keys())))
end_time = time.time()
print(f"提取图片信息完成,耗时: {end_time - start_time}")
for img_url, content in result.items():
for url in to_be_replaces[img_url]:
if url == "content":
text = text.replace(img_url, content)
else:
link_dict[url] = link_dict[url].replace(img_url, content)
if len(link_dict) != len(sample['link_dict']):
print(f"提取图片信息后link_dict长度发生变化原长度: {len(sample['link_dict'])}, 新长度: {len(link_dict)}")
sample['text'] = text
sample['link_dict'] = link_dict
new_file = file.replace('.json', '_recognized.json')
with open(new_file, 'w', encoding='utf-8') as f:
json.dump(sample, f, indent=4, ensure_ascii=False)

View File

@ -1,48 +0,0 @@
import os
from openai import OpenAI
from openai import RateLimitError
import asyncio
base_url = os.environ.get('LLM_API_BASE', "")
token = os.environ.get('LLM_API_KEY', "")
if not base_url and not token:
raise ValueError("LLM_API_BASE or LLM_API_KEY must be set")
elif base_url and not token:
client = OpenAI(base_url=base_url, api_key="not_use")
elif not base_url and token:
client = OpenAI(api_key=token)
else:
client = OpenAI(api_key=token, base_url=base_url)
llm_lock = asyncio.Lock()
async def openai_llm(messages: list, model: str, logger=None, **kwargs) -> str:
if logger:
logger.debug(f'messages:\n {messages}')
logger.debug(f'model: {model}')
logger.debug(f'kwargs:\n {kwargs}')
async with llm_lock:
try:
response = client.chat.completions.create(messages=messages, model=model, **kwargs)
except RateLimitError as e:
logger.warning(f'{e}\nRetrying in 60 second...')
await asyncio.sleep(60)
response = client.chat.completions.create(messages=messages, model=model, **kwargs)
if response.status_code == 200 and response.choices:
return response.choices[0].message.content
else:
logger.error(f'after many try, llm error: {response}')
return ""
except Exception as e:
if logger:
logger.error(f'openai_llm error: {e}')
return ''
if logger:
logger.debug(f'result:\n {response.choices[0]}')
logger.debug(f'usage:\n {response.usage}')
return response.choices[0].message.content

View File

@ -7,39 +7,39 @@ text_info_system = '''作为信息提取助手,你的任务是从给定的网
- 理解每个关注点的含义确保提取的内容至少与其中之一相关
- 如果关注点有进一步的解释确保提取的内容符合这些解释的范围
- 忠于原文你的任务是从网页文本中抽取相关信息而不是提炼总结和改写
- 对于最终输出的信息请保证主体时间地点等关键要素的清晰明确为此可能需要综合上下文进行提取
- 由于文本是通过爬虫程序获取并转化的所以请忽略所有残存的html标签以及不必要的空格换行等
- 对于最终输出的信息请保证主体时间地点等关键要素的清晰明确为此可能需要综合上下文进行提取
- 但如果提取的内容中包括类似[Ref_1]这样的片段务必原样保留'''
text_info_suffix = '''请先复述一遍关注点及其解释再对原文进行分析。如果网页文本中包含关注点相关的内容请按照以下json格式输出提取的信息
{"focus": 关注点名称, "content": 提取的内容}
{"focus": 关注点, "content": 提取的内容}
如果有多条相关信息请按一行一条的格式输出最终输出的结果整体用三引号包裹三引号内不要有其他内容如下是输出格式示例
"""
{"focus": 关注点1名称, "content": 提取内容1}
{"focus": 关注点2名称, "content": 提取内容2}
{"focus": 关注点1, "content": 提取内容1}
{"focus": 关注点2, "content": 提取内容2}
...
"""
如果网页文本中不包含任何相关的信息请保证三引号内为空'''
text_link_system = '''你将被给到一段处理过的网页文本在这些文本中所有的url链接都已经被替换为类似"[url120]"这样的标签,并置于与其关联的文本后面。
你的任务是从网页文本中抽取任何与下列关注点之一相关的文本片段关注点列表及其解释如下
text_link_system = '''你将被给到数行格式为"<编号>//内容//"的文本,你的任务是逐条分析这些文本,并分别与如下关注点之一相关联。关注点列表及其解释如下:
{focus_statement}\n
在进行抽取请遵循以下原则
在进行关联分析请遵循以下原则
- 理解每个关注点的含义确保提取的内容至少与其中之一相关
- 如果关注点有进一步的解释确保提取的内容符合这些解释的范围
- 只抽取以标签类似"[url120]"这样结尾的文本片段
- 维持抽取出的文本片段的原样尤其不要遗漏其后的标签'''
- 理解每个关注点的含义
- 如果关注点有进一步的解释确保提取的内容符合这些解释的范围'''
text_link_suffix = '''先复述一遍关注点及其解释,再对原文逐行进行抽取,最终将挑选出的文本片段按一行一条的格式输出,并整体用三引号包裹,三引号内不要有其他内容,如下是输出格式示例:
text_link_suffix = '''请分行逐条输出结果,每一条的输出格式为"<编号>关注点名称",如果某条内容不与任何关注点相关,请输出"<编号>NA",如下是输出格式示例:
"""
文本1
文本2
<t1>关注点1名称
<t2>关注点2名称
<t3>NA
...
"""'''
"""
请仅输出结果不要输出任何其他内容'''
text_ap_system = "As an information extraction assistant, your task is to accurately extract the source (or author) and publication date from the given webpage text. It is important to adhere to extracting the information directly from the original text. If the original text does not contain a particular piece of information, please replace it with NA"
text_ap_suffix = '''Please output the extracted information in the following JSON format:

View File

@ -1,10 +0,0 @@
{
"input_0": {
"input": {
"type": "text",
"values": [
"id=_PageBar_Index_0 size=4 style=width:25px;height:15px; margin-top: 2px;border:0;border-bottom:1px solid black;background:#fff;text-align: center; onkeyup=value=value.replace(/\\D/g,'')"
]
}
}
}

View File

@ -1,133 +0,0 @@
{
"url0": "https://www.gd121.cn/js/scrolltop/img/scrolltop.png",
"url1": "https://www.gd121.cn/js/scrolltop/img/shouye.png",
"url2": "https://www.gd121.cn/img/img/header/logo.png",
"url3": "https://www.gd121.cn/img/img/header/adheader.png",
"url4": "https://www.gd121.cn/site3/images/zx/yjxy/2018/06/15/D0516EE2248B72CC40A4D9A067ACD63E.jpg",
"url5": "https://www.gd121.cn/upload/image/2022/05/12/1652320917678096536.jpg",
"url6": "https://www.gd121.cn/upload/image/2021/03/04/1614835718147071414.jpg",
"url7": "https://www.gd121.cn/site3/images/kp/yjkp/yjcs/zrzhsjcs/2015/05/27/0C9363B3A37C43AC789B4B56664B2832.png",
"url8": "https://www.gd121.cn/img/placeholder.png",
"url9": "https://www.gd121.cn/img/placeholder.png",
"url10": "https://www.gd121.cn/site3/images/kp/yjkp/yjxh/2015/05/26/EB98E3D78766572A772B24B31F92FEA8.gif",
"url11": "https://www.gd121.cn/img/blank.gif",
"url12": "https://www.gd121.cn/img/blank.gif",
"url13": "https://www.gd121.cn/img/blank.gif",
"url14": "https://www.gd121.cn/img/blank.gif",
"url15": "https://www.gd121.cn/img/blue.png",
"url16": "https://www.gd121.cn/img/blank.gif",
"url17": "https://www.gd121.cn/img/blank.gif",
"url18": "https://www.gd121.cn/index.shtml",
"url19": "https://www.gd121.cn/yj/index.shtml",
"url20": "https://www.gd121.cn/yj/index.shtml?city=广州",
"url21": "https://www.gd121.cn/yj/index.shtml?city=深圳",
"url22": "https://www.gd121.cn/yj/index.shtml?city=佛山",
"url23": "https://www.gd121.cn/yj/index.shtml?city=东莞",
"url24": "https://www.gd121.cn/yj/index.shtml?city=中山",
"url25": "https://www.gd121.cn/yj/index.shtml?city=珠海",
"url26": "https://www.gd121.cn/yj/index.shtml?city=惠州",
"url27": "https://www.gd121.cn/yj/index.shtml?city=江门",
"url28": "https://www.gd121.cn/yj/index.shtml?city=肇庆",
"url29": "https://www.gd121.cn/yj/index.shtml?city=汕头",
"url30": "https://www.gd121.cn/yj/index.shtml?city=潮州",
"url31": "https://www.gd121.cn/yj/index.shtml?city=揭阳",
"url32": "https://www.gd121.cn/yj/index.shtml?city=汕尾",
"url33": "https://www.gd121.cn/yj/index.shtml?city=湛江",
"url34": "https://www.gd121.cn/yj/index.shtml?city=茂名",
"url35": "https://www.gd121.cn/yj/index.shtml?city=阳江",
"url36": "https://www.gd121.cn/yj/index.shtml?city=云浮",
"url37": "https://www.gd121.cn/yj/index.shtml?city=韶关",
"url38": "https://www.gd121.cn/yj/index.shtml?city=清远",
"url39": "https://www.gd121.cn/yj/index.shtml?city=梅州",
"url40": "https://www.gd121.cn/yj/index.shtml?city=河源",
"url41": "https://www.gd121.cn/tq/ld/list.shtml",
"url42": "https://www.gd121.cn/tq/ld/list.shtml",
"url43": "https://www.gd121.cn/tq/yt/list.shtml",
"url44": "https://www.gd121.cn/tq/hy/list.shtml",
"url45": "https://www.gd121.cn/tq/tf/list.shtml",
"url46": "https://www.gd121.cn/tq/jdtq_list.shtml",
"url47": "https://www.gd121.cn/tq/jccz/list.shtml",
"url48": "https://www.gd121.cn/tq/gqtj/index.shtml",
"url49": "https://www.gd121.cn/tq/tqsp/list.shtml",
"url50": "https://www.gd121.cn/fw/index.shtml",
"url51": "https://www.gd121.cn/kp/index.shtml",
"url52": "https://www.gd121.cn/hd/index.shtml",
"url53": "https://www.gd121.cn/hd/yhfk/list.shtml",
"url54": "https://www.gd121.cn/hd/sjsc/index.shtml",
"url55": "http://passport.gd121.cn/ucy_center/index",
"url56": "https://www.gd121.cn/cos/index.shtml",
"url57": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193dd4610be3c10.shtml",
"url58": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d825534f3be1.shtml",
"url59": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d2f022fb3bbb.shtml",
"url60": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193cdc5262a3ba4.shtml",
"url61": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c88781563b7c.shtml",
"url62": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c33926013b52.shtml",
"url63": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193bec2d8183b24.shtml",
"url64": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b8ee572f3af6.shtml",
"url65": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b473fce73adb.shtml",
"url66": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aef0633d3ab4.shtml",
"url67": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aa2d54233aa0.shtml",
"url68": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939f2fccbc3a6b.shtml",
"url69": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939a607a933a59.shtml",
"url70": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939596d4903a41.shtml",
"url71": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938fc87eee3a2a.shtml",
"url72": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938af540583a14.shtml",
"url73": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938584f2273a00.shtml",
"url74": "https://www.gd121.cn/zx/qxzx/ff8080818a06a656019380b4f77d39e6.shtml",
"url75": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601937b4ea6d539d0.shtml",
"url76": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193769fe4f2399d.shtml",
"url77": "https://www.gd121.cn/zx/qxzx/list_2.shtml",
"url78": "https://www.gd121.cn/zx/qxzx/list_10.shtml",
"url79": "https://www.gd121.cn/zx/yjxy/list.shtml",
"url80": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edada382a17.shtml",
"url81": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edada382a17.shtml",
"url82": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edadbb42a19.shtml",
"url83": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edadd2e2a1b.shtml",
"url84": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edade922a1d.shtml",
"url85": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edadfff2a1f.shtml",
"url86": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edae2d42a23.shtml",
"url87": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edae16f2a21.shtml",
"url88": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edae4362a25.shtml",
"url89": "https://www.gd121.cn/kp/rdzt/list.shtml",
"url90": "https://tqkp.gd121.cn/pc/index.php/index/index",
"url91": "http://gd.weather.com.cn/zt/cbzt//3164789.shtml",
"url92": "https://www.gd121.cn/zx/zhxx/list.shtml",
"url93": "https://www.gd121.cn/zx/zhxx/ff8080818a06a656018a6dbc39560290.shtml",
"url94": "https://www.gd121.cn/zx/zhxx/ff8080817a75a9a2017abcdfd97f01bd.shtml",
"url95": "https://www.gd121.cn/zx/zhxx/ff808081706d374701718b8ba69306c3.shtml",
"url96": "https://www.gd121.cn/zx/zhxx/ff808081706d374701716c94668c062a.shtml",
"url97": "https://www.gd121.cn/zx/zhxx/ff808081706d374701715cf0535405d5.shtml",
"url98": "https://www.gd121.cn/zx/zhxx/ff808081706d37470171438addf4052e.shtml",
"url99": "https://www.gd121.cn/kp/yjkp/list.shtml",
"url100": "https://www.gd121.cn/kp/yjkp/yjcs/zrzhsjcs/8a14d310645ec72401645ec9bdb20626.shtml",
"url101": "https://www.gd121.cn/kp/yjkp/yjcs/zrzhsjcs/list.shtml",
"url102": "https://www.gd121.cn/kp/yjkp/yjcs/zrzhsjcs/8a14d310645ec72401645ec9bdb20626.shtml",
"url103": "https://www.gd121.cn/kp/yjkp/yjcs/ggwssjcs/8a14d310645ec72401645ec9c64f065c.shtml",
"url104": "https://www.gd121.cn/kp/yjkp/yjcs/ggwssjcs/list.shtml",
"url105": "https://www.gd121.cn/kp/yjkp/yjcs/ggwssjcs/8a14d310645ec72401645ec9c64f065c.shtml",
"url106": "https://www.gd121.cn/kp/yjkp/yjcs/shaqsjcs/8a14d310645ec72401645ec9c994066e.shtml",
"url107": "https://www.gd121.cn/kp/yjkp/yjcs/shaqsjcs/list.shtml",
"url108": "https://www.gd121.cn/kp/yjkp/yjcs/shaqsjcs/8a14d310645ec72401645ec9c994066e.shtml",
"url109": "https://www.gd121.cn/kp/yjkp/yjxh/8a14d310645ec72401645ec9c9f70670.shtml",
"url110": "https://www.gd121.cn/kp/yjkp/yjxh/list.shtml",
"url111": "https://www.gd121.cn/kp/yjkp/yjxh/8a14d310645ec72401645ec9c9f70670.shtml",
"url112": "https://www.gd121.cn/share/pluginWea.do",
"url113": "https://www.gd121.cn/share/pluginWea.do",
"url114": "https://www.gd121.cn/share/interface.do?id=1",
"url115": "https://www.gd121.cn/share/interface.do?id=1",
"url116": "https://www.gd121.cn/fw/yjkhd/8a14d310645ec72401645ecbea730edb.shtml",
"url117": "https://www.gd121.cn/fw/yjkhd/8a14d310645ec72401645ecbea730edb.shtml",
"url118": "https://www.gd121.cn/fw/wx/ff8080816f16da59016f176859fa0019.shtml",
"url119": "https://www.gd121.cn/fw/wx/ff8080816f16da59016f176859fa0019.shtml",
"url120": "https://www.gd121.cn/yj/index.shtml",
"url121": "https://www.gd121.cn/fw/index.shtml",
"url122": "https://www.gd121.cn/kp/yjkp/list.shtml",
"url123": "https://www.gd121.cn/kp/zcfg/list.shtml",
"url124": "https://www.gd121.cn/share/",
"url125": "https://www.gd121.cn/fw/index.shtml",
"url126": "http://bszs.conac.cn/sitename?method=show&id=5A4B4AA9C22F62BEE053022E1AACADE4",
"url127": "http://gd.cma.gov.cn/",
"url128": "https://www.gbaweather.net/tc/",
"url129": "http://beian.miit.gov.cn",
"url130": "http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=44010402001842"
}

View File

@ -1,632 +0,0 @@
-png[url0]
-png[url1]
今天是2024年12月22日
登录/注册
-广东气象png[url2]
-你的冷暖在我心中png[url3]
1. 首页[url18] 2. 预警[url19]
珠三角
广州[url20]
深圳[url21]
佛山[url22]
东莞[url23]
中山[url24]
珠海[url25]
惠州[url26]
江门[url27]
肇庆[url28]
粤东
汕头[url29]
潮州[url30]
揭阳[url31]
汕尾[url32]
粤西
湛江[url33]
茂名[url34]
阳江[url35]
云浮[url36]
粤北
韶关[url37]
清远[url38]
梅州[url39]
河源[url40] 3. 珠三角
广州[url20]
深圳[url21]
佛山[url22]
东莞[url23]
中山[url24]
珠海[url25]
惠州[url26]
江门[url27]
肇庆[url28] 4. 粤东
汕头[url29]
潮州[url30]
揭阳[url31]
汕尾[url32] 5. 粤西
湛江[url33]
茂名[url34]
阳江[url35]
云浮[url36] 6. 粤北
韶关[url37]
清远[url38]
梅州[url39]
河源[url40] 7. 天气[url41]
雷达[url42]
云图[url43]
海洋[url44]
台风[url45]
旅游天气[url46]
机场&车站[url47]
高清图集[url48]
视频[url49] 8. 雷达[url42] 9. 云图[url43] 10. 海洋[url44] 11. 台风[url45] 12. 旅游天气[url46] 13. 机场&车站[url47] 14. 高清图集[url48] 15. 视频[url49] 16. 服务[url50] 17. 科普[url51] 18. 互动[url52]
预约天气
用户反馈[url53]
实景上传[url54]
用户中心[url55] 19. 预约天气 20. 用户反馈[url53] 21. 实景上传[url54] 22. 用户中心[url55] 23. 共享[url56]
资讯
>气象资讯
1. 冬至又有冷空气入粤[url57]
2024-12-19 12:56:16 2. 冷空气频繁 广东干冷天气持续[url58]
2024-12-18 13:02:25 3. 冷空气持续补充,广东晴燥天气持续[url59]
2024-12-17 12:46:13 4. 广东维持干燥 早晚寒冷[url60]
2024-12-16 12:41:10 5. 冻感十足的广东,未来几天部分地区最低气温跌破零度[url61]
2024-12-15 12:15:44 6. 冷空气持续补充影响,我省维持干燥天气早晚寒冷[url62]
2024-12-14 11:55:15 7. 冷空气持续补充 广东今明气温继续下降[url63]
2024-12-13 14:44:21 8. 冷空气持续补充影响,广东气温逐日小幅下降[url64]
2024-12-12 11:34:08 9. 冷空气今日到达广东 未来几天气温逐日下降[url65]
2024-12-11 14:42:01 10. 前方冷空气们在排队了,这次“冻”真格![url66]
2024-12-10 13:00:10 11. 新一股冷空气11日起影响广东[url67]
2024-12-09 14:48:38 12. 7-9日广东大部晴到多云早晚寒凉[url68]
2024-12-07 11:35:30 13. 周末广东气温继续下降[url69]
2024-12-06 13:10:35 14. 7-8日中等强度冷空气影响广东[url70]
2024-12-05 14:51:50 15. 本周末中等强度冷空气入粤[url71]
2024-12-04 11:48:22 16. 未来两天天气平稳4-6日两股冷空气到访[url72]
2024-12-03 13:19:09 17. 广东云量增多气温上升[url73]
2024-12-02 11:58:23 18. 未来三天广东天气干燥,早晚寒冷[url74]
2024-12-01 13:32:44 19. 未来几天广东天晴干燥,注意补水[url75]
2024-11-30 12:22:53 20. 未来三天广东天晴干燥 气温缓升[url76]
2024-11-29 14:33:31
应急响应
更多>>[url79]
-广东省气象局结束气象灾害暴雨Ⅳ级应急响应jpg[url4][url80]
广东省气象局结束气象灾害(暴雨...
6月12日到14日珠江三角洲市县、粤西大部分市县出现了暴雨到大暴雨局部特大暴雨。预计15日...
[详情][url81]
1. 广东省气象局启动气象灾害(暴雨)Ⅳ级...[url82] 2. 广东省气象局结束气象灾害(暴雨)Ⅱ级...[url83] 3. 广东省气象局结束气象灾害(台风)Ⅲ级...[url84] 4. 广东省气象局启动气象灾害(暴雨)Ⅱ级...[url85] 5. 广东省气象局升级气象灾害(台风)应急...[url86] 6. 广东省气象局启动气象灾害(台风)Ⅳ级...[url87] 7. 广东省气象局结束气象灾害(寒冷)Ⅲ级...[url88]
热点专题
更多>>[url89]
1. -2022年5.12全国防灾减灾日jpg[url5][url90] 2. -中国天然氧吧龙门、揭西、连山、新兴jpg[url6][url91]
1. 1 2. 2
综合消息
更多>>[url92]
1. 7-8日广东大部仍有强降水[url93] 2. 7号台风“查帕卡&rdq...[url94] 3. 18-20日广东多云有雾 21-24...[url95] 4. 12-15日广东大部天晴 早晚寒凉[url96] 5. 11日广东将有一次强对流天气过程[url97] 6. 三天内广东大部降水频繁 粤北山区需防...[url98]
应急科普
更多>>[url99]
-都市中遇到洪水怎么办png[url7][url100]
自然灾害[url101]
都市中遇到洪水怎么办[url102]
-中国疾控中心提示春节期间应做好传染病防御png[url8][url103]
公共卫生[url104]
中国疾控中心提示:春节期间应做好传染病防御[url105]
-购买、使用消防产品不容马虎png[url9][url106]
社会安全[url107]
购买、使用消防产品不容马虎[url108]
-森林火险预警信号gif[url10][url109]
预警信号[url110]
森林火险预警信号[url111]
-天气插件gif[url11][url112]
天气插件[url113]
形式多样,强大的自定义功能,为您的网站量身定做个性化预警插件。
-数据接口gif[url12][url114]
数据接口[url115]
我们会为您们提供最权威、最真实、最及时、最全面的数据服务与共享。
-停课铃APPgif[url13][url116]
停课铃APP[url117]
广东省气象局官方客户端,提供全省停课信号、天气预警、天气查询等服务。
-缤纷微天气gif[url14][url118]
缤纷微天气[url119]
微信小程序,提供基于位置的天气预报、预警服务。
预警信息[url120]
|
公众服务[url121]
|
应急科普[url122]
|
政策法规[url123]
|
数据共享[url124]
|
服务渠道[url125]
-png[url15][url126]
友情链接:
广东省气象局网站[url127]
|
粤港澳大湾区天气网站[url128]
联系电话020-87664716
地址广东省广州市天河区东莞庄路312号
-gif[url16]
 
粤ICP备05011356号[url129]
  
-gif[url17]
 
粤公网安备 44010402001842号[url130]
 ©广东省气象公共服务中心版权所有  |  技术支持数鹏通LinkCM科技
  

View File

@ -1,7 +0,0 @@
content_judge: 2263
special_url_count: 112
arcile_or_list_judge: 0.049491825011047284
************
raw materials: ab9447

View File

@ -1,3 +0,0 @@
[{"focuspoint": "广州市的冷空气预警信息", "explanation": "仅限2024年12月及以后"},
{"focuspoint": "深圳市的冷空气预警信息", "explanation": "仅限2024年12月及以后"},
{"focuspoint": "广东全省的台风预警", "explanation": "仅限2024年的信息"}]

View File

@ -1,37 +0,0 @@
focus statement:
#广州市的冷空气预警信息
解释仅限2024年12月及以后
#深圳市的冷空气预警信息
解释仅限2024年12月及以后
#广东全省的台风预警
解释仅限2024年的信息
raw materials: ab9447
llm model: Qwen/Qwen2.5-7B-Instruct
hallucination times: 2
total results: 17
total analysis time: 10.884798049926758
author and publish time(not formated): {'source': '广东省气象局', 'publish_date': '2024-12-22'}
infos(not formated):
2024-12-11 14:42:01 10. 前方冷空气们在排队了,这次“冻”真格![url66] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aef0633d3ab4.shtml
2024-12-04 11:48:22 16. 未来两天天气平稳4-6日两股冷空气到访[url72] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938af540583a14.shtml
2024-12-16 12:41:10 5. 冻感十足的广东,未来几天部分地区最低气温跌破零度[url61] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c88781563b7c.shtml
冬至又有冷空气入粤[url57] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193dd4610be3c10.shtml
2024-12-12 11:34:08 9. 冷空气今日到达广东 未来几天气温逐日下降[url65] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b473fce73adb.shtml
2024-12-14 11:55:15 7. 冷空气持续补充 广东今明气温继续下降[url63] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193bec2d8183b24.shtml
冷空气频繁 广东干冷天气持续[url58] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d825534f3be1.shtml
2024-12-09 14:48:38 12. 7-9日广东大部晴到多云早晚寒凉[url68] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939f2fccbc3a6b.shtml
2024-12-13 14:44:21 8. 冷空气持续补充影响,广东气温逐日小幅下降[url64] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b8ee572f3af6.shtml
2024-12-17 12:46:13 4. 广东维持干燥 早晚寒冷[url60] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193cdc5262a3ba4.shtml
2024-12-07 11:35:30 13. 周末广东气温继续下降[url69] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939a607a933a59.shtml
2024-12-06 13:10:35 14. 7-8日中等强度冷空气影响广东[url70] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939596d4903a41.shtml
12-15日广东大部天晴 早晚寒凉[url96] https://www.gd121.cn/zx/zhxx/ff808081706d374701716c94668c062a.shtml
冷空气持续补充,广东晴燥天气持续[url59] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d2f022fb3bbb.shtml
2024-12-15 12:15:44 6. 冷空气持续补充影响,我省维持干燥天气早晚寒冷[url62] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c33926013b52.shtml
2024-12-10 13:00:10 11. 新一股冷空气11日起影响广东[url67] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aa2d54233aa0.shtml
2024-12-05 14:51:50 15. 本周末中等强度冷空气入粤[url71] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938fc87eee3a2a.shtml
************

View File

@ -1,166 +0,0 @@
{
"token_id": {
"input": {
"type": "hidden",
"values": []
}
},
"Create Post": {
"button": {
"type": "button",
"values": [
"Create Post"
]
}
},
"auth-flow-modal-close-btn": {
"button": {
"type": "button",
"values": []
}
},
"button_3": {
"button": {
"type": "button",
"values": []
}
},
"button_4": {
"button": {
"type": "button",
"values": []
}
},
"button_5": {
"button": {
"type": "button",
"values": []
}
},
"button_6": {
"button": {
"type": "button",
"values": []
}
},
"button_7": {
"button": {
"type": "button",
"values": []
}
},
"button_8": {
"button": {
"type": "button",
"values": []
}
},
"button_9": {
"button": {
"type": "button",
"values": []
}
},
"skip": {
"button": {
"type": "button",
"values": []
}
},
"resend": {
"button": {
"type": "button",
"values": []
}
},
"email-verification-submit": {
"button": {
"type": "button",
"values": []
}
},
"button_13": {
"button": {
"type": "button",
"values": []
}
},
"button_14": {
"button": {
"type": "button",
"values": []
}
},
"button_15": {
"button": {
"type": "submit",
"values": []
}
},
"button_16": {
"button": {
"type": "button",
"values": []
}
},
"button_17": {
"button": {
"type": "button",
"values": []
}
},
"button_18": {
"button": {
"type": "button",
"values": []
}
},
"button_19": {
"button": {
"type": "button",
"values": []
}
},
"button_20": {
"button": {
"type": "submit",
"values": []
}
},
"button_21": {
"button": {
"type": "button",
"values": []
}
},
"auth-password-recovery-primary-cta": {
"button": {
"type": "submit",
"values": []
}
},
"button_23": {
"button": {
"type": "button",
"values": []
}
},
"auth-password-recovery-resend-email-cta": {
"button": {
"type": "submit",
"values": []
}
},
"button_25": {
"button": {
"type": "button",
"values": []
}
},
"auth-password-reset-primary-cta": {
"button": {
"type": "submit",
"values": []
}
}
}

View File

@ -1,83 +0,0 @@
{
"url0": "https://styles.redditmedia.com/t5_2qhfb/styles/communityIcon_gej97gt2057d1.png",
"url1": "https://styles.redditmedia.com/t5_5l42n6/styles/profileIcon_snoo19feec3d-b7b2-45e1-bdc2-4cf427970b3f-headshot.png?width=64&height=64&frame=1&auto=webp&crop=64:64,smart&s=8212beeb1c87d207953af417974431b70a394b87",
"url2": "https://b.thumbs.redditmedia.com/8_et4BGCqZ1LUnpL-N3qEAFzko2TgCpP_T8em4QYuaI.jpg",
"url3": "https://styles.redditmedia.com/t5_evf3x/styles/profileIcon_5chg1lgorlx41.jpg?width=48&height=48&frame=1&auto=webp&crop=48:48,smart&s=26bd3799a265271bde824eec8c1a14cbf1bd506a",
"url4": "https://external-preview.redd.it/3rRln0iVIX-wT0xZbW3PEwBaaAnqFo9eY9B6gKooOa4.jpg?width=640&crop=smart&auto=webp&s=217592e90ae2f0a92d7cfc6f0e43b91cae8e71ed",
"url5": "https://external-preview.redd.it/3rRln0iVIX-wT0xZbW3PEwBaaAnqFo9eY9B6gKooOa4.jpg?width=640&crop=smart&auto=webp&s=217592e90ae2f0a92d7cfc6f0e43b91cae8e71ed",
"url6": "https://preview.redd.it/snoovatar/avatars/b1d652c1-a856-4147-8470-4a5ae42d67df-headshot.png?width=64&height=64&crop=smart&auto=webp&s=ea14770c59823462e7fc8ce7cd5063b02ae7e270",
"url7": "https://preview.redd.it/arc-agi-has-fallen-to-openais-new-model-o3-v0-yhxu4661p18e1.png?width=640&crop=smart&auto=webp&s=281bd992d1f62582767dccbc20d51c60af4e79cb",
"url8": "https://preview.redd.it/arc-agi-has-fallen-to-openais-new-model-o3-v0-yhxu4661p18e1.png?width=640&crop=smart&auto=webp&s=281bd992d1f62582767dccbc20d51c60af4e79cb",
"url9": "https://i.redd.it/yhxu4661p18e1.png",
"url10": "https://www.redditstatic.com/avatars/defaults/v2/avatar_default_1.png",
"url11": "https://v.redd.it/g52hgu66p28e1/HLSPlaylist.m3u8?f=hd%2CsubsAll%2ChlsSpecOrder&v=1&a=1737382988%2CZTRlNjM4OTExZWE3ODg0ZjA4Zjc1ODY0ZmQ2YTZiMTk2Mjc4YjRiZDcyMzY0OGVlZmUxY2Q4YTBmZmM2NGNmMw%3D%3D",
"url12": "https://external-preview.redd.it/i-built-a-quick-app-that-lets-you-clone-your-voice-and-chat-v0-ZWZiMzVxNzZwMjhlMcGkEppnYcPAIiLzZoWL5S2N6MKWTw5IuP1xszL2McWb.png?width=640&crop=smart&format=pjpg&auto=webp&s=f34df45d8060e3831086a4f5279f14b6bfdce12d",
"url13": "https://styles.redditmedia.com/t5_7hqomg/styles/communityIcon_bzj6d1z1oizc1.png",
"url14": "https://styles.redditmedia.com/t5_3b9u5/styles/communityIcon_d49a7viby3db1.png",
"url15": "https://styles.redditmedia.com/t5_7t8hvt/styles/communityIcon_n42r6yfh2ucd1.png",
"url16": "https://external-preview.redd.it/X3dq7BwWSNeUHhYVAwg9EWZnzdW0rDaEwG8X76Th8PI.jpg?auto=webp&s=41609c39ac55f81573d212eaf4cf408bb74a3170",
"url17": "https://external-preview.redd.it/X3dq7BwWSNeUHhYVAwg9EWZnzdW0rDaEwG8X76Th8PI.jpg?auto=webp&s=41609c39ac55f81573d212eaf4cf408bb74a3170",
"url18": "https://www.reddit.com/r/artificial",
"url19": "https://www.reddit.com/r/artificial/about/",
"url20": "https://www.reddit.com/r/artificial/hot/",
"url21": "https://www.reddit.com/r/artificial/new/",
"url22": "https://www.reddit.com/r/artificial/top/",
"url23": "https://www.reddit.com/r/artificial/rising/",
"url24": "https://www.reddit.com/r/artificial/?feedViewType=cardView",
"url25": "https://www.reddit.com/r/artificial/?feedViewType=compactView",
"url26": "https://www.reddit.com/r/artificial/comments/1hj8nmp/uks_ambitions_to_police_ai_face_trumps_starkly/",
"url27": "https://www.reddit.com/user/F0urLeafCl0ver/",
"url28": "https://www.reddit.com/r/artificial/comments/1hj8nmp/uks_ambitions_to_police_ai_face_trumps_starkly/",
"url29": "https://www.reddit.com/r/artificial/?f=flair_name%3A%22News%22",
"url30": "https://www.ft.com/content/c9f6067c-3faa-4e6a-bc0f-2ed7290a8476",
"url31": "https://www.ft.com/content/c9f6067c-3faa-4e6a-bc0f-2ed7290a8476",
"url32": "https://www.reddit.com/user/ANSYSInc/",
"url33": "https://www.reddit.com/r/artificial/comments/1hiq12u/arcagi_has_fallen_to_openais_new_model_o3/",
"url34": "https://www.reddit.com/user/MetaKnowing/",
"url35": "https://www.reddit.com/r/artificial/comments/1hiq12u/arcagi_has_fallen_to_openais_new_model_o3/",
"url36": "https://www.reddit.com/r/artificial/?f=flair_name%3A%22News%22",
"url37": "https://www.reddit.com/r/artificial/comments/1hiujec/i_built_a_quick_app_that_lets_you_clone_your/",
"url38": "https://www.reddit.com/user/I_Love_Yoga_Pants/",
"url39": "https://www.reddit.com/r/artificial/comments/1hiujec/i_built_a_quick_app_that_lets_you_clone_your/",
"url40": "https://www.reddit.com/r/artificial/?f=flair_name%3A%22Project%22",
"url41": "https://www.reddit.com/best/communities/4/#t5_2qhfb/",
"url42": "https://www.reddit.com/r/artificial/wiki/guidelines/selfpromo/",
"url43": "https://www.reddit.com/wiki/automoderator/",
"url44": "https://www.reddit.com/t/artificial_intelligence_and_machine_learning/",
"url45": "https://fortune.com/ranking/ai-innovators/2024/",
"url46": "https://time.com/collection/time100-ai-2024/",
"url47": "https://www.forbes.com/lists/ai50/",
"url48": "https://openai.com/news",
"url49": "https://ai.meta.com/blog/?page=1",
"url50": "https://blog.google/technology/ai/",
"url51": "https://news.microsoft.com/source/topics/ai/",
"url52": "https://research.ibm.com/artificial-intelligence",
"url53": "https://aws.amazon.com/ai/",
"url54": "https://www.apple.com/apple-intelligence/",
"url55": "https://blogs.nvidia.com/blog/category/deep-learning/",
"url56": "https://blog.character.ai/",
"url57": "https://stability.ai/news",
"url58": "https://www.anthropic.com/news",
"url59": "https://mistral.ai/news/",
"url60": "https://elevenlabs.io/blog/",
"url61": "https://www.figure.ai/?ref=viden.ai",
"url62": "https://huggingface.co/blog",
"url63": "https://runwayml.com/blog/",
"url64": "https://www.perplexity.ai/hub",
"url65": "https://www.midjourney.com/home",
"url66": "https://suno.com/blog/",
"url67": "https://www.adobe.com/ai/overview.html",
"url68": "https://www.reddit.com/r/artificial/wiki/index",
"url69": "https://www.reddit.com/r/artificial/comments/120qr4r/psa_rule_2_will_be_enforced_selfpromotion_is_only/",
"url70": "https://www.reddit.com/r/artificial/wiki/related-subreddits/",
"url71": "https://www.reddit.com/r/ChatGPT",
"url72": "https://www.reddit.com/r/OpenAI",
"url73": "https://www.reddit.com/r/ClaudeAI",
"url74": "https://www.redditinc.com/policies/user-agreement",
"url75": "https://www.redditinc.com/policies/privacy-policy",
"url76": "https://www.redditinc.com/policies/user-agreement",
"url77": "https://www.redditinc.com/policies/privacy-policy",
"url78": "https://www.redditinc.com/policies/user-agreement",
"url79": "https://www.redditinc.com/policies/privacy-policy",
"url80": "https://reddithelp.com/hc/sections/360008917491-Account-Security"
}

View File

@ -1,26 +0,0 @@
{
"form_0": {
"input_0": {
"type": "email",
"values": [
"class=['newsletter__emailInput'] id=emailInput- value= placeholder=Email address"
]
}
},
"Newest to Oldest": {
"button": {
"type": "button",
"values": [
"Newest to Oldest"
]
}
},
"Load more stories": {
"button": {
"type": "button",
"values": [
"Load more stories"
]
}
}
}

View File

@ -1,7 +0,0 @@
{
"url0": "https://www.googletagmanager.com/ns.html?id=GTM-TRBQMN",
"url1": "https://td.doubleclick.net/td/ga/rul?tid=G-CV8ZC5Z6LR&gacid=275767342.1734790979&gtm=45je4cc1v888391479z86948167za200zb6948167&dma=0&gcd=13l3l3l3l1l1&npa=0&pscdl=noapi&aip=1&fledge=1&frm=0&tag_exp=101925629~102067555~102067808~102081485~102198178&z=1871817166",
"url2": "https://td.doubleclick.net/td/rul/940506728?random=1734790979232&cv=11&fst=1734790979232&fmt=3&bg=ffffff&guid=ON&async=1&gtm=45be4cc1v874868505z86948167za201zb6948167&gcd=13l3l3l3l1l1&dma=0&tag_exp=101925629~102067555~102067808~102081485~102198178&u_w=1280&u_h=720&url=https%3A%2F%2Fwww.technologyreview.com%2Ftopic%2Fartificial-intelligence%2F&label=MMkMCNSCuooYEOj8u8AD&hn=www.googleadservices.com&frm=0&tiba=Artificial%20intelligence%20%7C%20MIT%20Technology%20Review&value=0&bttype=purchase&npa=0&pscdl=noapi&auid=1495689877.1734790979&uaa=x64&uab=64&uafvl=HeadlessChrome%3B131.0.6778.33%7CChromium%3B131.0.6778.33%7CNot_A%2520Brand%3B24.0.0.0&uamb=0&uam=&uap=macOS&uapv=10_15_7&uaw=0&fledge=1&capi=1&ct_cookie_present=0",
"url3": "about:blank",
"url4": "https://www.technologyreview.com/all-topics"
}

View File

@ -1,18 +0,0 @@
You need to enable JavaScript to view this site.
Skip to Content
-html?id=GTM-TRBQMN[url0]
error...
Artificial intelligence
The latest advances in the quest to build machines that can reason, learn, and act intelligently.
All topics[url4]
-1734790979&gtm=45je4cc1v888391479z86948167za200zb6948167&dma=0&gcd=13l3l3l3l1l1&npa=0&pscdl=noapi&aip=1&fledge=1&frm=0&tag_exp=101925629~102067555~102067808~102081485~102198178&z=1871817166[url1]
-0&uamb=0&uam=&uap=macOS&uapv=10_15_7&uaw=0&fledge=1&capi=1&ct_cookie_present=0[url2]
-iframe[url3]

View File

@ -1,193 +0,0 @@
{
"url0": "https://cdn.sstatic.net/Sites/stackoverflow/Img/icon-48.png?v=b7e36f88ff92",
"url1": "https://i.sstatic.net/dfIpF.jpg?s=32",
"url2": "https://www.gravatar.com/avatar/d83271043bce52d53f812d5c12668215?s=32&d=identicon&r=PG&f=y&so-version=2",
"url3": "https://lh3.googleusercontent.com/a/AATXAJwJL-h4FSaBLRk2G5slx7rjTn2KOECtPUXIDuf7=k-s32",
"url4": "https://www.gravatar.com/avatar/58c6e50f95852f881c3f28a02d256c34?s=32&d=identicon&r=PG",
"url5": "https://www.gravatar.com/avatar/9c36845fa8363d2ca571428faf5461a1?s=32&d=identicon&r=PG&f=y&so-version=2",
"url6": "https://www.gravatar.com/avatar/3ad042bf49e2affbba4e2d9e73585347?s=32&d=identicon&r=PG&f=y&so-version=2",
"url7": "https://www.gravatar.com/avatar/70f4971d1a66bd353644af3b71f5c1a9?s=32&d=identicon&r=PG",
"url8": "https://lh3.googleusercontent.com/a-/AFdZucoFeCZzHtLnaZhaXJKqQw1RpkLmNZfqOu450qm3=k-s32",
"url9": "https://www.gravatar.com/avatar/9297a48b95e32581b668ddf7a1420686?s=32&d=identicon&r=PG&f=y&so-version=2",
"url10": "https://www.gravatar.com/avatar/07e61e083e1cccecbc55719c722ceb0c?s=32&d=identicon&r=PG&f=y&so-version=2",
"url11": "https://www.gravatar.com/avatar/cc92400fdb37966a4d13984fb68abaa9?s=32&d=identicon&r=PG&f=y&so-version=2",
"url12": "https://lh3.googleusercontent.com/a/ACg8ocLiHuLJR6eM1FmJvinL0Yu-53PqG4IPFobdrTOXtKth=k-s32",
"url13": "https://www.gravatar.com/avatar/094cc80259f00e6ed53eb79b07d8c00f?s=32&d=identicon&r=PG&f=y&so-version=2",
"url14": "https://www.gravatar.com/avatar/92add345a8b55df790f60db3b795c1ef?s=32&d=identicon&r=PG&f=y&so-version=2",
"url15": "https://graph.facebook.com/1769633233288076/picture?type=large",
"url16": "https://www.google.com/recaptcha/api2/aframe",
"url17": "https://stackoverflow.com/legal/terms-of-service/public",
"url18": "https://stackoverflow.com/legal/privacy-policy",
"url19": "https://stackoverflow.com/users/login",
"url20": "https://stackoverflow.com/collectives",
"url21": "https://stackoverflow.co/teams/",
"url22": "https://stackoverflow.co/labs/",
"url23": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Newest",
"url24": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Active",
"url25": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Bounties",
"url26": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Unanswered",
"url27": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Bounties",
"url28": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Unanswered",
"url29": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Frequent",
"url30": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Votes",
"url31": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Trending",
"url32": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Week",
"url33": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Month",
"url34": "https://stackoverflow.com/questions/79299405/pddl-check-for-conditionals",
"url35": "https://stackoverflow.com/questions/tagged/agent",
"url36": "https://stackoverflow.com/questions/tagged/pddl",
"url37": "https://stackoverflow.com/users/12467912/mes",
"url38": "https://stackoverflow.com/users/12467912/mes",
"url39": "https://stackoverflow.com/questions/79299085/seeking-advice-on-implementing-an-ai-based-image-search-and-matching-app",
"url40": "https://stackoverflow.com/questions/tagged/google-image-search",
"url41": "https://stackoverflow.com/questions/tagged/chrome-app-developer-tool",
"url42": "https://stackoverflow.com/users/28656769/giorgi-gavashelishvili",
"url43": "https://stackoverflow.com/users/28656769/giorgi-gavashelishvili",
"url44": "https://stackoverflow.com/questions/79299020/ownership-and-reusability-of-a-fine-tuned-model-trained-on-client-data-who-contr",
"url45": "https://stackoverflow.com/questions/tagged/licensing",
"url46": "https://stackoverflow.com/users/18249502/pras",
"url47": "https://stackoverflow.com/users/18249502/pras",
"url48": "https://stackoverflow.com/questions/79297501/proper-system-message-construction-in-chatbot",
"url49": "https://stackoverflow.com/collectives/azure",
"url50": "https://stackoverflow.com/questions/tagged/chatbot",
"url51": "https://stackoverflow.com/questions/tagged/azure-openai",
"url52": "https://stackoverflow.com/questions/tagged/azure-ai",
"url53": "https://stackoverflow.com/users/1960948/choopau",
"url54": "https://stackoverflow.com/users/1960948/choopau",
"url55": "https://stackoverflow.com/questions/79297363/autoscaling-resources-for-llm-model",
"url56": "https://stackoverflow.com/questions/tagged/large-language-model",
"url57": "https://stackoverflow.com/questions/tagged/llama",
"url58": "https://stackoverflow.com/questions/tagged/vllm",
"url59": "https://stackoverflow.com/users/7461410/umidjon-musaev",
"url60": "https://stackoverflow.com/users/7461410/umidjon-musaev",
"url61": "https://stackoverflow.com/questions/79294509/asking-chatgpt-api-for-questions-and-then-for-reviewing-the-answers-i-give-him",
"url62": "https://stackoverflow.com/questions/tagged/reactjs",
"url63": "https://stackoverflow.com/questions/tagged/openai-api",
"url64": "https://stackoverflow.com/questions/tagged/chatgpt-api",
"url65": "https://stackoverflow.com/users/15061821/maor-cohen",
"url66": "https://stackoverflow.com/users/15061821/maor-cohen",
"url67": "https://stackoverflow.com/questions/79294470/consultion-about-a-recommendations-system-complexity-as-a-graduation-project",
"url68": "https://stackoverflow.com/questions/tagged/machine-learning",
"url69": "https://stackoverflow.com/questions/tagged/reinforcement-learning",
"url70": "https://stackoverflow.com/questions/tagged/recommendation-engine",
"url71": "https://stackoverflow.com/questions/tagged/collaborative-filtering",
"url72": "https://stackoverflow.com/users/18011763/e-m-e-a",
"url73": "https://stackoverflow.com/users/18011763/e-m-e-a",
"url74": "https://stackoverflow.com/questions/79292575/using-axolotl-ai-oom-error-while-fine-tuning",
"url75": "https://stackoverflow.com/questions/tagged/python",
"url76": "https://stackoverflow.com/questions/tagged/out-of-memory",
"url77": "https://stackoverflow.com/questions/tagged/quantization",
"url78": "https://stackoverflow.com/questions/tagged/fine-tuning",
"url79": "https://stackoverflow.com/users/28463121/akshat-08",
"url80": "https://stackoverflow.com/users/28463121/akshat-08",
"url81": "https://stackoverflow.com/questions/79291675/greater-validation-accuracy-during-training",
"url82": "https://stackoverflow.com/questions/tagged/python",
"url83": "https://stackoverflow.com/questions/tagged/machine-learning",
"url84": "https://stackoverflow.com/questions/tagged/model",
"url85": "https://stackoverflow.com/questions/tagged/training-data",
"url86": "https://stackoverflow.com/users/28840032/pixel535",
"url87": "https://stackoverflow.com/users/28840032/pixel535",
"url88": "https://stackoverflow.com/questions/79290775/how-to-send-only-dynamic-part-of-a-prompt-in-openai-api-to-optimize-token-usage",
"url89": "https://stackoverflow.com/questions/tagged/machine-learning",
"url90": "https://stackoverflow.com/questions/tagged/openai-api",
"url91": "https://stackoverflow.com/users/26414987/naman-kumar-muktha",
"url92": "https://stackoverflow.com/users/26414987/naman-kumar-muktha",
"url93": "https://stackoverflow.com/questions/79289217/send-and-get-data-from-azure-machine-learning-service",
"url94": "https://stackoverflow.com/collectives/azure",
"url95": "https://stackoverflow.com/questions/tagged/azure",
"url96": "https://stackoverflow.com/questions/tagged/azure-functions",
"url97": "https://stackoverflow.com/questions/tagged/azure-machine-learning-service",
"url98": "https://stackoverflow.com/questions/tagged/azure-ai",
"url99": "https://stackoverflow.com/users/28827681/hel4dev",
"url100": "https://stackoverflow.com/users/28827681/hel4dev",
"url101": "https://stackoverflow.com/questions/79288815/how-to-make-a-correct-prompt-for-gpt-4o-vision-api-to-find-letters-in-an-image",
"url102": "https://stackoverflow.com/questions/tagged/openai-api",
"url103": "https://stackoverflow.com/questions/tagged/gpt-3",
"url104": "https://stackoverflow.com/questions/tagged/gpt-4",
"url105": "https://stackoverflow.com/users/23553754/vincent-randall",
"url106": "https://stackoverflow.com/users/23553754/vincent-randall",
"url107": "https://stackoverflow.com/questions/79288025/how-can-i-test-the-responses-that-an-ai-gives-to-a-survey",
"url108": "https://stackoverflow.com/questions/tagged/testing",
"url109": "https://stackoverflow.com/questions/tagged/automated-tests",
"url110": "https://stackoverflow.com/questions/tagged/survey",
"url111": "https://stackoverflow.com/users/28822567/federico-castelli",
"url112": "https://stackoverflow.com/users/28822567/federico-castelli",
"url113": "https://stackoverflow.com/questions/79287870/how-do-i-specify-index-name-in-llama-index-milvusvectorstore",
"url114": "https://stackoverflow.com/questions/tagged/llama",
"url115": "https://stackoverflow.com/questions/tagged/llama-index",
"url116": "https://stackoverflow.com/questions/tagged/vector-database",
"url117": "https://stackoverflow.com/questions/tagged/milvus",
"url118": "https://stackoverflow.com/users/15822536/legacy",
"url119": "https://stackoverflow.com/users/15822536/legacy",
"url120": "https://stackoverflow.com/questions/79287858/which-are-the-most-effective-topic-modelling-algorithm-for-a-very-random-text-co",
"url121": "https://stackoverflow.com/collectives/nlp",
"url122": "https://stackoverflow.com/questions/tagged/machine-learning",
"url123": "https://stackoverflow.com/questions/tagged/nlp",
"url124": "https://stackoverflow.com/questions/tagged/bert-language-model",
"url125": "https://stackoverflow.com/users/7048096/tanay-vekariya",
"url126": "https://stackoverflow.com/users/7048096/tanay-vekariya",
"url127": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&pagesize=15",
"url128": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&pagesize=30",
"url129": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&pagesize=50",
"url130": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=2&pagesize=15",
"url131": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=3&pagesize=15",
"url132": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=4&pagesize=15",
"url133": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=5&pagesize=15",
"url134": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=597&pagesize=15",
"url135": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=2&pagesize=15",
"url136": "https://stackoverflow.blog/2024/12/19/developers-hate-documentation-ai-generated-toil-work/?cb=1",
"url137": "https://stackoverflow.blog/2024/12/20/this-developer-tool-is-40-years-old-can-it-be-improved/?cb=1",
"url138": "https://meta.stackexchange.com/questions/404724/the-december-2024-community-asks-sprint-has-been-moved-to-march-2025-and-length?cb=1",
"url139": "https://meta.stackexchange.com/questions/404909/stack-overflow-jobs-is-expanding-to-more-countries?cb=1",
"url140": "https://stackoverflow.com/questions/tagged/artificial-intelligence+python",
"url141": "https://stackoverflow.com/questions/tagged/artificial-intelligence+machine-learning",
"url142": "https://stackoverflow.com/questions/tagged/artificial-intelligence+neural-network",
"url143": "https://stackoverflow.com/questions/tagged/artificial-intelligence+algorithm",
"url144": "https://stackoverflow.com/questions/tagged/artificial-intelligence+tensorflow",
"url145": "https://stackoverflow.com/questions/tagged/artificial-intelligence+deep-learning",
"url146": "https://stackoverflow.com/questions/tagged/artificial-intelligence+java",
"url147": "https://stackoverflow.com/questions/tagged/artificial-intelligence+nlp",
"url148": "https://stackoverflow.com/questions/tagged/artificial-intelligence+c%23",
"url149": "https://stackoverflow.com/questions/tagged/artificial-intelligence+keras",
"url150": "https://stackoverflow.com/questions/tagged/artificial-intelligence+pytorch",
"url151": "https://stackoverflow.com/questions/tagged/artificial-intelligence+minimax",
"url152": "https://stackoverflow.com/questions/tagged/artificial-intelligence+python-3.x",
"url153": "https://stackoverflow.com/questions/tagged/artificial-intelligence+reinforcement-learning",
"url154": "https://stackoverflow.com/questions/tagged/artificial-intelligence+computer-vision",
"url155": "https://stackoverflow.com/questions/tagged/artificial-intelligence+conv-neural-network",
"url156": "https://stackoverflow.com/questions/tagged/artificial-intelligence+search",
"url157": "https://stackoverflow.com/questions/tagged/artificial-intelligence%20c%2b%2b",
"url158": "https://stackoverflow.com/questions/tagged/artificial-intelligence+javascript",
"url159": "https://stackoverflow.com/questions/tagged/artificial-intelligence+chatbot",
"url160": "https://stackoverflow.com/questions/tagged/artificial-intelligence+genetic-algorithm",
"url161": "https://stackoverflow.com/questions/tagged/artificial-intelligence+unity-game-engine",
"url162": "https://stackoverflow.com/questions/tagged/artificial-intelligence+a-star",
"url163": "https://stackoverflow.com/questions/tagged/artificial-intelligence+large-language-model",
"url164": "https://stackoverflow.com/questions/tagged/artificial-intelligence+heuristics",
"url165": "https://stackexchange.com/questions?tab=hot",
"url166": "https://math.stackexchange.com/questions/5013601/factorization-of-maps-between-locally-compact-hausdorff-space",
"url167": "https://hermeneutics.stackexchange.com/questions/99950/why-is-jesus-called-prince-of-peace-and-not-king-of-peace-considering-he-was-als",
"url168": "https://space.stackexchange.com/questions/67545/can-a-ship-like-starship-roll-during-re-entry",
"url169": "https://gis.stackexchange.com/questions/488946/can-not-load-shapefiles-in-qgis-3-34-13-prizren-using-macbook-pro",
"url170": "https://unix.stackexchange.com/questions/788436/optimize-rsync-when-large-files-move-around-on-the-source",
"url171": "https://cs.stackexchange.com/questions/170741/a-sat-question-about-sat-property",
"url172": "https://buddhism.stackexchange.com/questions/51696/noisy-environment-while-meditating",
"url173": "https://bricks.stackexchange.com/questions/18933/help-identify-this-1980s-non-lego-non-duplo-but-larger-than-average-brick",
"url174": "https://law.stackexchange.com/questions/106536/is-the-jury-informed-when-the-person-giving-testimony-has-taken-a-plea-deal-in-e",
"url175": "https://diy.stackexchange.com/questions/311863/grounding-isolated-electrical-circuit-from-a-floating-source-ev-v2l",
"url176": "https://law.stackexchange.com/questions/106488/why-is-it-considered-terrorism-to-murder-a-ceo",
"url177": "https://mathematica.stackexchange.com/questions/309576/is-it-possible-to-symbolically-solve-this-polynomial-system-of-equations-and-ine",
"url178": "https://mathoverflow.net/questions/484508/suspension-spectrum-functor",
"url179": "https://tex.stackexchange.com/questions/733307/best-practice-how-to-correctly-size-the-delimiters-fences-of-the-following-exam",
"url180": "https://security.stackexchange.com/questions/279921/best-practices-for-managing-open-source-vulnerabilities-in-enterprise-deployment",
"url181": "https://politics.stackexchange.com/questions/90116/new-york-2025-mayoral-election-any-primaries",
"url182": "https://aviation.stackexchange.com/questions/107524/what-abbreviation-for-knots-do-pilots-in-non-english-speaking-countries-use",
"url183": "https://judaism.stackexchange.com/questions/146564/why-does-each-page-of-talmud-end-with-the-first-word-of-the-next-page",
"url184": "https://astronomy.stackexchange.com/questions/59115/is-the-atmosphere-of-a-planet-considered-an-integral-part-of-the-planet",
"url185": "https://german.stackexchange.com/questions/78490/heute-nacht-tonight-or-last-night",
"url186": "https://mathematica.stackexchange.com/questions/309551/concatenating-column-vectors-in-a-loop",
"url187": "https://codereview.stackexchange.com/questions/294774/single-producer-single-consumer-queue",
"url188": "https://electronics.stackexchange.com/questions/733841/quartz-crystals-is-it-load-capacitance-or-loading-capacitance",
"url189": "https://blender.stackexchange.com/questions/328709/grease-pencil-3-and-python-get-set-the-active-layer",
"url190": "https://stackoverflow.com/feeds/tag?tagnames=artificial-intelligence&sort=newest"
}

View File

@ -1,28 +0,0 @@
content_judge: 14856
special_url_count: 189
arcile_or_list_judge: 0.012722132471728594
************
raw materials: 9c76f8
content_judge: 3447
special_url_count: 279
arcile_or_list_judge: 0.08093994778067885
************
raw materials: e8c97c
content_judge: 5777
special_url_count: 73
arcile_or_list_judge: 0.012636316427211355
************
raw materials: 29229b
content_judge: 505
special_url_count: 5
arcile_or_list_judge: 0.009900990099009901
************
raw materials: 3958ab

View File

@ -1,321 +0,0 @@
{
"url0": "https://img.36krcdn.com/hsossms/20241221/v2_40c28bcceafc4905b8612d6dce7a6a2a@000000_oswg116731oswg1280oswg545_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center",
"url1": "https://img.36krcdn.com/hsossms/20241221/v2_59c9cefddf0a4e118dc4b4399cc0ad2a@5654145_oswg53447oswg1053oswg495_img_jpg?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center/format,webp",
"url2": "https://img.36krcdn.com/hsossms/20241221/v2_db5c77303254452c89beb1a781e7e4d6@000000_oswg37843oswg940oswg399_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center",
"url3": "https://img.36krcdn.com/hsossms/20241221/v2_9a6d858952a544bf8dd7d5400c5288eb@000000_oswg156992oswg1536oswg722_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center",
"url4": "https://img.36krcdn.com/hsossms/20241221/v2_1c681a2060ce472d89c14d99b66431a8@000000_oswg167885oswg1536oswg722_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center",
"url5": "https://img.36krcdn.com/hsossms/20241221/v2_1f897d4ae5ca4eaa84fa137d44658b1d@5595930_oswg534192oswg1053oswg495_img_png?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center/format,webp",
"url6": "https://img.36krcdn.com/hsossms/20241220/v2_c722a7cb32e640d59652937625b4db26@000000_oswg2500800oswg1792oswg1024_img_png?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center/format,webp",
"url7": "https://img.36krcdn.com/hsossms/20241221/v2_7c85fa6cf15244c7b01989df9e9a2851@000000_oswg56173oswg1080oswg460_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center",
"url8": "https://img.36krcdn.com/hsossms/20241221/v2_158e665fd5304c08972f43bf8ad0f0a0@1200352198_oswg626424oswg1053oswg495_img_png?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center/format,webp",
"url9": "https://img.36krcdn.com/hsossms/20240409/v2_f6df766206e14338b495758625b5a03f@000000_oswg63841oswg750oswg750_img_jpg?x-oss-process=image/format,webp",
"url10": "https://static.36krcdn.com/36kr-web/static/code_production.72d61993.png",
"url11": "https://static.36krcdn.com/36kr-web/static/code_production.72d61993.png",
"url12": "https://static.36krcdn.com/36kr-web/static/kr.ad0c1158.jpg",
"url13": "https://static.36krcdn.com/36kr-web/static/jingzhun.9a251862.jpg",
"url14": "https://static.36krcdn.com/36kr-web/static/krSpace.7efbe7d3.jpg",
"url15": "https://36kr.com/usercenter/basicinfo",
"url16": "https://36kr.com/usercenter/account-password",
"url17": "https://36kr.com/usercenter/follow",
"url18": "https://36kr.com/usercenter/favorite",
"url19": "https://36kr.com/seek-report-new?tabKey=2",
"url20": "https://img.36krcdn.com/hsossms/20230605/v2_384be8e4c1e942a28cf13a2e427fe211@18900718_oswg78404oswg320oswg320_img_png",
"url21": "https://img.36krcdn.com/hsossms/20230605/v2_636063907bdc44389b46e7db9c761a38@18900718_oswg62424oswg320oswg320_img_png",
"url22": "https://img.36krcdn.com/hsossms/20230210/v2_38d1cdabc8404b00806de58cbedb3b7b_oswg27031oswg320oswg320_img_png",
"url23": "https://img.36krcdn.com/hsossms/20230605/v2_da74c43ba887426f8fbccaede691b844@18900718_oswg76573oswg320oswg320_img_png",
"url24": "https://img.36krcdn.com/hsossms/20230209/v2_8c2233c88a854c6496ff4f7842a9f9dd_oswg17629oswg320oswg320_img_png",
"url25": "https://img.36krcdn.com/hsossms/20230605/v2_632f36f1c5904a539a1e57efe4497e3a@18900718_oswg63630oswg320oswg320_img_png",
"url26": "http://letschuhai.com",
"url27": "https://img.36krcdn.com/hsossms/20230605/v2_89fa42090fae495ca5e45ba921ee42ff@18900718_oswg65306oswg320oswg320_img_png",
"url28": "https://img.36krcdn.com/hsossms/20231204/v2_3b8447ffdda24a38a30fd839fd934baa@000000_oswg40121oswg430oswg430_img_jpeg",
"url29": "https://img.36krcdn.com/hsossms/20230605/v2_c4720503500642d294b5be04064ef870@18900718_oswg58529oswg320oswg320_img_png",
"url30": "https://img.36krcdn.com/hsossms/20230209/v2_d6d3f8b57fa04507915c48adf0f9620d_oswg16586oswg320oswg320_img_png",
"url31": "https://img.36krcdn.com/hsossms/20230605/v2_efc94b0cce7043dbac883c1dfe00c810@18900718_oswg57046oswg320oswg320_img_png",
"url32": "https://img.36krcdn.com/hsossms/20230209/v2_9eb02027be264174b61b9d49c391ca75_oswg15571oswg320oswg320_img_png",
"url33": "https://img.36krcdn.com/hsossms/20230605/v2_86f220b69e164751946d583b5472c857@18900718_oswg97988oswg320oswg320_img_png",
"url34": "https://img.36krcdn.com/hsossms/20230209/v2_0c6a697748b54beea356d6e1f1fcec5f_oswg17066oswg320oswg320_img_png",
"url35": "https://img.36krcdn.com/hsossms/20230209/v2_2f845ed16244458d8887a5526c63c6d6_oswg17346oswg320oswg320_img_png",
"url36": "https://q.36kr.com",
"url37": "https://www.36dianping.com/",
"url38": "https://36kr.com/academe",
"url39": "https://innovation.36kr.com",
"url40": "https://www.36kr.com/p/2492318105786505",
"url41": "https://36kr.com/policy",
"url42": "https://topics.36kr.com/topic/1645523444931974",
"url43": "https://36kr.com/LPlan",
"url44": "https://36kr.com/VClub",
"url45": "https://36kr.com/organization/",
"url46": "https://36kr.com/topics/1620276089894403",
"url47": "https://pitchhub.36kr.com/audit-investor",
"url48": "https://36kr.com/seek-report-new",
"url49": "https://img.36krcdn.com/hsossms/20230209/v2_95565530d4d94dc4ad904f3131c7b690_oswg23055oswg320oswg320_img_png",
"url50": "https://topics.36kr.com/topic/1961250130199045",
"url51": "https://36kr.com/project-form/settled",
"url52": "https://36kr.com/topics/799051634713857",
"url53": "http://www.bjjubao.org.cn/node_1606.html",
"url54": "ttps://36kr.com/topics/799051634713857",
"url55": "https://36kr.com/",
"url56": "https://36kr.com/",
"url57": "https://36kr.com/newsflashes/",
"url58": "https://36kr.com/information/web_news/",
"url59": "https://36kr.com/information/web_recommend/",
"url60": "https://36kr.com/information/ccs/",
"url61": "https://36kr.com/information/AI/",
"url62": "https://36kr.com/information/aireport/",
"url63": "https://36kr.com/local/zhejiang",
"url64": "https://36kr.com/information/web_news/latest/",
"url65": "https://36kr.com/information/contact/",
"url66": "https://36kr.com/information/travel/",
"url67": "https://36kr.com/information/technology/",
"url68": "https://36kr.com/information/shuzihua/",
"url69": "https://36kr.com/live/channel",
"url70": "https://36kr.com/video/",
"url71": "https://36kr.com/topics/",
"url72": "https://36kr.com/activity",
"url73": "https://36kr.com/local/guangdong",
"url74": "https://36kr.com/local/jiangsu",
"url75": "https://36kr.com/local/sichuan",
"url76": "https://36kr.com/local/henan",
"url77": "https://36kr.com/local/hubei",
"url78": "https://36kr.com/local/anhui",
"url79": "https://36kr.com/local/hainan",
"url80": "https://36kr.com/local/zhejiang",
"url81": "https://36kr.com/local/xian",
"url82": "https://36kr.com/local/chongqing",
"url83": "https://36kr.com/local/qingdao",
"url84": "https://36kr.com/local/hunan",
"url85": "https://36kr.com/local/guizhou",
"url86": "https://36kr.com/seek-report-new?t=1734790984602",
"url87": "https://36kr.com/station-business",
"url88": "https://36kr.com/information/web_news/latest/",
"url89": "https://36kr.com/information/web_recommend/",
"url90": "https://36kr.com/information/contact/",
"url91": "https://36kr.com/information/ccs/",
"url92": "https://36kr.com/information/travel/",
"url93": "https://36kr.com/information/AI/",
"url94": "https://36kr.com/information/technology/",
"url95": "https://36kr.com/information/aireport/",
"url96": "https://36kr.com/information/shuzihua/",
"url97": "https://36kr.com/information/innovate/",
"url98": "https://36kr.com/information/enterpriseservice/",
"url99": "https://36kr.com/information/happy_life/",
"url100": "https://36kr.com/information/real_estate/",
"url101": "https://36kr.com/information/web_zhichang/",
"url102": "https://36kr.com/information/qiyehao/",
"url103": "https://36kr.com/information/sensation/",
"url104": "https://36kr.com/information/other/",
"url105": "https://36kr.com/information/web_recommend",
"url106": "https://36kr.com/p/3088646341179523",
"url107": "https://36kr.com/p/3088646341179523",
"url108": "https://36kr.com/p/3088646341179523",
"url109": "https://36kr.com/motif/887340957231622",
"url110": "https://36kr.com/user/5327149",
"url111": "https://36kr.com/information/web_recommend",
"url112": "https://36kr.com/p/3088381180835968",
"url113": "https://36kr.com/p/3088381180835968",
"url114": "https://36kr.com/p/3088381180835968",
"url115": "https://36kr.com/motif/327689076737",
"url116": "https://36kr.com/user/5654145",
"url117": "https://36kr.com/information/technology",
"url118": "https://36kr.com/p/3088295581481346",
"url119": "https://36kr.com/p/3088295581481346",
"url120": "https://36kr.com/p/3088295581481346",
"url121": "https://36kr.com/motif/327686176769",
"url122": "https://36kr.com/user/13334819",
"url123": "https://36kr.com/information/happy_life",
"url124": "https://36kr.com/p/3088308264761731",
"url125": "https://36kr.com/p/3088308264761731",
"url126": "https://36kr.com/p/3088308264761731",
"url127": "https://36kr.com/motif/1654014377589128",
"url128": "https://36kr.com/user/375349",
"url129": "https://36kr.com/information/technology",
"url130": "https://36kr.com/p/3088295368030594",
"url131": "https://36kr.com/p/3088295368030594",
"url132": "https://36kr.com/p/3088295368030594",
"url133": "https://36kr.com/motif/1654014377589128",
"url134": "https://36kr.com/user/10623839",
"url135": "https://36kr.com/information/web_recommend",
"url136": "https://36kr.com/p/3087940258265473",
"url137": "https://36kr.com/p/3087940258265473",
"url138": "https://36kr.com/p/3087940258265473",
"url139": "https://36kr.com/motif/327686029313",
"url140": "https://36kr.com/user/1613224138",
"url141": "https://36kr.com/information/web_recommend",
"url142": "https://36kr.com/p/3087303746140289",
"url143": "https://36kr.com/p/3087303746140289",
"url144": "https://36kr.com/p/3087303746140289",
"url145": "https://36kr.com/motif/327688486913",
"url146": "https://36kr.com/user/1133528739",
"url147": "https://36kr.com/information/technology",
"url148": "https://36kr.com/p/3087654394362243",
"url149": "https://36kr.com/p/3087654394362243",
"url150": "https://36kr.com/p/3087654394362243",
"url151": "https://36kr.com/motif/327686782977",
"url152": "https://36kr.com/user/214166",
"url153": "https://36kr.com/information/technology",
"url154": "https://36kr.com/p/3088086092839298",
"url155": "https://36kr.com/p/3088086092839298",
"url156": "https://36kr.com/p/3088086092839298",
"url157": "https://36kr.com/motif/327686782977",
"url158": "https://36kr.com/user/16637033",
"url159": "https://36kr.com/information/web_recommend",
"url160": "https://36kr.com/p/3088051331496065",
"url161": "https://36kr.com/p/3088051331496065",
"url162": "https://36kr.com/p/3088051331496065",
"url163": "https://36kr.com/motif/887340009662976",
"url164": "https://36kr.com/user/5363153",
"url165": "https://36kr.com/information/technology",
"url166": "https://36kr.com/p/3088122103117959",
"url167": "https://36kr.com/p/3088122103117959",
"url168": "https://36kr.com/p/3088122103117959",
"url169": "https://36kr.com/motif/327686782977",
"url170": "https://36kr.com/user/375349",
"url171": "https://36kr.com/information/happy_life",
"url172": "https://36kr.com/p/3088035080681605",
"url173": "https://36kr.com/p/3088035080681605",
"url174": "https://36kr.com/p/3088035080681605",
"url175": "https://36kr.com/motif/327687553025",
"url176": "https://36kr.com/user/5324324",
"url177": "https://36kr.com/information/web_recommend",
"url178": "https://36kr.com/p/3087990370580616",
"url179": "https://36kr.com/p/3087990370580616",
"url180": "https://36kr.com/p/3087990370580616",
"url181": "https://36kr.com/motif/327685832705",
"url182": "https://36kr.com/user/638700851",
"url183": "https://36kr.com/information/technology",
"url184": "https://36kr.com/p/3088107741870215",
"url185": "https://36kr.com/p/3088107741870215",
"url186": "https://36kr.com/p/3088107741870215",
"url187": "https://36kr.com/motif/327686782977",
"url188": "https://36kr.com/user/375349",
"url189": "https://36kr.com/information/technology",
"url190": "https://36kr.com/p/3087954405325193",
"url191": "https://36kr.com/p/3087954405325193",
"url192": "https://36kr.com/p/3087954405325193",
"url193": "https://36kr.com/motif/327686782977",
"url194": "https://36kr.com/user/175367",
"url195": "https://36kr.com/information/web_recommend",
"url196": "https://36kr.com/p/3087949073086855",
"url197": "https://36kr.com/p/3087949073086855",
"url198": "https://36kr.com/p/3087949073086855",
"url199": "https://36kr.com/motif/327685832705",
"url200": "https://36kr.com/user/1080897699",
"url201": "https://36kr.com/information/web_recommend",
"url202": "https://36kr.com/p/3086765895022729",
"url203": "https://36kr.com/p/3086765895022729",
"url204": "https://36kr.com/p/3086765895022729",
"url205": "https://36kr.com/motif/327687405569",
"url206": "https://36kr.com/user/11918142",
"url207": "https://36kr.com/information/travel",
"url208": "https://36kr.com/p/3087906699311492",
"url209": "https://36kr.com/p/3087906699311492",
"url210": "https://36kr.com/p/3087906699311492",
"url211": "https://36kr.com/motif/327687127041",
"url212": "https://36kr.com/user/5786567",
"url213": "https://36kr.com/information/travel",
"url214": "https://36kr.com/p/3087890137233544",
"url215": "https://36kr.com/p/3087890137233544",
"url216": "https://36kr.com/p/3087890137233544",
"url217": "https://36kr.com/motif/327685996545",
"url218": "https://36kr.com/user/5507103",
"url219": "https://36kr.com/information/contact",
"url220": "https://36kr.com/p/3087868278749316",
"url221": "https://36kr.com/p/3087868278749316",
"url222": "https://36kr.com/p/3087868278749316",
"url223": "https://36kr.com/motif/1846746003540870",
"url224": "https://36kr.com/user/47157707",
"url225": "https://36kr.com/information/technology",
"url226": "https://36kr.com/p/3087594703943812",
"url227": "https://36kr.com/p/3087594703943812",
"url228": "https://36kr.com/p/3087594703943812",
"url229": "https://36kr.com/motif/327686782977",
"url230": "https://36kr.com/user/1852809498",
"url231": "https://36kr.com/information/web_recommend",
"url232": "https://36kr.com/p/3087382330062979",
"url233": "https://36kr.com/p/3087382330062979",
"url234": "https://36kr.com/p/3087382330062979",
"url235": "https://36kr.com/motif/327685832705",
"url236": "https://36kr.com/user/1288893084",
"url237": "https://36kr.com/information/web_recommend",
"url238": "https://36kr.com/motif/327687618561",
"url239": "https://36kr.com/user/5034919",
"url240": "https://36kr.com/information/web_recommend",
"url241": "https://36kr.com/p/3087290228914563",
"url242": "https://36kr.com/p/3087290228914563",
"url243": "https://36kr.com/p/3087290228914563",
"url244": "https://36kr.com/motif/327686029313",
"url245": "https://36kr.com/user/1554725818",
"url246": "https://36kr.com/information/web_recommend",
"url247": "https://36kr.com/p/3087292469065863",
"url248": "https://36kr.com/p/3087292469065863",
"url249": "https://36kr.com/p/3087292469065863",
"url250": "https://36kr.com/motif/327686782977",
"url251": "https://36kr.com/user/5372076",
"url252": "https://36kr.com/information/web_zhichang",
"url253": "https://36kr.com/p/3087063959665031",
"url254": "https://36kr.com/p/3087063959665031",
"url255": "https://36kr.com/p/3087063959665031",
"url256": "https://36kr.com/motif/1756302767423108",
"url257": "https://36kr.com/user/10246630",
"url258": "https://36kr.com/information/web_zhichang",
"url259": "https://36kr.com/p/3087061837281667",
"url260": "https://36kr.com/p/3087061837281667",
"url261": "https://36kr.com/p/3087061837281667",
"url262": "https://36kr.com/motif/1756302767423108",
"url263": "https://36kr.com/user/10246630",
"url264": "https://36kr.com/information/travel",
"url265": "https://36kr.com/p/3087175585134728",
"url266": "https://36kr.com/p/3087175585134728",
"url267": "https://36kr.com/p/3087175585134728",
"url268": "https://36kr.com/motif/327687127041",
"url269": "https://36kr.com/user/5060931",
"url270": "https://36kr.com/information/web_zhichang",
"url271": "https://36kr.com/p/3087052296943753",
"url272": "https://36kr.com/p/3087052296943753",
"url273": "https://36kr.com/p/3087052296943753",
"url274": "https://36kr.com/motif/1756302767423108",
"url275": "https://36kr.com/user/10246630",
"url276": "https://36kr.com/information/web_recommend",
"url277": "https://36kr.com/p/3087158007168777",
"url278": "https://36kr.com/p/3087158007168777",
"url279": "https://36kr.com/p/3087158007168777",
"url280": "https://36kr.com/motif/327686029313",
"url281": "https://36kr.com/user/17104992",
"url282": "https://36kr.com/user/6004667",
"url283": "https://36kr.com/user/6004667",
"url284": "https://36kr.com/enterprises-list",
"url285": "https://q.36kr.com",
"url286": "https://36kr.com/station-business",
"url287": "https://36kr.com/seek-report-new",
"url288": "http://ir.36kr.com",
"url289": "https://36kr.com/pages/about",
"url290": "https://zhaopin.36kr.com",
"url291": "https://eu.36kr.com",
"url292": "https://eu.36kr.com/zh",
"url293": "https://eu.36kr.com/de",
"url294": "https://www.aicpb.com",
"url295": "https://36kr.com/refute-rumor-notice",
"url296": "https://36kr.com/hot-list/catalog",
"url297": "https://36kr.com/project",
"url298": "https://36kr.com/tags",
"url299": "https://36kr.com/nftags",
"url300": "https://www.aliyun.com/",
"url301": "https://www.volcengine.cn/",
"url302": "https://www.getui.com/cn/index.html",
"url303": "https://www.odaily.com",
"url304": "https://www.jingdata.com",
"url305": "https://www.krspace.cn",
"url306": "https://www.futunn.com/",
"url307": "https://www.36dianping.com/pk/",
"url308": "http://www.woshipm.com",
"url309": "https://www.36linkr.com",
"url310": "https://36kr.com/",
"url311": "https://www.aliyun.com/",
"url312": "https://www.12377.cn",
"url313": "https://beian.miit.gov.cn/#/Integrated/index",
"url314": "https://dxzhgl.miit.gov.cn/dxxzsp/xkz/xkzgl/resource/qiyesearch.jsp?num=%25E5%258C%2597%25E4%25BA%25AC%25E5%25A4%259A%25E6%25B0%25AA%25E4%25BF%25A1%25E6%2581%25AF%25E7%25A7%2591%25E6%258A%2580%25E6%259C%2589%25E9%2599%2590%25E5%2585%25AC%25E5%258F%25B8&type=xuke",
"url315": "http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010502036099",
"url316": "https://weibo.com/wow36kr",
"url317": "https://36kr.com/rss-center",
"url318": "https://36kr.com/mform/1755983296602372"
}

View File

@ -1,305 +0,0 @@
-[url15]
账号设置[url16]
我的关注[url17]
我的收藏[url18]
申请的报道[url19]
退出登录
登录
搜索
1. 36氪Auto[url20]数字时氪[url21]未来消费[url22]智能涌现[url23]未来城市[url24]启动Power on[url25]36氪出海[url26]36氪研究院[url27]潮生TIDE[url28]36氪企服点评[url29]36氪财经[url30]职场bonus[url31]36碳[url32]后浪研究所[url33]暗涌Waves[url34]硬氪[url35]媒体品牌 2. 企业号[url36]企服点评[url37]36Kr研究院[url38]36Kr创新咨询[url39]企业服务 3. 核心服务[url40]城市之窗[url41]政府服务 4. 创投发布[url42]LP源计划[url43]VClub[url44]VClub投资机构库[url45]投资机构职位推介[url46]投资人认证[url47]投资人服务 5. 寻求报道[url48]36氪Pro[url49]创投氪堂[url50]企业入驻[url51]创业者服务 6. 创投平台
-[url52]
-[url53]
-[url54]
-[url55]
1. 首页[url56] 2. 快讯[url57] 3. 资讯[url58]推荐[url59]财经[url60]AI[url61]自助报道[url62]浙江[url63]最新[url64]创投[url65]汽车[url66]科技[url67]专精特新[url68] 4. 推荐[url59] 5. 财经[url60] 6. AI[url61] 7. 自助报道[url62] 8. 浙江[url63] 9. 最新[url64] 10. 创投[url65] 11. 汽车[url66] 12. 科技[url67] 13. 专精特新[url68] 14. 直播[url69] 15. 视频[url70] 16. 专题[url71] 17. 活动[url72] 18. 广东[url73] 19. 江苏[url74] 20. 四川[url75] 21. 河南[url76] 22. 湖北[url77] 23. 安徽[url78] 24. 海南[url79] 25. 浙江[url80] 26. 陕西[url81] 27. 重庆[url82] 28. 山东[url83] 29. 湖南[url84] 30. 贵州[url85]
搜索
寻求报道[url86]
我要入驻
城市合作[url87]
推荐[url105]
-宁德时代的梦想储存在电池银行img[url0][url106]
宁德时代的梦想,储存在电池银行[url107]
让电池成为“会生长的资产”。[url108]
来自主题:新能源车[url109]|
晓曦[url110]
47分钟前
推荐[url111]
-7家消费公司拿到新钱哈根达斯中国门店客流量下降「男版lululemon」Vuori首推新春系列 |创投大视野img[url1][url112]
7家消费公司拿到新钱哈根达斯中国门店客流量下降「男版lululemon」Vuori首推新春系列 |创投大视野[url113]
离你最近的消费创投一线。[url114]
来自主题:新商业观察[url115]|
李小霞[url116]
2小时前
科技[url117]
-第一批用上苹果AI的人已经后悔了img[url2][url118]
第一批用上苹果AI的人已经后悔了[url119]
这就翻车了?[url120]
来自主题:王者苹果?[url121]|
字母榜[url122]
5小时前
消费[url123]
-中国最大金表商要IPO了img[url3][url124]
中国最大金表商要IPO了[url125]
10个黄金珠宝商8个莆田人7个北高人。[url126]
来自主题:创投圈秘事[url127]|
36氪的朋友们[url128]
5小时前
科技[url129]
-婚纱女王卖了img[url4][url130]
婚纱女王,卖了[url131]
婚纱女王,卖了[url132]
来自主题:创投圈秘事[url133]|
投资界[url134]
5小时前
推荐[url135]
-2024内娱第一「癫公」日入千万img[url5][url136]
2024内娱第一「癫公」日入千万[url137]
向佐没疯,他赚疯了[url138]
来自主题:文娱直播新动向[url139]|
凤凰周刊[url140]
8小时前
推荐[url141]
-阿里都搞不定的银泰雅戈尔为何接手img[url6][url142]
阿里都搞不定的银泰,雅戈尔为何接手?[url143]
回归主业是战略,投资大王的名号也不能丢。[url144]
来自主题:这就是商业[url145]|
伯虎财经[url146]
9小时前
科技[url147]
-刚刚OpenAI放出最后大惊喜o3高计算模式每任务花费数千美元img[url7][url148]
刚刚OpenAI放出最后大惊喜o3高计算模式每任务花费数千美元[url149]
o3突破 ARC-AGI 基准,博士级问题求解能力[url150]
来自主题人工智能·AI[url151]|
机器之心[url152]
9小时前
科技[url153]
-苹果没能做成的这个功能成了国产厂商的新杀手锏img[url8][url154]
苹果没能做成的这个功能,成了国产厂商的新杀手锏[url155]
被大众遗忘的轻 App[url156]
来自主题人工智能·AI[url157]|
爱范儿[url158]
9小时前
推荐[url159]
-[url160]
客户流失、竞争壁垒低,有赞的时代正在远去[url161]
有赞难言轻松。[url162]
来自主题:电商零售[url163]|
DoNews[url164]
9小时前
科技[url165]
-[url166]
o3权威评测报告AI能力实现关键跃升但仍未达到AGI水平[url167]
通过ARC-AGI的测试并不等于实现了通用人工智能。[url168]
来自主题人工智能·AI[url169]|
36氪的朋友们[url170]
9小时前
消费[url171]
-[url172]
土耳其游戏:狂奔之后刹车,年轻人开始逃离[url173]
游戏产业,曾是土耳其数字经济的一道曙光。[url174]
来自主题:游戏圈大事件[url175]|
霞光社[url176]
9小时前
推荐[url177]
-[url178]
身价30亿LV母公司收购的顶级健身房要垮了[url179]
倒下的威尔仕。[url180]
来自主题:关于消费的一切[url181]|
融资中国[url182]
9小时前
科技[url183]
-[url184]
当你以为AI发展放缓时OpenAI推出o3向AGI迈出关键一步[url185]
OpenAI在年底通过o3系列的卓越表现重新杀回了铁王座。[url186]
来自主题人工智能·AI[url187]|
36氪的朋友们[url188]
9小时前
科技[url189]
-[url190]
AI同时操控200个机器人任务成功率超90%,半数故障依然「能打」[url191]
在协作中学会如何优化自己的行为。[url192]
来自主题人工智能·AI[url193]|
学术头条[url194]
10小时前
推荐[url195]
-[url196]
冻梨卖爆、搓澡巾被抢,“神秘东北力量”席卷饮品圈[url197]
给饮品加点“东北味”更好卖?[url198]
来自主题:关于消费的一切[url199]|
咖门[url200]
10小时前
推荐[url201]
-[url202]
出海周刊125期谁在越南挣到钱了/紧随Keeta美团小象超市和无人机业务也出海中东了[url203]
全方位的全球化布局增加了企业运营的复杂度,但也正因如此,中国企业在国际市场能够建立起更具竞争力的业务模式。[url204]
来自主题:出海是门大生意[url205]|
36氪出海[url206]
10小时前
汽车[url207]
-[url208]
本田日产,警惕出现“失意者联盟”[url209]
大家重点关心的已不再是800万辆的销售规模而是后续的运营效率和潜在风险。[url210]
来自主题:汽车出行[url211]|
汽车公社[url212]
10小时前
汽车[url213]
-[url214]
150亿造车新势力闪崩9位创始人全部跑路股价断崖下跌97%[url215]
刚实现盈利就没钱了[url216]
来自主题:新造车势力又搞事[url217]|
智能车参考[url218]
10小时前
创投[url219]
-[url220]
药企借船NewCo或许比我们想象的要难[url221]
动脉网出品[url222]
来自主题:专精特新-生物医药[url223]|
动脉网[url224]
10小时前
科技[url225]
-[url226]
o3来了编程跻身人类全球前200破解陶哲轩说难的数学测试北大校友任泓宇现身直播间[url227]
“AGI重要里程碑”[url228]
来自主题人工智能·AI[url229]|
量子位[url230]
10小时前
推荐[url231]
-[url232]
年入30亿+的毛绒玩具Build-A-Bear如何走出低谷[url233]
“定义价值观”[url234]
来自主题:关于消费的一切[url235]|
三文娱[url236]
10小时前
推荐[url237]
煌上煌收购展翠食品告吹,背后徐桂芬家族已跌出胡润百富榜
煌上煌发展遇瓶颈。
来自主题:商业人物追踪[url238]|
雷达财经[url239]
10小时前
推荐[url240]
-[url241]
是时候给春节档松绑了[url242]
春节档有些过激了[url243]
来自主题:文娱直播新动向[url244]|
犀牛娱乐[url245]
12小时前
推荐[url246]
-[url247]
AI+Emoji终于打了一场胜仗[url248]
胜利,转瞬即逝。[url249]
来自主题人工智能·AI[url250]|
白鲸出海[url251]
12小时前
职场[url252]
-[url253]
90后独生子女把抑郁症父母送去精神科[url254]
一件困难又要紧的事。[url255]
来自主题:后浪研究所[url256]|
后浪研究所[url257]
12小时前
职场[url258]
-[url259]
一个男性自学女性主义后,越来越「自闭」了[url260]
“我就是普信男啊。”[url261]
来自主题:后浪研究所[url262]|
后浪研究所[url263]
12小时前
汽车[url264]
-[url265]
中国人打价格战,德国人先裁员[url266]
消失的附加值[url267]
来自主题:汽车出行[url268]|
远川科技评论[url269]
12小时前
职场[url270]
-[url271]
「长安街英菲尼迪车祸案」14年一个女人的丧失与重建[url272]
接纳一切。[url273]
来自主题:后浪研究所[url274]|
后浪研究所[url275]
12小时前
推荐[url276]
-[url277]
长视频与短视频的2024[url278]
长视频与短视频平台之间,也早已不再是你死我亡的战火硝烟,而是在发挥各自优势的同时向对方取径,携手满足观众不同层级、场景的精神需求。[url279]
来自主题:文娱直播新动向[url280]|
文娱价值官[url281]
13小时前
查看更多
...正在加载
没有更多了
推荐企业
换一换
-如视img[url9][url282]
如视数字空间综合解决方案引领者[url283]
查看更多企业[url284]
-[url285]
关于36氪
城市合作[url286]
寻求报道[url287]
我要入驻
投资者关系[url288]
商务合作
关于我们[url289]
联系我们
加入我们[url290]
36氪欧洲站[url291]
36氪欧洲站[url292]
36氪欧洲站[url293]
Ai产品日报[url294]
网络谣言信息举报入口[url295]
热门推荐
热门资讯[url296]
热门产品[url297]
文章标签[url298]
快讯标签[url299]
合作伙伴
1. -阿里云[url300] 2. -火山引擎[url301] 3. -高德 4. -个推[url302] 5. -星球日报[url303] 6. -鲸准[url304] 7. -氪空间[url305] 8. -富途牛牛[url306] 9. -企服点评[url307] 10. -人人都是产品经理[url308] 11. -领氪[url309]
36氪APP下载
-png[url10]
iOS & Android
-36氪[url310]
本站由 
阿里云[url311]提供计算与安全服务 违法和不良信息、未成年人保护举报电话010-89650707 举报邮箱jubao@36kr.com 网上有害信息举报[url312]
© 2011~2024 北京多氪信息科技有限公司 |
京ICP备12031756号-6[url313]
|
京ICP证150143号[url314]
|
京公网安备11010502036099号[url315]
-[url316]
-[url317]
意见反馈[url318]
-png[url11]
36氪APP
让一部分人先看到未来
36氪
鲸准
氪空间
-jpg[url12]
推送和解读前沿、有料的科技创投资讯
-jpg[url13]
一级市场金融信息和系统服务提供商
-jpg[url14]
聚焦全球优秀创业者项目融资率接近97%,领跑行业

View File

@ -1,32 +0,0 @@
{
"form_0": {
"kw": {
"type": "text",
"values": [
"placeholder=请输入关键词 autocomplete=off onblur=this.value=this.value.trim()"
]
},
"type": {
"type": "hidden",
"values": [
"value=5"
]
}
},
"tab": {
"input": {
"type": "radio",
"values": [
"id=tab8"
]
}
},
"input_2": {
"input": {
"type": "hidden",
"values": [
"value={\"appid\":1101,\"reportUrl\":\"https://userlog.bjx.com.cn/report\",\"os\":\"1\",\"ver\":\"100\"} id=txtReportId"
]
}
}
}

View File

@ -1,289 +0,0 @@
{
"url0": "https://img.mybjx.net/theme/default/wap/images/share.jpg",
"url1": "https://newsstatic.bjx.com.cn/public/a210726/bjx_mt_10_news/img/logo.png?_=1734790967898",
"url2": "https://img01.mybjx.net/webupload/image/20241219/3e0f324b240000e.png",
"url3": "https://static.bjx.com.cn/upload/zhuanti/2024/12/10/57003319_1fnfbs60pa81eelh357q1c.jpg",
"url4": "https://static.bjx.com.cn/upload/zhuanti/2024/12/18/48535603_y6rg41sobi19xf9nfmo7r.jpg",
"url5": "https://static.bjx.com.cn/upload/zhuanti/2024/12/16/51492787_7roao9srj66zcxfmiteg8.jpg",
"url6": "https://static.bjx.com.cn/upload/zhuanti/2024/12/9/36011159_ps0tmmp7vk1iw0x3r8oqa.jpg",
"url7": "https://static.bjx.com.cn/upload/zhuanti/2024/12/11/42271930_27b2xjjtqv02e1yp68k206.jpg",
"url8": "https://static.bjx.com.cn/upload/zhuanti/2024/12/10/57003319_1fnfbs60pa81eelh357q1c.jpg",
"url9": "https://static.bjx.com.cn/upload/zhuanti/2024/12/18/48535603_y6rg41sobi19xf9nfmo7r.jpg",
"url10": "https://static.bjx.com.cn/company-logo/2018/06/09/2018060916062676_442749.jpg",
"url11": "https://static.bjx.com.cn/company-logo/2018/06/09/2018060916051223_458392.jpg",
"url12": "https://static.bjx.com.cn/company-logo/2021/01/18/2021011813450536_img897429.jpg",
"url13": "https://hrusersidestatic.bjx.com.cn/EnterpriseNew/CompanyLogo/124300/2024110515440275_170987.jpeg",
"url14": "https://hrusersidestatic.bjx.com.cn/EnterpriseNew/CompanyLogo/158749/2024111818473333_670131.jpeg",
"url15": "https://img01.mybjx.net/webupload/image/20230428/3e02d134500000c.jpg!eduitemthumbnail",
"url16": "https://img01.mybjx.net/webupload/image/20220322/3ffa89444400002.png!eduitemthumbnail",
"url17": "https://img01.mybjx.net/webupload/image/20220601/3ffbffe3a00000a.jpg!eduitemthumbnail",
"url18": "https://img01.mybjx.net/webupload/image/20220728/3ffd2c42dc00002.jpg!eduitemthumbnail",
"url19": "https://img01.mybjx.net/webupload/image/20220328/3ffaa922b000008.jpg!eduitemthumbnail",
"url20": "https://img01.mybjx.net/webupload/image/20220602/3ffc067a4400002.jpg!eduitemthumbnail",
"url21": "https://newsstatic.bjx.com.cn/public/a210726/bjx_mt_10_news/img/footer_app.png?_=1734790967898",
"url22": "https://newsstatic.bjx.com.cn/public/a210726/bjx_mt_10_news/img/footer_gzh.png?_=1734790967898",
"url23": "https://newsstatic.bjx.com.cn/public/a210726/bjx_mt_10_news/img/footer_xcx.png?_=1734790967898",
"url24": "https://newsstatic.bjx.com.cn/public/a210726/bjx_mt_10_news/img/footer_h5.png?_=1734790967898",
"url25": "https://newsstatic.bjx.com.cn/public/a210726/bjx_mt_10_news/img/logo.png?_=1734790967898",
"url26": "https://newsstatic.bjx.com.cn/public/a210726/bjx_mt_10_news/img/chip/footer_bei_ico.png?_=1734790967898",
"url27": "https://www.bjx.com.cn/",
"url28": "https://huodian.bjx.com.cn/",
"url29": "https://fd.bjx.com.cn/",
"url30": "https://guangfu.bjx.com.cn/",
"url31": "https://shuidian.bjx.com.cn/",
"url32": "https://shoudian.bjx.com.cn/",
"url33": "https://chuneng.bjx.com.cn/",
"url34": "https://qn.bjx.com.cn/",
"url35": "https://huanbao.bjx.com.cn/",
"url36": "https://xinxihua.bjx.com.cn/",
"url37": "http://www.chinasmartgrid.com.cn/",
"url38": "https://hedian.bjx.com.cn/",
"url39": "https://news.bjx.com.cn/zhuanti/2019zhnyfw/",
"url40": "https://energy.bjx.com.cn/",
"url41": "https://shupeidian.bjx.com.cn/",
"url42": "https://tanguanjia.bjx.com.cn/",
"url43": "https://nongdian.bjx.com.cn/",
"url44": "https://battery.bjx.com.cn/",
"url45": "https://huanbao.bjx.com.cn/",
"url46": "https://daqi.bjx.com.cn/",
"url47": "https://scl.bjx.com.cn/",
"url48": "https://gfcl.bjx.com.cn/",
"url49": "https://jn.bjx.com.cn/",
"url50": "https://ljfd.bjx.com.cn/",
"url51": "https://hjxf.bjx.com.cn/",
"url52": "https://hjjc.bjx.com.cn/",
"url53": "https://huanwei.bjx.com.cn/",
"url54": "https://vocs.bjx.com.cn/",
"url55": "https://hr.bjx.com.cn",
"url56": "https://dljob.bjx.com.cn",
"url57": "https://hdjob.bjx.com.cn",
"url58": "https://hbfdjob.bjx.com.cn",
"url59": "https://zhnyfwjob.bjx.com.cn",
"url60": "https://dlgcjob.bjx.com.cn",
"url61": "https://spdjob.bjx.com.cn",
"url62": "https://sdjob.bjx.com.cn",
"url63": "https://hedjob.bjx.com.cn",
"url64": "https://shdjob.bjx.com.cn",
"url65": "https://tanjob.bjx.com.cn",
"url66": "https://fdjob.bjx.com.cn",
"url67": "https://fdjob.bjx.com.cn/industry/flfd/",
"url68": "https://fdjob.bjx.com.cn/industry/fdzj/",
"url69": "https://fdjob.bjx.com.cn/industry/ypjcl/",
"url70": "https://fdjob.bjx.com.cn/industry/fedgc/",
"url71": "https://fdjob.bjx.com.cn/industry/fdjjyj/",
"url72": "https://fdjob.bjx.com.cn/industry/tttj/",
"url73": "https://fdjob.bjx.com.cn/industry/kzxt/",
"url74": "https://gfjob.bjx.com.cn",
"url75": "https://gfjob.bjx.com.cn/industry/gfdcjzj/",
"url76": "https://gfjob.bjx.com.cn/industry/gfdz/",
"url77": "https://gfjob.bjx.com.cn/industry/gfnbq/",
"url78": "https://gfjob.bjx.com.cn/industry/fbsgf/",
"url79": "https://gfjob.bjx.com.cn/industry/gsygf/",
"url80": "https://gfjob.bjx.com.cn/industry/hygf/",
"url81": "https://gfjob.bjx.com.cn/industry/gfgc/",
"url82": "https://gfjob.bjx.com.cn/industry/gfxtlbj/",
"url83": "https://gfjob.bjx.com.cn/industry/gfcljsb/",
"url84": "https://cnjob.bjx.com.cn",
"url85": "https://cnjob.bjx.com.cn/industry/cndc/",
"url86": "https://cnjob.bjx.com.cn/industry/cnjs/",
"url87": "https://cnjob.bjx.com.cn/industry/cndz/",
"url88": "https://cnjob.bjx.com.cn/industry/gsycn/",
"url89": "https://cnjob.bjx.com.cn/industry/cngc/",
"url90": "https://cnjob.bjx.com.cn/industry/dccl/",
"url91": "https://cnjob.bjx.com.cn/industry/xnyqc/",
"url92": "https://cnjob.bjx.com.cn/industry/cnyy/",
"url93": "https://cnjob.bjx.com.cn/industry/qn/",
"url94": "https://dcjob.bjx.com.cn",
"url95": "https://dccljob.bjx.com.cn",
"url96": "https://dcscjob.bjx.com.cn",
"url97": "https://dcyyjob.bjx.com.cn",
"url98": "https://dchsjob.bjx.com.cn",
"url99": "https://dcjsjob.bjx.com.cn",
"url100": "https://hbjob.bjx.com.cn",
"url101": "https://scljob.bjx.com.cn",
"url102": "https://gfcljob.bjx.com.cn",
"url103": "https://dqzljob.bjx.com.cn",
"url104": "https://hbfdjob.bjx.com.cn",
"url105": "https://jchpjob.bjx.com.cn",
"url106": "https://hbgcjob.bjx.com.cn",
"url107": "https://hbsbjob.bjx.com.cn",
"url108": "https://hjxfjob.bjx.com.cn",
"url109": "https://tanjob.bjx.com.cn",
"url110": "https://jnjob.bjx.com.cn",
"url111": "https://dqjob.bjx.com.cn",
"url112": "https://spdjob.bjx.com.cn",
"url113": "https://zdhjob.bjx.com.cn",
"url114": "https://xxhjob.bjx.com.cn",
"url115": "https://gcjob.bjx.com.cn",
"url116": "https://dlgcjob.bjx.com.cn",
"url117": "https://sjjob.bjx.com.cn",
"url118": "https://jljob.bjx.com.cn",
"url119": "https://gczjjob.bjx.com.cn",
"url120": "https://hbgcjob.bjx.com.cn",
"url121": "https://szlqjob.bjx.com.cn",
"url122": "https://jzjob.bjx.com.cn",
"url123": "https://gdjob.bjx.com.cn",
"url124": "https://jdjob.bjx.com.cn",
"url125": "https://tv.bjx.com.cn/list/?type=1",
"url126": "https://tv.bjx.com.cn/list/?type=2",
"url127": "https://tv.bjx.com.cn/list/?type=3",
"url128": "https://tv.bjx.com.cn/list/?type=4",
"url129": "https://tv.bjx.com.cn/list/?type=5",
"url130": "https://tv.bjx.com.cn/list/?type=7",
"url131": "https://tv.bjx.com.cn/list/?type=8",
"url132": "https://edu.bjx.com.cn/course/0-0-0-0-0-1/",
"url133": "https://edu.bjx.com.cn/book/0-0-0-1/",
"url134": "https://edu.bjx.com.cn/activity/",
"url135": "https://news.bjx.com.cn/zt/app/index.html",
"url136": "https://b2b.bjx.com.cn/",
"url137": "https://hbshebei.bjx.com.cn/",
"url138": "https://club.bjx.com.cn/",
"url139": "https://ex.bjx.com.cn/",
"url140": "https://huanbao.bjx.com.cn/ex",
"url141": "https://guangfu.bjx.com.cn/ex/",
"url142": "https://www.bjx.com.cn/zt/",
"url143": "https://huanbao.bjx.com.cn/zt/",
"url144": "https://news.bjx.com.cn/",
"url145": "https://news.bjx.com.cn/",
"url146": "https://news.bjx.com.cn/zc/",
"url147": "https://news.bjx.com.cn/zb/",
"url148": "https://news.bjx.com.cn/xm/",
"url149": "https://news.bjx.com.cn/js/",
"url150": "https://news.bjx.com.cn/sj/",
"url151": "https://news.bjx.com.cn/bg/",
"url152": "https://club.bjx.com.cn",
"url153": "https://download.bjx.com.cn/",
"url154": "https://news.bjx.com.cn/sc/",
"url155": "https://news.bjx.com.cn/mq/",
"url156": "https://news.bjx.com.cn/dj/",
"url157": "https://huanbao.bjx.com.cn/hbrw.shtml",
"url158": "https://news.bjx.com.cn/pl/",
"url159": "https://news.bjx.com.cn/gj/",
"url160": "https://huodian.bjx.com.cn",
"url161": "https://fd.bjx.com.cn",
"url162": "https://guangfu.bjx.com.cn",
"url163": "https://chuneng.bjx.com.cn",
"url164": "https://shoudian.bjx.com.cn",
"url165": "https://shuidian.bjx.com.cn",
"url166": "https://qn.bjx.com.cn",
"url167": "https://huanbao.bjx.com.cn",
"url168": "http://www.chinasmartgrid.com.cn/",
"url169": "https://hedian.bjx.com.cn",
"url170": "https://battery.bjx.com.cn",
"url171": "https://news.bjx.com.cn/zhuanti/2019zhnyfw/",
"url172": "https://shupeidian.bjx.com.cn",
"url173": "https://nongdian.bjx.com.cn",
"url174": "https://hr.bjx.com.cn/",
"url175": "https://edu.bjx.com.cn/",
"url176": "https://tv.bjx.com.cn",
"url177": "https://b2b.bjx.com.cn/",
"url178": "http://www.bjx.com.cn/zt/",
"url179": "https://companycenter.bjx.com.cn/Account/Register/",
"url180": "https://companycenter.bjx.com.cn/Account/logon/",
"url181": "https://news.bjx.com.cn/rankinglist/dianli/",
"url182": "https://news.bjx.com.cn/rankinglist/huodian/",
"url183": "https://news.bjx.com.cn/rankinglist/fengdian/",
"url184": "https://news.bjx.com.cn/rankinglist/tyngf/",
"url185": "https://news.bjx.com.cn/rankinglist/shuidian/",
"url186": "https://news.bjx.com.cn/rankinglist/hedian/",
"url187": "https://news.bjx.com.cn/rankinglist/chuneng/",
"url188": "https://news.bjx.com.cn/rankinglist/battery/",
"url189": "https://news.bjx.com.cn/rankinglist/shupeidian/",
"url190": "https://news.bjx.com.cn/rankinglist/zndw/",
"url191": "https://news.bjx.com.cn/rankinglist/shoudian/",
"url192": "https://news.bjx.com.cn/html/20241220/1418167.shtml",
"url193": "https://news.bjx.com.cn/html/20241220/1418167.shtml",
"url194": "https://news.bjx.com.cn/html/20241220/1418171.shtml",
"url195": "https://news.bjx.com.cn/html/20241220/1418171.shtml",
"url196": "https://news.bjx.com.cn/html/20241220/1418107.shtml",
"url197": "https://news.bjx.com.cn/html/20241220/1418107.shtml",
"url198": "https://news.bjx.com.cn/html/20241220/1418178.shtml",
"url199": "https://news.bjx.com.cn/html/20241220/1418178.shtml",
"url200": "https://news.bjx.com.cn/html/20241220/1418085.shtml",
"url201": "https://news.bjx.com.cn/html/20241220/1418085.shtml",
"url202": "https://news.bjx.com.cn/html/20241220/1418108.shtml",
"url203": "https://news.bjx.com.cn/html/20241220/1418108.shtml",
"url204": "https://news.bjx.com.cn/html/20241220/1418124.shtml",
"url205": "https://news.bjx.com.cn/html/20241220/1418124.shtml",
"url206": "https://news.bjx.com.cn/html/20241220/1418153.shtml",
"url207": "https://news.bjx.com.cn/html/20241220/1418153.shtml",
"url208": "https://news.bjx.com.cn/html/20241220/1418105.shtml",
"url209": "https://news.bjx.com.cn/html/20241220/1418105.shtml",
"url210": "https://news.bjx.com.cn/html/20241220/1418133.shtml",
"url211": "https://news.bjx.com.cn/html/20241220/1418133.shtml",
"url212": "https://news.bjx.com.cn/html/20241220/1418113.shtml",
"url213": "https://news.bjx.com.cn/html/20241220/1418113.shtml",
"url214": "https://news.bjx.com.cn/html/20241220/1418160.shtml",
"url215": "https://news.bjx.com.cn/html/20241220/1418160.shtml",
"url216": "https://news.bjx.com.cn/html/20241219/1417898.shtml",
"url217": "https://news.bjx.com.cn/html/20241219/1417898.shtml",
"url218": "https://news.bjx.com.cn/html/20241219/1417980.shtml",
"url219": "https://news.bjx.com.cn/html/20241219/1417980.shtml",
"url220": "https://news.bjx.com.cn/html/20241219/1417869.shtml",
"url221": "https://news.bjx.com.cn/html/20241219/1417869.shtml",
"url222": "https://news.bjx.com.cn/html/20241219/1417824.shtml",
"url223": "https://news.bjx.com.cn/html/20241219/1417824.shtml",
"url224": "https://news.bjx.com.cn/html/20241219/1417829.shtml",
"url225": "https://news.bjx.com.cn/html/20241219/1417829.shtml",
"url226": "https://news.bjx.com.cn/html/20241219/1417854.shtml",
"url227": "https://news.bjx.com.cn/html/20241219/1417854.shtml",
"url228": "https://news.bjx.com.cn/html/20241219/1417886.shtml",
"url229": "https://news.bjx.com.cn/html/20241219/1417886.shtml",
"url230": "https://news.bjx.com.cn/html/20241219/1417961.shtml",
"url231": "https://news.bjx.com.cn/html/20241219/1417961.shtml",
"url232": "https://pubapinews.bjx.com.cn/Kehuclick?id=22325",
"url233": "https://news.bjx.com.cn/html/20241220/1418178.shtml",
"url234": "https://news.bjx.com.cn/html/20241220/1418171.shtml",
"url235": "https://news.bjx.com.cn/html/20241220/1418167.shtml",
"url236": "https://news.bjx.com.cn/html/20241220/1418160.shtml",
"url237": "https://news.bjx.com.cn/html/20241220/1418153.shtml",
"url238": "https://news.bjx.com.cn/html/20241220/1418133.shtml",
"url239": "https://news.bjx.com.cn/html/20241220/1418124.shtml",
"url240": "https://news.bjx.com.cn/html/20241220/1418113.shtml",
"url241": "https://news.bjx.com.cn/html/20241220/1418108.shtml",
"url242": "https://news.bjx.com.cn/html/20241220/1418107.shtml",
"url243": "https://hr.bjx.com.cn",
"url244": "https://gfjob.bjx.com.cn/specials/101809.html",
"url245": "https://dljob.bjx.com.cn/specials/101813.html",
"url246": "https://dljob.bjx.com.cn/specials/101812.html",
"url247": "https://dljob.bjx.com.cn/specials/101807.html",
"url248": "https://dljob.bjx.com.cn/specials/101810.html",
"url249": "https://gfjob.bjx.com.cn/specials/101809.html",
"url250": "https://dljob.bjx.com.cn/specials/101813.html",
"url251": "https://hr.bjx.com.cn/companys/43315/jobs_0_1/",
"url252": "https://hr.bjx.com.cn/companys/43315/jobs_0_1/",
"url253": "https://hr.bjx.com.cn/companys/43755/jobs_0_1/",
"url254": "https://hr.bjx.com.cn/companys/43755/jobs_0_1/",
"url255": "https://hr.bjx.com.cn/companys/69431/jobs_0_1/",
"url256": "https://hr.bjx.com.cn/companys/69431/jobs_0_1/",
"url257": "https://hr.bjx.com.cn/companys/124300/jobs_0_1/",
"url258": "https://hr.bjx.com.cn/companys/124300/jobs_0_1/",
"url259": "https://hr.bjx.com.cn/companys/158749/jobs_0_1/",
"url260": "https://hr.bjx.com.cn/companys/158749/jobs_0_1/",
"url261": "https://edu.bjx.com.cn",
"url262": "https://edu.bjx.com.cn/s/67109308.html",
"url263": "https://edu.bjx.com.cn/s/67109294.html",
"url264": "https://edu.bjx.com.cn/s/67109353.html",
"url265": "https://edu.bjx.com.cn/s/67109396.html",
"url266": "https://edu.bjx.com.cn/s/67109299.html",
"url267": "https://edu.bjx.com.cn/s/67109355.html",
"url268": "https://tv.bjx.com.cn/",
"url269": "https://hr.bjx.com.cn/",
"url270": "https://edu.bjx.com.cn/",
"url271": "http://www.bjx.com.cn/about/about.html",
"url272": "http://www.bjx.com.cn/about/baojia_index.html",
"url273": "https://companycenter.bjx.com.cn/common/hybz",
"url274": "http://www.bjx.com.cn/about/yxfa.html",
"url275": "https://map.bjx.com.cn/",
"url276": "http://www.bjx.com.cn/about/about.html?=#s6",
"url277": "http://www.bjx.com.cn/about/lxwm.html",
"url278": "https://news.bjx.com.cn/",
"url279": "http://img.mybjx.net/theme/default/images/common/renzeng/icp1.jpg",
"url280": "https://beian.miit.gov.cn/#/Integrated/index",
"url281": "http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010502034458",
"url282": "https://www.bjx.com.cn/icp.html",
"url283": "http://img.mybjx.net/theme/default/images/common/renzeng/gbjmzz.jpg",
"url284": "http://img.mybjx.net/theme/default/images/common/renzeng/cbwjy.jpg",
"url285": "http://img.mybjx.net/theme/default/images/common/renzeng/hrrlzyxk.jpg",
"url286": "http://img.mybjx.net/theme/default/images/common/renzeng/yingyezhizheng.jpg"
}

View File

@ -1,303 +0,0 @@
-北极星jpg[url0]
新闻
电力
北极星电力网[url27]
火电[url28]
风电[url29]
光伏[url30]
水电[url31]
售电[url32]
储能[url33]
氢能[url34]
环保[url35]
信息化[url36]
智能电网[url37]
核电[url38]
综合能源服务[url39]
能源[url40]
输配电[url41]
碳管家[url42]
农电[url43]
电池[url44]
环保
北极星环保网[url45]
大气[url46]
水处理[url47]
固废[url48]
节能[url49]
垃圾发电[url50]
环境修复[url51]
环境监测[url52]
环卫[url53]
VOCs[url54]
招聘
北极星招聘[url55]
电力[url56]
火电[url57]
环保发电[url58]
综合能源服务[url59]
电力工程[url60]
输配电[url61]
水电[url62]
核电[url63]
售电[url64]
碳管理[url65]
风电[url66]
风电场投资及运营[url67]
风电整机[url68]
叶片及材料[url69]
风电工程[url70]
发电机及元件[url71]
塔筒/塔架[url72]
控制系统[url73]
光伏[url74]
光伏电池组件[url75]
光伏电站及运维[url76]
光伏逆变器[url77]
分布式光伏[url78]
工商业光伏[url79]
户用光伏[url80]
光伏系统工程[url81]
光伏零部件[url82]
光伏原材料及辅料[url83]
储能[url84]
储能电池[url85]
储能系统[url86]
储能电站[url87]
工商业储能[url88]
储能工程[url89]
储能材料及零部件[url90]
光储充一体化[url91]
户用储能[url92]
氢能[url93]
电池[url94]
电池材料[url95]
电池生产[url96]
电池应用[url97]
电池回收[url98]
电池技术[url99]
环保[url100]
水处理[url101]
固废处理[url102]
大气治理[url103]
环保发电[url104]
检测环评[url105]
环保工程[url106]
环保设备[url107]
环境修复[url108]
碳管理[url109]
节能[url110]
电气[url111]
输配电[url112]
自动化[url113]
电力信息化[url114]
工程[url115]
电力工程[url116]
工程设计[url117]
工程监理[url118]
工程造价[url119]
环保工程[url120]
市政路桥工程[url121]
建筑工程[url122]
轨道工程[url123]
机电工程[url124]
直播
直播[url125]
公开课[url126]
空中宣讲[url127]
云招聘[url128]
星培计划[url129]
高端访谈[url130]
校企专访[url131]
学社
课程[url132]
图书[url133]
线下活动[url134]
学社APP[url135]
商务通
电力商务通[url136]
环保设备网[url137]
社区
北极星社区[url138]
会展
电力会展网[url139]
环保会展网[url140]
光伏会展网[url141]
专题
电力专题[url142]
环保专题[url143]
-png?_=1734790967898[url1][url144]
1. 新闻[url145] 2. 政策[url146] 3. 招投标[url147] 4. 项目[url148] 5. 技术[url149] 6. 数据[url150]报告[url151]社区[url152]下载[url153]市场[url154]名企[url155]独家[url156]人物[url157]评论[url158]国际[url159] 7. 数据[url150] 8. 报告[url151] 9. 社区[url152] 10. 下载[url153] 11. 市场[url154] 12. 名企[url155] 13. 独家[url156] 14. 人物[url157] 15. 评论[url158] 16. 国际[url159] 17. 火电[url160] 18. 风电[url161] 19. 光伏[url162] 20. 储能[url163] 21. 售电[url164] 22. 水电[url165]氢能[url166]环保[url167]智能电网[url168]核电[url169]电池[url170]综合能源服务[url171]输配电[url172]农电[url173] 23. 水电[url165] 24. 氢能[url166] 25. 环保[url167] 26. 智能电网[url168] 27. 核电[url169] 28. 电池[url170] 29. 综合能源服务[url171] 30. 输配电[url172] 31. 农电[url173] 32. 招聘[url174] 33. 学社[url175] 34. 直播[url176] 35. 商务通[url177] 36. 专题[url178]
搜索历史
清空
1. 企业注册[url179] 2. 企业登录[url180] 3. 个人注册 4. 个人登录
北极星氢能排行榜
为您提供更方便,更快捷的优质内容查找途径
1. 电力总榜[url181] 2. 火力发电[url182] 3. 风力发电[url183] 4. 太阳能光伏[url184] 5. 水力发电[url185] 6. 核电[url186] 7. 储能[url187] 8. 电池[url188] 9. 输配电[url189] 10. 氢能 11. 智能电网[url190] 12. 售电[url191]
今日
本周
本月
1
山东省新能源产业科技创新行动计划:实施氢储生物质能创新增效行动[url192]
来源:山东省科技厅
昨天
北极星氢能网获悉12月19日山东省科技厅等11部门发布关于印发《山东省新能源产业科技创新行动计划2025—2027年》的通知文件指出二、重点任务实施氢储生物质能创新增效行动1.氢能技术。研发高效率、长寿命电解水制氢装置及关键材料,突破海水制氢、副产氢规模化纯化技术,以及高压氢气[url193]
2
政策解读 | 《山东省新能源产业科技创新行动计划2025—2027年》[url194]
来源:山东省科技厅
昨天
北极星氢能网获悉近日山东省科技厅等11部门印发了《山东省新能源产业科技创新行动计划2025—2027年以下简称《新能源产业科技创新行动计划》现将有关情况解读如下。一、起草背景和过程2024年2月习近平总书记在中央政治局第十二次集体学习时指出我国能源发展仍面临需求压力巨大、供[url195]
3
绿氢3万吨/年总投资110亿内蒙古2个重大项目开工[url196]
来源:北极星氢能网
昨天
北极星氢能网获悉12月18日总投资110亿元的乌审旗风光融合一体化项目和绿色降碳升级改造项目开工。中天合创结合配套设施建设绿色降碳升级改造项目和风光融合绿氢化工示范项目主要建设内容有绿氢/绿氧耦合以及新建50万Nm3/标准立方米天LNG装置、CO深冷分离、30万吨/年醋酸装置、20万吨/年醋酸[url197]
04
新疆俊瑞巴里坤县新能源规模化制绿氢项目EPC中标候选人公示[url198]
来源:中国招标投标公共服务平台
昨天
北极星氢能网获悉12月17日新疆俊瑞巴里坤县新能源规模化制绿氢项目设计采购施工一体化总承包中标候选人公示。中标候选人第1名为中铁二十二局集团第五工程有限公司中标候选人第2名为中铁十一局集团第五工程有限公司中标候选人第3名为中化二建集团有限公司。[url199]
05
制氢56000标方/时!中核风储制氢制氨项目获批[url200]
来源:北极星氢能网
昨天
近日。内蒙古投资项目在线审批办事大厅发布,兴安盟汇科能源有限公司提交的中核科右前旗风储制氢制氨一体化示范项目-制氢项目,符合产业政策和市场准入标准,准予备案。建设地点:兴安盟--科尔沁右翼前旗--兴安盟经济技术开发区总投资120000万元其中自有资金36000万元申请银行贷款84000万元[url201]
06
知名船用氢燃料电池企业申请破产![url202]
来源:北极星氢能网综合
昨天
北极星氢能网获悉近日挪威知名清洁技术公司Teco2030已申请破产该公司曾被视为船用燃料电池应用的先驱和领导者。作为一家新兴能源技术公司TECO2030曾在资本市场上备受瞩目。TECO2030由TECO海运集团于2019年创立并于2021年从总部分拆成为了一家独立公司。主营业务是为航运和重工业提供零排放[url203]
07
攀枝花深挖氢能资源,与东方电气会谈![url204]
来源:北极星氢能网
昨天
12月19日攀枝花市委书记吴群刚市委副书记、市长范继跃会见了东方电气集团党组书记、董事长俞培根一行就进一步深化互利共赢合作进行了深入交流。东方电气集团党组成员、副总经理李建华办公室主任刘兆川产业发展部部长黄颉东方锅炉党委副书记、总经理聂立参加。会见中俞培根代表东方电气集[url205]
08
燕山石化成为华北最大燃料电池氢供应基地![url206]
来源:中国石化
昨天
12月18日燕山石化1万标准立方米/小时氢气提纯设施完善项目投产。至此燕山石化燃料电池氢总产能超过8000吨/年可为京津冀地区提供24吨/天的燃料电池汽车用氢,成为华北地区最大燃料电池氢供应基地,对中国石化打造中国第一氢能公司、助力北京地区氢能源产业发展具有积极意义。燕山石化氢气提纯设施[url207]
09
俊瑞集团与双良集团签署战略合作协议![url208]
来源:俊瑞氢能集团
昨天
近日,俊瑞绿氢能源(集团)有限公司(以下简称“俊瑞集团”)与双良集团有限公司(以下简称“双良集团”)在乌鲁木齐举行座谈交流会并签署《战略合作协议》。俊瑞集团党支部书记刘炜、副总经理王战海、双良集团执行总裁马福林、战略发展部副总经理赵云等领导出席活动。本次活动由俊瑞集团副总经理张璐[url209]
10
云南氢能及储能产业投资合作会举行![url210]
来源:北极星氢能网
昨天
12月19日云南省举办投资云南·重点领域投资合作专题推介系列活动持续加大引资稳资力度推动云南优势资源与部分上市公司、独角兽企业、专精特新“小巨人”等优质企业深度对接促成一批新的产业投资合作项目为云南经济高质量发展注入新动力。在昆明举行的投资云南·氢能及储能投资合作专题推介会[url211]
11
广东云浮2025年氢能源公交示范线路委托经营服务项目公开招标[url212]
来源:中国招标投标公共服务平台
昨天
近日广东云浮2025年氢能源公交示范线路委托经营服务项目公开招标项目资金为624.94278万元,招标人为云浮市佛云新能源交通投资发展有限公司。[url213]
12
“绿氢”赋能零碳城市建设[url214]
来源:张掖市人民政府
昨天
北极星氢能网获悉,近年来,张掖市立足产业结构特征及能源资源禀赋,聚焦甘肃省“绿氢生产及综合利用先行示范区”建设,瞄准高端、智能、绿色方向,将氢能产业列为全市重点发展方向之一,从项目建设、场景打造、政策支持等方面重点发力,持续引导氢能产业有序发展,助力全市生态产品价值向产业领域延伸[url215]
13
年产70万吨全球单套生产规模最大的绿色甲醇项目开工[url216]
来源:北极星氢能网
前天
近日元鳇能源年产70万吨绿色甲醇示范项目开工奠基举行。元鳇能源年产70万吨绿色甲醇示范项目建设周期为18到24个月总投资约为25亿元。项目采用国际前沿、国内顶尖的创新工艺是全球单套生产规模最大的绿色甲醇项目、全国首个生物质电甲醇项目上联生物质种植、沙漠化治理等根基产业下合航运减[url217]
14
华电科工新能源离网制氢技术为能源转型开辟新路径[url218]
来源:北极星氢能网
前天
近年来,以风电、光伏为代表的新能源在我国电力系统中的占比不断提高,由于风光电的波动性、间歇性、随机性特点,将进一步加大消纳难度,同时也给电网带来了较大的输送压力和安全性挑战。氢能作为长周期储能的有效介质,在消纳过剩的新能源电力上展现出了巨大的潜力,离网制氢可降低风光发电对电网冲击[url219]
15
5套电解水制氢设备招标[url220]
来源:中国招标投标公共服务平台
前天
12月19日陕西氢能产业发展有限公司电解水制氢技术示范关键设备采购项目招标项目规模电解水制氢关键技术设备(电解槽系统)的整体设计、采购、安装、调试:包括1000Nm3/h碱性电解槽及气液处理系统3套,500Nm3/hPEM电解槽及PEM成套系统2套。[url221]
16
18.61亿1GW绿电制氢、制甲醇项目相关中标结果公示[url222]
来源:北极星氢能网
前天
12月17日山丹县1GW绿电制氢、制甲醇装备制造产业一体化及基础设施配套项目拟中标结果公示。信息显示第一中标候选人为中建桥梁有限公司第二中标候选人为中建六局第八建设有限公司第三中标候选人为世扬建设集团有限公司。中建桥梁有限公司为拟中标人中标金额18.61亿元。项目业主为华氢(甘肃)[url223]
17
5亿制氢装备项目落地陕西西咸新区[url224]
来源:北极星氢能网
前天
12月18日西咸新区举行2024年四季度重点项目集中签约暨开工竣工活动。项目共计151个总金额689.39亿元涉及先进制造业、服务业、民生保障和基础配套等领域。泾河新城多个项目参与其中。值得一提的是兴燃科技总部及制氢装备研发生产项目总投资5亿元。兴燃科技将总部落地泾河新城并建设PEM电解[url225]
18
中国能建采购电解槽中标候选人公示![url226]
来源:中国能建
前天
12月18日中国能建发布20Nm3/h质子交换膜PEM电解槽试验装置应用示范项目制氢集成化撬装设备采购中标候选人公示中标候选人基本情况如下第一中标候选人鹭岛氢能厦门科技有限公司投标报价2290000.00元第二中标候选人四川亚联氢能科技股份有限公司投标报价2960000.00元第三中标候选人[url227]
19
6亿元氢能无人机出口订单签订[url228]
来源:江南新兴产业集中区
前天
12月18日协氢新能源科技有限公司与上海氢洋科技有限公司签订1000台百公斤级出口农业用氢能无人机合作协议。这笔出口大订单总价值6亿元将由协氢新能源池州生产基地合作生产。此次订单中的H100氢能植保无人机搭载高性能植保专用飞控与高效离心喷头支持多种智能喷洒模式续航久、载重强、耐低温[url229]
20
英国将建立氢能发电补贴机制[url230]
来源:北极星氢能网
前天
北极星氢能网获悉近日英国政府承诺将为氢在发电中的应用提供支持机制并建立相关的商业模式以刺激私人投资。为了降低氢发电H2P投资和支持部署的风险英国能源安全和净零部门DESNZ表示将引入基于可调度电力协议DPA框架的商业模式。英国政府表示通过H2P商业模式为H2P提供定[url231]
-png[url2][url232]
最新热点
1. 新疆俊瑞巴里坤县新能源规模化制绿氢项目EPC中标候选人公示[url233] 2. 政策解读 | 《山东省新能源产业科技创新行动计划2025—2027年》[url234] 3. 山东省新能源产业科技创新行动计划:实施氢储生物质能创新增效行动[url235] 4. “绿氢”赋能零碳城市建设[url236] 5. 燕山石化成为华北最大燃料电池氢供应基地![url237] 6. 云南氢能及储能产业投资合作会举行![url238] 7. 攀枝花深挖氢能资源,与东方电气会谈![url239] 8. 广东云浮2025年氢能源公交示范线路委托经营服务项目公开招标[url240] 9. 知名船用氢燃料电池企业申请破产![url241] 10. 绿氢3万吨/年总投资110亿内蒙古2个重大项目开工[url242]
招聘更多>[url243]
-优质企业专场jpg[url3]告别漫长等待!这些企业处理简历速度快极了[url244]
-秋招 补录 应届生 校招 上市公司 高薪jpg[url4]25届秋招第二批次补录岗位首发[url245]
-校招 急招 急聘 应届生 25届 实习jpg[url5]12月校招急聘专场更快找到offer[url246]
-国企 校招 应届生 招聘 电力招聘 央企jpg[url6]12月央/国企最新校招专场[url247]
-实习 国企实习 应届生 校招jpg[url7]应届生冬季实习专场[url248]
-优质企业专场jpg[url8]告别漫长等待!这些企业处理简历速度快极了[url249]
-秋招 补录 应届生 校招 上市公司 高薪jpg[url9]25届秋招第二批次补录岗位首发[url250]
1. -jpg[url10][url251]天津蓝巢电力检修有限公司在招应届毕业生、热控检修工等324个职位[url252]交通补助 | 带薪年假 | 定期体检 2. -jpg[url11][url253]华润电力京津冀新能源公司在招建设项目电气管理岗、法务管理岗等6个职位[url254]交通补助 | 通讯津贴 | 定期体检 3. -jpg[url12][url255]中节能太阳能股份有限公司华南区在招运维管理中心副主任、人力专员等13个职位[url256]绩效奖金 | 带薪年假 | 通讯津贴 4. -jpeg[url13][url257]江苏大孚集成装备科技有限公司在招采购专员电气设备、储能海外销售等19个职位[url258]绩效奖金 | 带薪年假 | 定期体检 5. -jpeg[url14][url259]北京美盛博远工程咨询有限公司在招钢厂建设合约经理、钢厂建设项目经理等11个职位[url260]定期体检 | 尊重人才 | 发展空间大
学社更多>[url261]
1. -集中式光伏项目全流程支持性文件概述jpg!eduitemthumbnail[url15]课程集中式光伏项目全流程支持性文件概述[url262] 2. -储能电站安全运维管理方案png!eduitemthumbnail[url16]课程储能电站安全运维管理方案[url263] 3. -锂离子电池储能中的安全问题及应对技术限时免费jpg!eduitemthumbnail[url17]课程锂离子电池储能中的安全问题及应对技术(限时免费)[url264] 4. -光伏电站股权收购的流程和风险分析jpg!eduitemthumbnail[url18]课程光伏电站股权收购的流程和风险分析[url265] 5. -《零碳生态&绿色未来》系列公益公开课jpg!eduitemthumbnail[url19]课程《零碳生态&绿色未来》系列公益公开课[url266] 6. -分布式光伏电站建设“避坑指南”jpg!eduitemthumbnail[url20]课程分布式光伏电站建设“避坑指南”[url267]
便捷入口
在线直播[url268]
招聘服务[url269]
北极星学社[url270]
关于我们
关于北极星[url271]
广告服务[url272]
会员服务[url273]
营销方案[url274]
网站地图[url275]
成功案例[url276]
联系我们[url277]
网站运营
北京火山动力网络技术有限公司
北京市朝阳区世通国际大厦C座12层
1. -png?_=1734790967898[url21] 2. -png?_=1734790967898[url22] 3. -png?_=1734790967898[url23] 4. -png?_=1734790967898[url24]
-北极星电力新闻网png?_=1734790967898[url25][url278]
广告合作:
崔女士 18911066791
陈女士 17701031159
合作投稿:
陈女士 13693626116
会展合作:
齐女士 13381061157
会员咨询:
李先生 17718308761
法务邮箱fw@bjxmail.com
京ICP证080169号[url279]
京ICP备09003304号-2[url280]
-png?_=1734790967898[url26]京公网安备11010502034458号[url281]
电子公告服务专项备案[url282]
广播电视节目制作经营许可证 (京) 字第13229号[url283]
出版物经营许可证新出发京批字第直200384号[url284]
人力资源服务许可证1101052014340号[url285]
Copyright © 2024 Bjx.com.cn All Rights Reserved.
北京火山动力网络技术有限公司[url286]
版权所有

View File

@ -1,7 +0,0 @@
content_judge: 6528
special_url_count: 207
arcile_or_list_judge: 0.03170955882352941
************
raw materials: 407948

File diff suppressed because one or more lines are too long

View File

@ -1,7 +0,0 @@
{
"link_dict": {
"微信公众平台广告规范指引": "javacript:;"
},
"text": "# 同心之声 乐启新章 丨赵巷镇统一战线迎新音乐会邀您:重温经典旋律,唤醒美好回忆 \n\n in赵巷 ;) _2024年12月29日 10:44_ _上海_\n\n预览时标签不可点\n\n关闭\n\n更多\n\n名称已清空\n\n**微信扫一扫赞赏作者**\n\n喜欢作者其它金额\n\n文章\n\n暂无文章\n\n喜欢作者\n\n其它金额\n\n¥\n\n最低赞赏 ¥0\n\n确定\n\n返回\n\n**其它金额**\n\n更多\n\n赞赏金额\n\n¥\n\n最低赞赏 ¥0\n\n1\n\n2\n\n3\n\n4\n\n5\n\n6\n\n7\n\n8\n\n9\n\n0\n\n.\n\n关闭\n\n更多\n\n小程序\n\n广告\n\n搜索「undefined」网络结果\n\n\n\n暂无留言\n\n已无更多数据\n\n写留言:\n\n关闭\n\n**写留言**\n\n提交更多\n\n微信扫一扫关注该公众号\n\n继续滑动看下一个\n\n轻触阅读原文\n\nin赵巷 \n\n向上滑动看下一个\n\n当前内容可能存在未经审核的第三方商业营销信息请确认是否继续访问。\n\n微信扫一扫使用小程序 \n\n× 分析\n\nin赵巷\n\n关注 \n\n赞分享在看 写留言 \n\n**留言**\n\n暂无留言\n\n已无更多数据\n\n写留言:\n\n关闭\n\n**写留言**\n\n提交更多\n\n关闭\n\n**0个朋友**\n\n更多\n\n前往「发现 > 看一看」看更多朋友\n\n 。 视频 小程序 赞 ,轻点两下取消赞 在看 ,轻点两下取消在看 分享 留言 收藏\n\n**in赵巷**\n\n同心之声 乐启新章 丨赵巷镇统一战线迎新音乐会邀您:重温经典旋律,唤醒美好回忆 \n\n,\n\n关闭\n\n**选择留言身份**\n\n更多\n",
"text_link_map": {}
}

File diff suppressed because one or more lines are too long

View File

@ -1,92 +0,0 @@
{
"link_dict": {
"https://cryptopanic.comfilter=rising": "Rising",
"https://cryptopanic.com/news/media": "Media Media Media Feed Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/polls/new": "Polls",
"https://cryptopanic.com/portfolio": "Portfolio Portfolio Tracker Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/pro": "Get PRO Become PRO",
"https://cryptopanic.com/accounts/login/": "Sign In Login Log in",
"https://cryptopanic.com/accounts/signup/": "Sign Up Sign Up",
"https://cryptopanic.com/pro/": "Go PRO Go PRO",
"https://cryptopanic.com/developers/": "Develop Developers Developers",
"https://cryptopanic.com/developers/api/about": "API",
"https://cryptopanic.com/developers/bots/": "Bots",
"https://cryptopanic.com/developers/widgets/": "Widgets",
"https://cryptopanic.com/careers/": "Careers Careers",
"https://cryptopanic.com/guides": "Guides",
"https://cryptopanic.com/partnership-hub": "Bizz Hub",
"https://cryptopanic.com/submit-source": "Submit",
"https://cryptopanic.com/news": "Top News Show all",
"https://cryptopanic.com/news/all": "All News",
"https://cryptopanic.com/news/blogs": "Blogs Blogs Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/news-sites": "News Sites",
"https://cryptopanic.com/news/following": "Following",
"https://cryptopanic.com/news/price-analysis": "Price Analysis",
"https://cryptopanic.com/news/regulation": "Regulation",
"https://cryptopanic.com/news/ico-news": "ICO News",
"https://cryptopanic.com/news/events": "Events",
"https://cryptopanic.com/newsfilter=commented": "Commented Recent Comments Show more",
"https://cryptopanic.com/newsfilter=hot": "Hot",
"https://cryptopanic.com/newsfilter=rising": "Rising Trending Show more",
"https://cryptopanic.com/newsfilter=bullish": "Bullish",
"https://cryptopanic.com/newsfilter=bearish": "Bearish",
"https://cryptopanic.com/newsfilter=important": "Important",
"https://cryptopanic.com/newsfilter=lol": "LOL",
"https://cryptopanic.com/newsfilter=saved": "Top Saved",
"https://cryptopanic.com/news/about": "About",
"https://cryptopanic.com/news/20482034/ripples-rlusd-stablecoin-explodes-with-106-growth-in-volumes-details": "Ripple's RLUSD Stablecoin Explodes With 106% Growth in Volumes: Details u.today",
"https://cryptopanic.com/news/ripple/": "XRP",
"https://cryptopanic.com/news/ripple-usd/": "RLUSD",
"https://cryptopanic.com/news/20477745/the-united-states-has-regained-leadership-in-the-cryptocurrency-market-what-does-this-indicate": "The United States has Regained Leadership in the Cryptocurrency Market. What Does This Indicate? spaziocrypto.com",
"https://cryptopanic.com/news/20477696/will-sam-bankman-fried-get-a-presidential-pardon-from-biden": "Will Sam Bankman-Fried Get a Presidential Pardon from Biden? coinpaprika.com",
"https://cryptopanic.com/news/20477579/bitget-merges-tokens-as-bgb-hits-record-high-amid-market-downturn": "Bitget Merges Tokens as BGB Hits Record High Amid Market Downturn coinpaprika.com",
"https://cryptopanic.com/news/bitget-token/": "BGB Bitget Token Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/bitget-wallet-token/": "BWB",
"https://cryptopanic.com/news/20477541/vitalik-buterin-donates-88-eth-to-adopt-moo-deng": "Vitalik Buterin Donates 88 ETH to Adopt Moo Deng coinpaprika.com",
"https://cryptopanic.com/news/ethereum/": "ETH ETH",
"https://cryptopanic.com/news/bridged-wrapped-ether-starkgate/": "ETH",
"https://cryptopanic.com/news/moo-deng/": "MOODENG",
"https://cryptopanic.com/news/20476318/sec-may-shift-approach-to-crypto-under-new-leadership": "SEC May Shift Approach to Crypto Under New Leadership coinpaprika.com",
"https://cryptopanic.com/news/20471491/bitcoin-etfs-face-12b-outflows-ethereum-sees-130m-inflows": "Bitcoin ETFs Face $1.2B Outflows, Ethereum Sees $130M Inflows coinpaprika.com",
"https://cryptopanic.com/news/bitcoin/": "BTC",
"https://cryptopanic.com/polls": "Trending Poll Show more",
"https://cryptopanic.com/polls/20366587/will-bitcoin-pump-because-donald-trumps-presidential-inauguration": "Will bitcoin pump because Donald trump's presidential inauguration? ### 3w ago by Vote 268 votes",
"https://cryptopanic.com/47_m.naufal/": "m.naufal ### 3w ago by",
"https://cryptopanic.com/news/virtual-protocol/": "Virtuals Protocol Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/hedera-hashgraph/": "Hedera Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/solana/": "Solana Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/cardano/": "Cardano Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/sui/": "Sui Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/dogecoin/": "Dogecoin Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/mantra-dao/": "MANTRA Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/pepe/": "Pepe Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/near/": "NEAR Protocol Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/polkadot/": "Polkadot Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/leo-token/": "LEO Token Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/monero/": "Monero Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/bittensor/": "Bittensor Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/the-open-network/": "Toncoin Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/uniswap/": "Uniswap Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/dai/": "Dai Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/crypto-com-chain/": "Cronos Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/usd-coin/": "USDC Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/news/tether/": "Tether Coin | % 24h | % 1h | Price | Volume 24h | VIRTUAL | 5.35% | -1.33% | $3.59 | $472,728,350 \n---|---|---|---|--- \n HBAR | 5.16% | -0.39% | $0.288 | $764,501,368 \n SOL | 4.67% | -0.18% | $195.74 | $2,817,754,278 \n ADA | 3.46% | 0.33% | $0.900 | $600,788,037 \n SUI | 2.84% | -0.73% | $4.17 | $736,871,770 \n DOGE | 2.45% | -0.29% | $0.325 | $1,576,987,724 \n OM | 2.45% | -0.18% | $3.79 | $32,661,724 \n PEPE | 1.98% | -2.08% | $0.000 | $1,272,026,956 \n NEAR | 1.81% | -0.41% | $5.26 | $242,717,031 \n DOT | 1.78% | -0.59% | $7.00 | $219,423,524 \n BGB | -11.21% | -6.31% | $6.72 | $7,963,755 \n LEO | -2.57% | 0.15% | $9.05 | $830,479 \n XMR | -1.77% | -0.73% | $195.93 | $35,019,088 \n TAO | -0.70% | -1.35% | $461.09 | $80,023,037 \n TON | -0.64% | -0.77% | $5.74 | $164,208,788 \n UNI | -0.26% | -0.76% | $13.23 | $271,392,720 \n DAI | -0.04% | -0.08% | $1.000 | $120,874,342 \n CRO | -0.03% | -0.56% | $0.147 | $19,667,290 \n USDC | -0.03% | -0.03% | $1.000 | $3,814,410,360 \n USDT | -0.02% | -0.04% | $0.998 | $24,369,646,432 \n \n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes , and",
"https://cryptopanic.com/advertise/": "Advertise Advertise",
"https://cryptopanic.com/about/": "About About",
"https://cryptopanic.com/contact/": "Contact Contact",
"https://cryptopanic.com/terms/": "Terms Terms",
"https://cryptopanic.com/guides/": "Guides",
"https://cryptopanic.com/partnership-hub/": "Bizz Hub"
},
"text": "Region\n\n* News Feeds\n * English \n * Deutsch \n * Dutch \n * Español \n * Français \n * Italiano \n * Português \n * Русский \n * Türkçe \n * عربي \n * 中國人 \n * 日本 \n * 한국인\n\n* UI Language\n * English\n\nTop News\n\nCategory\n\nShow All\n\nPanic Score\n\nWhat is PanicScore?\n\nPanic Score highlights the most important news everyones talking about.\n\nHow does it work?\n\nIt analyzes millions of data points from various sources on the internet to measure engagement, including reading, sharing, and discussions. This information is compared within a specific time frame to calculate the Panic Score, highlighting market-moving news.\n\nWhat's so special about it?\n\nPanic Score simplifies your news consumption by providing a clear, easy-to-understand number that reflects how much attention a news story gets. The higher the Panic Score, the more people are talking about it. You instantly know whats trending and important. This way, you stay informed without the hassle of sifting through endless articles, ensuring you stay in the loop and ahead of the curve.\n\nGet PanicScore Now\n\nPanic Score\n\n**CryptoPanic** is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes Portfolio Tracker[Ref_1], Media Feed[Ref_2] and Blogs[Ref_3].\n\nShow Price alerts\n\nShow Following feed in Top News\n\nu.today\n\n4 3 2 2 4 2 2 1\n\nspaziocrypto.com\n\n8 4 1 5 4 3\n\ncoinpaprika.com\n\n9 8 6 4 6 5 4 1\n\ncoinpaprika.com\n\n6 6 1 6 4 1\n\ncoinpaprika.com\n\n4 2 1 4 3 1\n\ncoinpaprika.com\n\n8 6 1 7 5\n\ncoinpaprika.com\n\n11 9 2 11 6 1 1\n\n10min\n\ncrypto2011 Not to own 1 whole btc. “Irresponsible Not to Own Bitcoin,” Says Semler Scientific Chair\n\n10min\n\ncrypto2011 expert... Expert warns Bitcoin party is over, expect a crash to $18,000\n\n41min\n\nBitbite No longer astonishing. Possibly just 2 cycles away. Arthur Hayes Predicts Bitcoin Could Reach $1 Million Amid Global Money Printing Surge\n\n9h\n\nkunipferd Me neither. A lot of times when something is being told to sell in vast amounts i can't find anyone who actually bought it. Makes me always... $PENGU Airdrop: Sellers Exit, Holders Remain Bullish\n\n11h\n\ntjsop enjoy your last moments Will Ethereum Hit 10K? Examining ETHs Potential\n\n11h\n\ntcoast89 [url8] Will Ethereum Hit 10K? Examining ETHs Potential\n\n11h\n\ntjsop useless soon zero Will Ethereum Hit 10K? Examining ETHs Potential\n\n12h\n\nnestakasa This guyyyy... Ripple's RLUSD Stablecoin Explodes With 106% Growth in Volumes: Details\n\n15h\n\nm155 BTC back above 95k. Weak hands are out, time to buy everything. Let the idiots stay poor. Crypto Market Remains Greedy Despite Bitcoin Price Crash To $94,000, Is A Recovery Coming?\n\n17h\n\nuser234 \"Shrinked?\" XRP Open Interest Shrinked by $1 Billion in 24 Hours: Heres Why\n\nYes that will happen\n\nNo,that wont happen\n\nGainers & Losers (from top 50)\n\nShow Price alerts\n\nShow Following feed in Top News\n\n### Hints\n\n* Follow currencies to customize your feed.\n * Search or click on currency to view individual feeds.\n * Navigate through news using UP/DOWN or K/J keys. Press ENTER to open link.\n * You can use \"Add to Home Screen\" feature on your mobile app.\n * List is being reloaded automatically.\n * Filters explained: Top news = News Sites + Top Reddit & Twitter. Following = All news for the currencies you are following.\n * Mobile apps:\n\n### Support CryptoPanic\n\nIf you like this project and find it useful, consider supporting further development in one of the following ways:\n\n* Choose PRO Account[Ref_4] and unlock all the features. \n * Make a cryptocurrency donation[Ref_5].\n * Share and tell your friends about it:\n\n### Community\n\nJoin our Discord[Ref_6] or Telegram[Ref_7] communities to discuss or suggest new features, get to know about updates and be first who sees newest features or chat about cryptocurrency space or learn more about trading.\n\n© CryptoPanic.com\n\n* Region\n\n* News Feeds\n * English \n * Deutsch \n * Dutch \n * Español \n * Français \n * Italiano \n * Português \n * Русский \n * Türkçe \n * عربي \n * 中國人 \n * 日本 \n * 한국인 \n * UI Language\n * English\n\n0",
"text_link_map": {
"Ref_1": "https://cryptopanic.com/portfolio",
"Ref_2": "https://cryptopanic.com/news/media",
"Ref_3": "https://cryptopanic.com/news/blogs",
"Ref_4": "https://cryptopanic.com/pro/",
"Ref_5": "https://cryptopanic.com/donate/",
"Ref_6": "https://cryptopanic.com/discord/",
"Ref_7": "https://t.me/cryptopaniccom",
"url8": "https://media.giphy.com/media/UmGSoxNyOtE3wudNGF/giphy.gif"
}
}

File diff suppressed because one or more lines are too long

View File

@ -1,5 +0,0 @@
{
"link_dict": {},
"text": "16\n\n实况\n\n实况\n\n实况\n\n实况\n\n实况\n\n实况\n\n16\n\n1. 1\n 2. 2\n 3. 3\n 4. 4\n 5. 5\n 6. 6\n\n上海发布\n\n# 【名镇】如果可以,在濮院镇见一面吧!\n\n濮院镇位于浙江省嘉兴市桐乡市东部曾因“日出万匹绸”而成为“嘉禾一巨镇”是明清时期江南五大名镇之一。 沿着庙桥河等小河蜿蜒而上,映入眼帘的便是九座与流水交织的精致古石桥。说起濮院古石桥,最先要说的必定是“栖凤桥”,古时山东人濮凤将先进的养蚕和缫丝技术带到这里,带动了四邻八乡养蚕、缫丝,借助运河将绸缎运往全国各地,“濮绸”自此闻名遐迩。濮凤在此定居后,建造了一座石梁桥——栖凤桥,“栖凤”其实饱含深意,当时的濮院镇有大片梧桐林,凤凰栖息在梧桐树上,这正暗合了濮凤的心意——意思是凤凰在这里栖息,他也在这里定居了。如今,栖凤桥依然坚固耐用,承载着历史的厚重,见证着时代的变迁。而濮院有故事的桥,并不止这一座,就等你亲临这里,慢慢探索吧~ 走过承载历史的古桥,不妨到焕发新颜的濮院时尚古镇走走逛逛吧~ 通过对历史建筑的保护性修复和有机更新这里再现北更楼、岳家大院、福善寺等极具濮院历史特色的建筑保留了江南建筑格局和特色进一步唤醒古镇美景。除了重现街巷风貌古镇还深入挖掘“濮商文化”还原了濮商会馆以及陈记米行、定泉桥茶楼等老业态商铺虽然现在做生意方式和以前大不相同但传承下来的那份匠心和精神依然存在。在传承历史的同时古镇也注入了现代时尚元素以“中国时尚古镇”为总体定位打造濮院时装周、濮院国风大典等“古镇秀场”IP吸引游客一览濮院风貌。 穿过历史和现代,来红旗漾村舒展身心吧!这里的“杉林部落”齐刷刷地换上了红装。都说秋冬季节,是大自然打翻的调色盘,红旗漾村的红杉林势必是最浓烈的那幅油画,酝酿了一整年的盛情化为一排排、一棵棵高耸入云的红杉,交织层叠出一片红橙黄绿的斑斓色彩。这两年,“杉林部落”附近增设了景观喷泉、景观浮岛,将田园打造成农户家门口的“口袋公园”,成了观光休闲的好去处。当你漫步其中,任由层林尽染的杉林映入眼帘,再多的愁绪和浮躁也都能消解一空。既有历史痕迹的精心雕琢,也有现代气息的时尚装扮,还有江南水乡的唯美雅致,这般韵味的濮院,怎能不令人心向往之? 资料:嘉兴市政府门户网站、嘉兴发布、桐乡市政府门户网站、桐乡发布、中国丝绸博物馆编辑:耿浩\n\n关闭\n\n更多\n\n名称已清空\n\n**微信扫一扫赞赏作者**\n\n文章\n\n暂无文章\n\n喜欢作者\n\n其它金额\n\n¥\n\n最低赞赏 ¥0\n\n确定\n\n返回\n\n**其它金额**\n\n更多\n\n赞赏金额\n\n¥\n\n最低赞赏 ¥0\n\n1\n\n2\n\n3\n\n4\n\n5\n\n6\n\n7\n\n8\n\n9\n\n0\n\n.\n\n,\n\n2024年12月28日 14:29 , , 上海\n\n暂无留言\n\n已无更多数据\n\n写留言:\n\n关闭\n\n**写留言**\n\n提交更多\n\n上海发布\n\n关注\n\n赞分享在看 写留言\n\n**留言**\n\n暂无留言\n\n已无更多数据\n\n写留言:\n\n关闭\n\n**写留言**\n\n提交更多\n\n关闭\n\n**0个朋友**\n\n更多\n\n前往「发现 > 看一看」看更多朋友\n\n轻触阅读原文\n\n上海发布\n\n向上滑动看下一个\n\n微信扫一扫使用小程序\n\n× 分析\n\n 。 视频 小程序 赞 ,轻点两下取消赞 在看 ,轻点两下取消在看 分享 留言 收藏\n\n,\n\n关闭\n\n**选择留言身份**\n\n更多\n\n**上海发布**\n\n【名镇】如果可以在濮院镇见一面吧",
"text_link_map": {}
}

View File

@ -125,3 +125,28 @@ infos(not formated):
2024-12-04 11:48:22 16. 未来两天天气平稳4-6日两股冷空气到访[url72] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938af540583a14.shtml
************
llm model: Qwen/Qwen2.5-7B-Instruct
hallucination times: 2
total results: 17
total analysis time: 10.884798049926758
author and publish time(not formated): {'source': '广东省气象局', 'publish_date': '2024-12-22'}
infos(not formated):
2024-12-11 14:42:01 10. 前方冷空气们在排队了,这次“冻”真格![url66] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aef0633d3ab4.shtml
2024-12-04 11:48:22 16. 未来两天天气平稳4-6日两股冷空气到访[url72] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938af540583a14.shtml
2024-12-16 12:41:10 5. 冻感十足的广东,未来几天部分地区最低气温跌破零度[url61] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c88781563b7c.shtml
冬至又有冷空气入粤[url57] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193dd4610be3c10.shtml
2024-12-12 11:34:08 9. 冷空气今日到达广东 未来几天气温逐日下降[url65] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b473fce73adb.shtml
2024-12-14 11:55:15 7. 冷空气持续补充 广东今明气温继续下降[url63] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193bec2d8183b24.shtml
冷空气频繁 广东干冷天气持续[url58] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d825534f3be1.shtml
2024-12-09 14:48:38 12. 7-9日广东大部晴到多云早晚寒凉[url68] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939f2fccbc3a6b.shtml
2024-12-13 14:44:21 8. 冷空气持续补充影响,广东气温逐日小幅下降[url64] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b8ee572f3af6.shtml
2024-12-17 12:46:13 4. 广东维持干燥 早晚寒冷[url60] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193cdc5262a3ba4.shtml
2024-12-07 11:35:30 13. 周末广东气温继续下降[url69] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939a607a933a59.shtml
2024-12-06 13:10:35 14. 7-8日中等强度冷空气影响广东[url70] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939596d4903a41.shtml
12-15日广东大部天晴 早晚寒凉[url96] https://www.gd121.cn/zx/zhxx/ff808081706d374701716c94668c062a.shtml
冷空气持续补充,广东晴燥天气持续[url59] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d2f022fb3bbb.shtml
2024-12-15 12:15:44 6. 冷空气持续补充影响,我省维持干燥天气早晚寒冷[url62] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c33926013b52.shtml
2024-12-10 13:00:10 11. 新一股冷空气11日起影响广东[url67] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aa2d54233aa0.shtml
2024-12-05 14:51:50 15. 本周末中等强度冷空气入粤[url71] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938fc87eee3a2a.shtml
************

View File

@ -0,0 +1,89 @@
{
"link_dict": {
"https://www.gd121.cn/index.shtml": "首页 * \n * \n * ;)",
"https://www.gd121.cn/yj/index.shtml": "预警 * \n * \n * ;) 预警信息",
"https://www.gd121.cn/tq/jdtq_list.shtml": "旅游天气",
"https://www.gd121.cn/tq/jccz/list.shtml": "机场&车站",
"https://www.gd121.cn/hd/index.shtml": "预约天气",
"https://www.gd121.cn/hd/yhfk/list.shtml": "用户反馈",
"https://www.gd121.cn/hd/sjsc/list.shtml": "实景上传",
"https://passport.gd121.cn/ucy_center/index": "用户中心",
"https://www.gd121.cn/fw/yjkhd/8a14d310645ec72401645ecbea730edb.shtml": "[详情] 停课铃客户端 停课铃客户端 台风停不停课,还要等老师给你打电话?不用了,“停课铃”就有官方消息!!“停 停课铃APP",
"https://www.gd121.cn/fw/dx/8a14d310645ec72401645ed02f5a1a1f.shtml": "气象短信服务介绍",
"https://www.gd121.cn/fw/dx/list.shtml": "天气短信",
"https://www.gd121.cn/fw/dx/8a14d310645ec72401645ed0305c1a21.shtml": "家乡天气短信",
"https://www.gd121.cn/fw/dx/8a14d310645ec72401645ed033821a27.shtml": "周天气短信",
"https://www.gd121.cn/fw/dx/8a14d310645ec72401645ed034891a29.shtml": "田园气象站天气短信",
"https://www.gd121.cn/fw/dx/8a14d310645ec72401645ed02e7b1a1d.shtml": "海洋天气短信",
"https://www.gd121.cn/fw/dx/8a14d310645ec72401645ed0327f1a25.shtml": "上下班天气短信",
"https://www.gd121.cn/fw/wx/ff8080816f16da59016f176859fa0019.shtml": "缤纷微天气",
"https://www.gd121.cn/fw/wttq/list.shtml": "微谈天气",
"https://www.gd121.cn/kp/fangyu.html": "广东省气象灾害防御法规",
"https://www.gd121.cn/fw/wttq/ff8080818a06a656019139b5d7d12c21.shtml": "高温要熄火?南方大城市高温打卡日历来了 看你那儿酷热何时迎转机",
"https://www.gd121.cn/fw/wttq/ff8080818a06a656019139b17e9c2c1d.shtml": "邂逅中式浪漫!全国七夕天气地图出炉 看哪里天公作美宜赏星河",
"https://www.gd121.cn/fw/wttq/ff8080818a06a656019134855c4d2c03.shtml": "热浪来袭,如何安然度夏",
"https://www.gd121.cn/fw/wttq/ff8080818a06a65601913482cf1b2bfe.shtml": "科普看台|安全不“放假” 暑期出游避险指南",
"https://www.gd121.cn/fw/qxys/qxyslist.shtml": "气象影视",
"https://www.gd121.cn/video/index.shtmln=ws20241228": "广东卫视天气预报",
"https://www.gd121.cn/video/index.shtmln=ws20241227": "广东卫视天气预报",
"https://www.gd121.cn/video/index.shtmln=ws20241226": "广东卫视天气预报",
"https://www.gd121.cn/video/index.shtmln=ws20241225": "广东卫视天气预报",
"https://www.gd121.cn/video/index.shtmln=ws20241224": "广东卫视天气预报",
"https://www.gd121.cn/video/index.shtmln=ws20241223": "广东卫视天气预报",
"https://www.gd121.cn/video/index.shtmln=ws20241222": "广东卫视天气预报",
"https://www.gd121.cn/video/index.shtmln=ws20241221": "广东卫视天气预报",
"https://www.gd121.cn/fw/xsp/list.shtml": "显示屏",
"https://weibo.com/910620121topnav=1&wvr=6&topsug=1": "省微博",
"https://www.gd121.cn/fw/yjqxdh/list.shtml": "应急气象电话 应急气象电话",
"https://www.gd121.cn/fw/yjqxdh/8a14d310645ec72401645ecbde240eb7.shtml": "“报平安”功能使用步骤 [详情] “报平安”功能使用步骤 “报平安”功能使用步骤 [详情] “报平安”功能使用步骤",
"https://www.gd121.cn/fw/yjqxdh/8a14d310645ec72401645ecbdff00ebd.shtml": "“报平安”留言功能操作说明 “报平安”留言功能操作说明",
"https://www.gd121.cn/fw/yjqxdh/8a14d310645ec72401645ecbdf520ebb.shtml": "“报平安”留言功能介绍 “报平安”留言功能介绍",
"https://www.gd121.cn/fw/yjqxdh/8a14d310645ec72401645ecbdeba0eb9.shtml": "应急气象电话简介 应急气象电话简介",
"https://www.gd121.cn/fw/yjkhd/list.shtml": "应急客户端",
"https://www.gd121.cn/kp/rdzt/list.shtml": "热点专题",
"https://tqkp.gd121.cn/pc/index.php/index/index": "2022年5.12全国防灾减灾日2022-05-12\n全国防灾减灾日\n减轻灾害风险守护美好家园\n气象防灾科普·视频·图文",
"http://gd.weather.com.cn/zt/cbzt/3164789.shtml": "中国天然氧吧(龙门、揭西、连山、新兴)中国 广东 自然氧吧\n龙门/连山/揭西/新兴",
"https://www.gd121.cn/fw/zyfw/list.shtml": "专业服务",
"https://www.gd121.cn/fw/zyfw/8a14d310645ec72401645ecbe8050ed7.shtml": "气候可行性论证业务 [详情] 气候可行性论证业务 根据《中华人民共和国气象法》等有关法律、法规的规定",
"https://www.gd121.cn/fw/zyfw/ff8080816e163941016e44adce5c018e.shtml": "气象短信服务介绍",
"https://www.gd121.cn/fw/zyfw/8a14d310645ec72401645ecbe4820ecb.shtml": "气候预测与应用",
"https://www.gd121.cn/fw/zyfw/8a14d310645ec72401645ecbe6340ed1.shtml": "防雷设计施工图纸技术审查、防雷装置检测",
"https://www.gd121.cn/fw/zyfw/8a14d310645ec72401645ecbe5ac0ecf.shtml": "雷电灾害调查鉴定",
"http://weibo.com/gztqtopnav=1&wvr=6&topsug=1": "广州天气",
"http://weibo.com/u/2294193132topnav=1&wvr=6&topsug=1": "广州天气",
"http://weibo.com/dgweathertopnav=1&wvr=6&topsug=1": "东莞天气",
"http://weibo.com/u/2294123212topnav=1&wvr=6&topsug=1": "江门天气",
"http://weibo.com/u/1871802012topnav=1&wvr=6&topsug=1": "深圳天气",
"http://weibo.com/u/2132837731topnav=1&wvr=6&topsug=1": "云浮天气",
"http://weibo.com/u/2138854722topnav=1&wvr=6&topsug=1": "揭阳天气",
"http://weibo.com/u/2203884274topnav=1&wvr=6&topsug=1": "潮州天气",
"http://weibo.com/u/1950449202topnav=1&wvr=6&topsug=1": "清远天气",
"http://weibo.com/u/2204732440topnav=1&wvr=6&topsug=1": "梅州天气",
"http://weibo.com/u/2189531372topnav=1&wvr=6&topsug=1": "肇庆天气",
"http://weibo.com/u/2118035822topnav=1&wvr=6&topsug=1": "湛江天气",
"http://weibo.com/u/2109335980topnav=1&wvr=6&topsug=1": "茂名天气",
"http://weibo.com/u/2127837823topnav=1&wvr=6&topsug=1": "阳江天气",
"http://weibo.com/u/2097116807topnav=1&wvr=6&topsug=1": "佛山天气",
"http://weibo.com/u/1980708047topnav=1&wvr=6&topsug=1": "中山天气",
"http://weibo.com/u/2163977800topnav=1&wvr=6&topsug=1": "汕尾天气",
"http://weibo.com/u/2288166234topnav=1&wvr=6&topsug=1": "惠州天气",
"http://weibo.com/u/2296404962topnav=1&wvr=6&topsug=1": "河源天气",
"http://weibo.com/u/2196955610topnav=1&wvr=6&topsug=1": "珠海天气",
"http://weibo.com/u/1993619844topnav=1&wvr=6&topsug=1": "韶关天气",
"http://weibo.com/u/2296975054topnav=1&wvr=6&topsug=1": "汕头天气",
"https://www.gd121.cn/share/pluginwea.do": "天气插件",
"https://www.gd121.cn/share/interface.doid=1": "数据接口",
"https://www.gd121.cn/fw/index.shtml": "公众服务 服务渠道",
"https://www.gd121.cn/kp/yjkp/list.shtml": "应急科普",
"https://www.gd121.cn/kp/zcfg/list.shtml": "政策法规",
"https://www.gd121.cn/share/": "数据共享",
"http://bszs.conac.cn/sitenamemethod=show&id=5a4b4aa9c22f62bee053022e1aacade4": "事业单位",
"https://www.gbaweather.net/tc/": "粤港澳大湾区天气网站 友情链接",
"http://www.beian.gov.cn/portal/registersysteminforecordcode=44010402001842": "粤公网安备 44010402001842号 ©广东省气象公共服务中心版权所有 | 技术支持数鹏通LinkCM科技"
},
"text": "今天是2024年12月28日 登录/注册\n\n 电子显示屏[Ref_1] 气象信息显示终端,以视频、声音、图片、文字等多媒体技术向公众发布气象预警、预报、实况等相关信息,为定...\n\n气象微博\n\n1. 1\n 2. 2\n\n广东气象微博群\n\n形式多样强大的自定义功能为您的网站量身定做个性化预警插件。\n\n我们会为您们提供最权威、最真实、最及时、最全面的数据服务与共享。\n\n广东省气象局官方客户端提供全省停课信号、天气预警、天气查询等服务。\n\n微信小程序提供基于位置的天气预报、预警服务。\n\n联系电话020-87664716地址广东省广州市天河区东莞庄路312号",
"text_link_map": {
"Ref_1": "https://www.gd121.cn/fw/xsp/8a14d310645ec72401645ed02adc1a0f.shtml",
"Ref_2": "https://www.gd121.cn/site3/images/fw/xsp/2015/05/28/7df410ca49aefb9b561ecfbbff21ce87.jpg"
}
}

View File

@ -0,0 +1,50 @@
{
"link_dict": {
"https://www.gd121.cn/index.shtml": "首页 * \n * \n * ;)",
"https://www.gd121.cn/yj/index.shtml": "预警 * \n * \n * ;) 预警信息",
"https://www.gd121.cn/tq/jdtq_list.shtml": "旅游天气",
"https://www.gd121.cn/tq/jccz/list.shtml": "机场&车站",
"https://www.gd121.cn/tq/gqtj/index.shtml": "高清图集",
"https://www.gd121.cn/hd/yhfk/list.shtml": "用户反馈",
"https://www.gd121.cn/hd/sjsc/index.shtml": "实景上传",
"http://passport.gd121.cn/ucy_center/index": "用户中心",
"https://www.gd121.cn/zx/zhxx/list.shtml": "综合消息 资讯",
"https://www.gd121.cn/zx/zhxx/ff8080817a75a9a2017abcdfd97f01bd.shtml": "号台风“查帕卡”已生成 广东沿海有风雨 <<上一篇",
"https://www.gd121.cn/zx/zhxx/ff808081706d374701716c94668c062a.shtml": "日广东大部天晴 早晚寒凉 下一篇",
"https://www.gd121.cn/zx/yjxy/list.shtml": "更多>> 应急响应",
"https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edada382a17.shtml": "广东省气象局结束气象灾害(暴雨)Ⅳ级应急响应 [详情] 广东省气象局结束气象灾害(暴雨)Ⅳ级应急响应 6月12日到14日珠江三角洲市县、粤西大部分市县出现了暴雨到大暴雨局部特大暴雨。预计15日",
"https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edadbb42a19.shtml": "广东省气象局启动气象灾害(暴雨)Ⅳ级... 广东省气象局启动气象灾害(暴雨)Ⅳ级应急响应",
"https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edadd2e2a1b.shtml": "广东省气象局结束气象灾害(暴雨)Ⅱ级... 广东省气象局结束气象灾害(暴雨)Ⅱ级应急响应",
"https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edade922a1d.shtml": "广东省气象局结束气象灾害(台风)Ⅲ级... 广东省气象局结束气象灾害(台风)Ⅲ级应急响应",
"https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edadfff2a1f.shtml": "广东省气象局启动气象灾害(暴雨)Ⅱ级... 广东省气象局启动气象灾害(暴雨)Ⅱ级应急响应",
"https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edae2d42a23.shtml": "广东省气象局升级气象灾害(台风)应急... 广东省气象局升级气象灾害(台风)应急响应为Ⅲ级",
"https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edae16f2a21.shtml": "广东省气象局启动气象灾害(台风)Ⅳ级... 广东省气象局启动气象灾害(台风)Ⅳ级应急响应",
"https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edae4362a25.shtml": "广东省气象局结束气象灾害(寒冷)Ⅲ级... 广东省气象局结束气象灾害(寒冷)Ⅲ级应急响应",
"https://www.gd121.cn/kp/rdzt/list.shtml": "更多>> 热点专题",
"https://tqkp.gd121.cn/pc/index.php/index/index": "2022年5.12全国防灾减灾日2022-05-12\n全国防灾 减灾日\n减灾害风险守护美好家园\n气象防灾科普•视频•图文",
"http://gd.weather.com.cn/zt/cbzt/3164789.shtml": "中国天然氧吧(龙门、揭西、连山、新兴)中国\n\n广东\n\n天然氧吧\n\n龙门/\n连山/\n揭西/\n新兴",
"https://www.gd121.cn/kp/yjkp/list.shtml": "更多>> 应急科普 应急科普",
"https://www.gd121.cn/kp/yjkp/yjcs/zrzhsjcs/8a14d310645ec72401645ec9bdb20626.shtml": "都市中遇到洪水怎么办 都市中遇到洪水怎么办",
"https://www.gd121.cn/kp/yjkp/yjcs/zrzhsjcs/list.shtml": "自然灾害",
"https://www.gd121.cn/kp/yjkp/yjcs/ggwssjcs/8a14d310645ec72401645ec9c64f065c.shtml": "中国疾控中心提示春节期间应做好传染病防御NA 中国疾控中心提示:春节期间应做好传染病防御",
"https://www.gd121.cn/kp/yjkp/yjcs/ggwssjcs/list.shtml": "公共卫生",
"https://www.gd121.cn/kp/yjkp/yjcs/shaqsjcs/8a14d310645ec72401645ec9c994066e.shtml": "购买、使用消防产品不容马虎NA 购买、使用消防产品不容马虎",
"https://www.gd121.cn/kp/yjkp/yjcs/shaqsjcs/list.shtml": "社会安全",
"https://www.gd121.cn/kp/yjkp/yjxh/list.shtml": "预警信号",
"https://www.gd121.cn/kp/yjkp/yjxh/8a14d310645ec72401645ec9c9f70670.shtml": "森林火险预警信号",
"https://www.gd121.cn/share/pluginwea.do": "天气插件",
"https://www.gd121.cn/share/interface.doid=1": "数据接口",
"https://www.gd121.cn/fw/yjkhd/8a14d310645ec72401645ecbea730edb.shtml": "停课铃APP",
"https://www.gd121.cn/fw/wx/ff8080816f16da59016f176859fa0019.shtml": "缤纷微天气",
"https://www.gd121.cn/fw/index.shtml": "公众服务 服务渠道",
"https://www.gd121.cn/kp/zcfg/list.shtml": "政策法规",
"https://www.gd121.cn/share/": "数据共享",
"http://bszs.conac.cn/sitenamemethod=show&id=5a4b4aa9c22f62bee053022e1aacade4": "事业单位",
"https://www.gbaweather.net/tc/": "粤港澳大湾区天气网站 友情链接"
},
"text": "今天是2024年12月28日 登录/注册\n\n18-20日广东多云有雾 21-24日阴雨寒凉\n\n广东省GD121 | 2020-04-18\n\n17日白天到18日早晨广东西部市县多云间阴天局部有小雨东部市县晴天到多云部分市县早晚出现了轻雾。\n\n预计18-20日广东多云为主其中清远、韶关、肇庆大部市县有阵雨局部大雨全省温湿维持在较高水平早晚有能见度偏低。21-24日我省持续受冷空气影响日平均气温将逐步下降46℃全省转阴雨寒凉天气其中22-24日粤西、粤北和珠江三角洲大部市县有中到大雨部分市县暴雨降水雷雨时局地伴有8级左右短时大风。\n\n具体预报如下\n\n18-19日清远、韶关、肇庆有阵雨局部大雨和7级左右雷雨大风其余市县多云间阴天局部有阵雨。早晨最低气温粤西大部市县2124℃其余市县17℃21℃。\n\n20-21日粤北大部有中雨局部大雨到暴雨雷雨时局地伴有8级左右短时大风其余市县多云到阴天局部有阵雨。21日粤北市县气温小幅下降。\n\n22-24日粤西、粤北和珠江三角洲大部市县有中到大雨部分市县暴雨降水雷雨时局地伴有8级左右短时大风其余市县有阵雨局部大雨。全省气温明显下降。\n\n气象专家提醒早晚有雾时能见度较低请注意交通安全。\n\n文章关键字:\n\n用户评论\n\n匿名发表评论\n\n最新评论\n\n暂无评论快来评论吧\n\n查看更多评论>>\n\n广东省气象局结束气象灾害暴雨...\n\n1. 1\n 2. 2\n\n形式多样强大的自定义功能为您的网站量身定做个性化预警插件。\n\n我们会为您们提供最权威、最真实、最及时、最全面的数据服务与共享。\n\n广东省气象局官方客户端提供全省停课信号、天气预警、天气查询等服务。\n\n微信小程序提供基于位置的天气预报、预警服务。\n\n联系电话020-87664716地址广东省广州市天河区东莞庄路312号\n\n 粤ICP备05011356号[Ref_1] 粤公网安备 44010402001842号[Ref_2] ©广东省气象公共服务中心版权所有 | 技术支持数鹏通LinkCM科技",
"text_link_map": {
"Ref_1": "http://beian.miit.gov.cn",
"Ref_2": "http://www.beian.gov.cn/portal/registersysteminforecordcode=44010402001842"
}
}

View File

@ -0,0 +1 @@
[{"focuspoint": "广州市历年12月下旬天气情况", "explanation": ""}]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,59 @@
{
"link_dict": {
"https://news.bjx.com.cn/spdfl/": "输配电",
"https://news.bjx.com.cn/dlrjst/": "电力软件",
"https://news.bjx.com.cn/tgj/": "碳管家",
"https://news.bjx.com.cn/zhnyfw/": "综合能源服务",
"https://m.bjx.com.cn/xnjt/": "氢能交通",
"https://m.bjx.com.cn/jqz/": "加氢站",
"https://pubapinews.bjx.com.cn/kehuclickid=18438": "讲师招募!寻找光伏、风电、储能、环保行业讲师",
"https://news.bjx.com.cn/topics/jiaqingzhan/": "加氢站",
"https://m.bjx.com.cn/mnews/20241226/1419426.shtml": "内蒙古伊金霍洛旗这些加氢站项目建设快速推进蒙西正和集团前天",
"https://m.bjx.com.cn/mnews/20241225/1419055.shtml": "美锦能源子公司飞驰科技与佛山市在氢能产业方面保持紧密合作北极星氢能网12月25日",
"https://m.bjx.com.cn/mnews/20241225/1419013.shtml": "中国华电采购一座撬装加氢站中国华电集团12月25日",
"https://m.bjx.com.cn/mnews/20241224/1418915.shtml": "突发韩国忠州氢能公交车爆炸北极星氢能网12月24日",
"https://m.bjx.com.cn/mnews/20241224/1418735.shtml": "内蒙古包头白云鄂博矿铁矿区加氢站项目正式启动申能能创12月24日",
"https://m.bjx.com.cn/mnews/20241223/1418350.shtml": "天津到2027年规划加氢站35座天津市城市管理委员会12月23日",
"https://m.bjx.com.cn/mnews/20241218/1417657.shtml": "内蒙古鄂尔多斯电解水制氢项目可不进化工园区鄂尔多斯人大12月18日",
"https://m.bjx.com.cn/mnews/20241218/1417439.shtml": "北京支持氢能产业发展加氢站给予10元/公斤氢气运营补贴北京市经济和信息化局12月18日 北京支持氢能产业发展加氢站给予10元/公斤氢气运营补贴北京市经济和信息化局12月18日",
"https://m.bjx.com.cn/mnews/20241216/1416942.shtml": "加氢站运营补贴150万元/年浙江临海市氢能产业发展扶持政策征意见临海市人民政府12月16日",
"https://m.bjx.com.cn/mnews/20241212/1416532.shtml": "共98.23万元大连公示2023年加氢站补贴名单及资金分配方案大连市发展和改革委员会12月12日",
"https://m.bjx.com.cn/mnews/20241225/1419089.shtml": "大冶特钢已建成氢能加热炉北极星氢能网12月25日",
"https://m.bjx.com.cn/mnews/20241225/1419020.shtml": "美国能源部公布最新氢能计划北极星氢能网12月25日",
"https://m.bjx.com.cn/mnews/20241224/1418861.shtml": "套氢能装备2024年苏锡常首台重大装备名单公示苏州市工业和信息化局12月24日",
"https://m.bjx.com.cn/mnews/20241223/1418491.shtml": "万标方/小时PSA氢气提纯装置工程EPC总承包一标段招标中国招标投标公共服务平台12月23日",
"https://m.bjx.com.cn/mnews/20241220/1418153.shtml": "燕山石化成为华北最大燃料电池氢供应基地中国石化12月20日",
"https://m.bjx.com.cn/mnews/20241218/1417689.shtml": "韩国最大蓝氢项目遭抵制铂道12月18日",
"https://m.bjx.com.cn/mnews/20241218/1417568.shtml": "世界最大输量绿氢管道年底前完成勘察设计计划2026年底建成投运曹妃甸发布12月18日",
"https://m.bjx.com.cn/mnews/20241216/1417085.shtml": "中集安瑞科与香港中华煤气签约 共同推动香港氢能发展中集安瑞科12月16日",
"https://m.bjx.com.cn/mnews/20241213/1416717.shtml": "超180吨中原油田完成年度绿氢生产目标中石化中原油田12月13日",
"https://m.bjx.com.cn/mnews/20241227/1419674.shtml": "羚牛氢能与泰达控股签订战略合作协议 共建“天津氢港”!羚牛氢能昨天",
"https://m.bjx.com.cn/mnews/20241227/1419671.shtml": "中国石化资本投资入股徐工汽车!中国石化昨天 中国石化资本投资入股徐工汽车!",
"https://m.bjx.com.cn/mnews/20241227/1419616.shtml": "辆氢能重卡三期采购项目中标候选人公示!中国招标投标公共服务平台昨天",
"https://m.bjx.com.cn/mnews/20241227/1419610.shtml": "中石化海水电解制氢中试装置招标!中国招标投标公共服务平台昨天",
"https://m.bjx.com.cn/mnews/20241227/1419541.shtml": "中能建氢能公司改革新步伐收录国资委《千帆竞渡》!能建氢能昨天",
"https://m.bjx.com.cn/mnews/20241227/1419527.shtml": "中国能建华北院中标鄂尔多斯市绿氢与煤化工耦合碳减排创新示范项目!中国能建昨天",
"https://m.bjx.com.cn/mnews/20241227/1419508.shtml": "又一力作中国船舶712所200千瓦级船用氢燃料电池系统交付!中国船舶712所昨天 又一力作中国船舶712所200千瓦级船用氢燃料电池系统交付",
"https://m.bjx.com.cn/mnews/20241226/1419475.shtml": "氢燃料电池商用车整车项目签约落户西安!北极星氢能网前天",
"https://m.bjx.com.cn/mnews/20241226/1419473.shtml": "内蒙古达茂旗政府与国富氢能签约!北极星氢能网前天",
"https://m.bjx.com.cn/mnews/20241226/1419471.shtml": "辆氢能源环卫作业车辆租赁项目中标结果公示!中国政府采购网前天",
"https://m.bjx.com.cn/mnews/20241226/1419453.shtml": "阳光氢能开启电解槽“数智”蝶变阳光氢能科技前天",
"https://m.bjx.com.cn/mnews/20241227/1419591.shtml": "华电取得首个绿氨掺烧项目!",
"https://m.bjx.com.cn/mnews/20241227/1419599.shtml": "全球最大体量绿色氢氨醇一体化建设项目2.87亿贷款落地!",
"https://m.bjx.com.cn/mnews/20241227/1419727.shtml": "绿色燃料,未来已来!",
"https://dljob.bjx.com.cn/specials/101817.html": "新一线城市25届校招专场",
"https://dljob.bjx.com.cn/specials/101814.html": "研后大型专场招聘会",
"https://hr.bjx.com.cn/companys/9376.html": "中广核新能源投资(深圳)有限公司北京分公司",
"https://hr.bjx.com.cn/companys/61186.html": "中国能源建设集团科技发展有限公司",
"https://hr.bjx.com.cn/companys/60585.html": "广州发展新能源集团股份有限公司",
"https://hr.bjx.com.cn/companys/1504.html": "北极星招聘猎头",
"https://hr.bjx.com.cn/companys/39374.html": "广东省电力开发有限公司",
"https://edu.bjx.com.cn/s/67109308.html": "集中式光伏项目全流程支持性文件概述",
"https://edu.bjx.com.cn/s/67109294.html": "储能电站安全运维管理方案",
"https://edu.bjx.com.cn/s/67109353.html": "锂离子电池储能中的安全问题及应对技术(限时免费)",
"https://edu.bjx.com.cn/s/67109396.html": "光伏电站股权收购的流程和风险分析",
"https://edu.bjx.com.cn/s/67109299.html": "《零碳生态&绿色未来》系列公益公开课"
},
"text": "## 北极星氢能网获悉,近日,融通汽车集团能源事业部在其首个制氢加氢站项目建设工作中取得重大突破。该项目采用领先技术,极大降低了操作风险与设备维护难度,具有高效、环保、氢气纯度高的优势,可有效提升制氢效率与质量。同时,加氢环节运用智能精确计量与控制系统,能根据不同车辆需求精准加氢,保障\n\n##### 行业选择\n\n# 25元/公斤!湖北武汉这一加氢站即将正式投运\n\n2024-12-26 16:07 来源:融通汽车\n\n北极星氢能网获悉近日融通汽车集团能源事业部在其首个制氢加氢站项目建设工作中取得重大突破。该项目采用领先技术极大降低了操作风险与设备维护难度具有高效、环保、氢气纯度高的优势可有效提升制氢效率与质量。同时加氢环节运用智能精确计量与控制系统能根据不同车辆需求精准加氢保障了加氢过程的安全与高效运营大力推动氢能源于交通运输领域的广泛应用助力节能减排。\n\n在加氢站投入运营后将提供极具竞争力的加氢价格仅为25元/公斤这意味着武汉市正式进入25元氢气时代从而有力地促进氢能源车辆的销售与普及推动氢能源在交通领域的广泛应用为节能环保事业作出突出贡献。\n\n目前制氢装置和加氢设施的基础施工已经基本完成项目区域布置有先进的钻探设备和临时指挥设施施工现场秩序井然勘探工作高效展开。在过去几周内施工团队克服了复杂的地质条件及其他不确定因素完成了多轮地质勘探与评估为加氢站的地基建设和设备安装提供了科学依据。\n\n据悉该项目即将正式投入运营届时将助力加速湖北省氢能源网络布局为氢能源行业的规模化应用打下坚实基础。未来融通湖北能源科技有限责任公司将继续深化绿色能源技术研发与应用打造更多优质项目为双碳目标实现贡献。\n\n特别声明北极星转载其他网站内容出于传递更多信息而非盈利之目的同时并不代表赞成其观点或证实其描述内容仅供参考。版权归原作者所有若有侵权请联系我们删除。凡来源注明北极星*网的内容为北极星原创,转载需获授权。\n\n展开全文\n\n打开北极星学社APP阅读体验更佳\n\n0\n\n收藏\n\n#### 打开北极星学社APP查看更多相关报道\n\n* 加氢站\n * 氢气\n * 氢能\n\n####\n\n今日\n 本周\n 本月\n新闻排行榜\n\n打开北极星学社APP阅读体验更佳\n\n#### 打开北极星学社APP查看更多招聘\n\n绩效奖金带薪年假定期体检\n\n#### 打开北极星学社APP查看更多学社\n\n_* 点击空白区域关闭图片,双指拖动可放大图片,单指拖动可移动图片哦_",
"text_link_map": {}
}

View File

@ -0,0 +1,128 @@
{
"link_dict": {
"https://news.bjx.com.cn/zhuanti/2019zhnyfw/": "综合能源服务 综合能源服务",
"https://fdjob.bjx.com.cn/industry/flfd/": "风电场投资及运营",
"https://fdjob.bjx.com.cn/industry/fdzj/": "风电整机",
"https://fdjob.bjx.com.cn/industry/ypjcl/": "叶片及材料",
"https://fdjob.bjx.com.cn/industry/fedgc/": "风电工程",
"https://fdjob.bjx.com.cn/industry/fdjjyj/": "发电机及元件",
"https://fdjob.bjx.com.cn/industry/tttj/": "塔筒/塔架",
"https://fdjob.bjx.com.cn/industry/kzxt/": "控制系统",
"https://gfjob.bjx.com.cn/industry/gfdcjzj/": "光伏电池组件",
"https://gfjob.bjx.com.cn/industry/gfdz/": "光伏电站及运维",
"https://gfjob.bjx.com.cn/industry/gfnbq/": "光伏逆变器",
"https://gfjob.bjx.com.cn/industry/fbsgf/": "分布式光伏",
"https://gfjob.bjx.com.cn/industry/gsygf/": "工商业光伏",
"https://gfjob.bjx.com.cn/industry/hygf/": "户用光伏",
"https://gfjob.bjx.com.cn/industry/gfgc/": "光伏系统工程",
"https://gfjob.bjx.com.cn/industry/gfxtlbj/": "光伏零部件",
"https://gfjob.bjx.com.cn/industry/gfcljsb/": "光伏原材料及辅料",
"https://cnjob.bjx.com.cn/industry/cndc/": "储能电池",
"https://cnjob.bjx.com.cn/industry/cnjs/": "储能系统",
"https://cnjob.bjx.com.cn/industry/cndz/": "储能电站",
"https://cnjob.bjx.com.cn/industry/gsycn/": "工商业储能",
"https://cnjob.bjx.com.cn/industry/cngc/": "储能工程",
"https://cnjob.bjx.com.cn/industry/dccl/": "储能材料及零部件",
"https://cnjob.bjx.com.cn/industry/xnyqc/": "光储充一体化",
"https://cnjob.bjx.com.cn/industry/cnyy/": "户用储能",
"https://tv.bjx.com.cn/list/type=2": "公开课",
"https://tv.bjx.com.cn/list/type=3": "空中宣讲",
"https://tv.bjx.com.cn/list/type=4": "云招聘",
"https://tv.bjx.com.cn/list/type=5": "星培计划",
"https://tv.bjx.com.cn/list/type=7": "高端访谈",
"https://tv.bjx.com.cn/list/type=8": "校企专访",
"https://edu.bjx.com.cn/activity/": "线下活动",
"https://news.bjx.com.cn/zt/app/index.html": "学社APP",
"https://huanbao.bjx.com.cn/ex": "环保会展网",
"https://guangfu.bjx.com.cn/ex/": "光伏会展网",
"https://www.bjx.com.cn/zt/": "电力专题",
"https://huanbao.bjx.com.cn/zt/": "环保专题",
"https://news.bjx.com.cn/zb/": "招投标",
"https://pubapinews.bjx.com.cn/kehuclickid=18438": "讲师招募!寻找光伏、风电、储能、环保行业讲师",
"https://news.bjx.com.cn/html/20241227/1419508.shtml": "又一力作中国船舶712所200千瓦级船用氢燃料电池系统交付 又一力作中国船舶712所200千瓦级船用氢燃料电池系统交付!** 近日中国船舶712所自主研制的200千瓦级船用氢燃料电池系统正式装车发货该系统从核心材料到组件均为独立研发拥有完整的自主知识产权并获得中国船级社认证。该系统配备两台100千瓦氢燃料电池采用高压储氢罐总储氢量120千克将为氢电拖轮提供高效电能发电效率达55%。与传统的电力拖轮相比 _氢燃料电池_ _氢能船舶_ _储氢 又一力作中国船舶712所200千瓦级船用氢燃料电池系统交付 又一力作中国船舶712所200千瓦级船用氢燃料电池系统交付",
"https://news.bjx.com.cn/topics/luqing/": "查看更多> **绿氢****氢能****绿氢耦合",
"https://news.bjx.com.cn/topics/qingneng/": "查看更多> **绿氢****氢能****绿氢耦合",
"https://news.bjx.com.cn/topics/luqingouhe/": "查看更多> **绿氢****氢能****绿氢耦合",
"https://news.bjx.com.cn/html/20241227/1419599.shtml": "全球最大体量绿色氢氨醇一体化建设项目2.87亿贷款落地!** 近日北极星氢能网获悉进出口银行吉林省分行顺利实现吉林省绿色氢氨醇一体化项目首笔放款2.87亿元。此前该项目成功获得国家超长期特别国债资金支持据了解该项目是目前全球最大体量的绿色氢氨醇一体化项目也是国家发改委“首批绿色低碳先进技术示范项目”总投资高达296亿元于2023年9月26 _绿氢_ _绿氨_ _氢氨醇一体化 全球最大体量绿色氢氨醇一体化建设项目2.87亿贷款落地! 全球最大体量绿色氢氨醇一体化建设项目2.87亿贷款落地!",
"https://news.bjx.com.cn/html/20241227/1419535.shtml": "冲刺一百天 跑出加速度 | 上海电气获国内首个绿色甲醇全流程ISCC EU认证氢基能源发展按下「快进键」** 12月23日上海电气同时获得生物质收储、生物质处理及生物质气化耦合绿氢制生物甲醇ISCCEU认证成为国内首个取得从生物质田间收储到绿色甲醇生产全流程ISCCEU认证的绿色甲醇供应商。此次认证对象为上海电气旗下绿源科技吉林有限公司独资建设的洮南市风电耦合生物质绿色甲醇一体化示范项目。该项目 _绿氢_ _绿色甲醇_ _上海电气 冲刺一百天 跑出加速度 | 上海电气获国内首个绿色甲醇全流程ISCC EU认证氢基能源发展按下「快进键」 冲刺一百天 跑出加速度 | 上海电气获国内首个绿色甲醇全流程ISCC EU认证氢基能源发展按下「快进键」 冲刺一百天 跑出加速度 | 上海电气获国内首个绿色甲醇全流程ISCC EU认证氢基能源发展按下「快进键」",
"https://news.bjx.com.cn/html/20241226/1419474.shtml": "海外+1双良集团拿下印度ACME阿曼日产300吨绿氨项目** 近日双良新能源与印度ACME集团在国际清洁能源合作领域迈出了坚实的一步。近日经过前期多轮深入交流与实地考察双方正式签署了阿曼绿氢绿氨项目的绿电制氢系统订单协议双方在全球清洁能源产业中的合作将开启新篇章共同致力于应对全球气候变化的挑战。ACME集团成立于2003年如今已发展成为印度 _绿氢_ _绿氨_ _电解水制氢 海外+1双良集团拿下印度ACME阿曼日产300吨绿氨项目",
"https://news.bjx.com.cn/html/20241226/1419473.shtml": "内蒙古达茂旗政府与国富氢能签约!** 12月24日达茂旗人民政府与内蒙古蒙发国富氢能科技有限公司举行座谈会并签署合作框架协议。达茂旗旗委副书记、旗长黄龙副旗长刘熙臣零碳园区管委会主任孙日清蒙发能源控股集团总裁、内蒙古蒙发国富氢能科技有限公司董事长高三雄江苏国富氢能技术装备股份有限公司常务副总裁丁镭哲内蒙古华电 _绿氢_ _氢能产业_ _国富氢能 内蒙古达茂旗政府与国富氢能签约!** 12月24日达茂旗人民政府与内蒙古蒙发国富氢能科技有限公司举行座谈会并签署合作框架协议。达茂旗旗委副书记、旗长黄龙副旗长刘熙臣零碳园区管委会主任孙日清蒙发能源控股集团总裁、内蒙古蒙发国富氢能科技有限公司董事长高三雄江苏国富氢能技术装备股份有限公司常务副总裁丁镭哲内蒙古华电 _绿氢_ _氢能产业_ _国富氢能",
"https://news.bjx.com.cn/html/20241226/1419244.shtml": "重大进展全球首台30MW级纯氢燃气轮机点火成功** 12月22日全球首台30MW级纯氢燃气轮机“木星一号”整机试验首次点火成功。此次点火的纯氢燃气轮机是目前全球单机功率最大的纯氢发电机组纯氢点火试验取得预期效果验证了纯氢燃气轮机系统可靠性和安全性标志着我国大功率氢燃气轮机和氢储能技术取得重大进展新型长时储能有了新技术、新产品。“ _绿氢_ _氢燃气轮机_ _电解水制氢",
"https://news.bjx.com.cn/html/20241225/1419113.shtml": "大安风光制绿氢合成氨一体化项目** 一、企业基本情况大安吉电绿氢能源有限公司2021年10月27日成立注册地为吉林省白城市大安市两家子镇吉林西部大安清洁能源化工产业园公司注册资本11.9亿元,是吉电股份的全资子公司,主要承载吉电股份吉林西部千万千瓦新能源制氢基地开发建设任务。二、项目基本情况大安风光制绿氢合成氨一体化 _绿氢_ _绿氨_ _氢氨一体化",
"https://news.bjx.com.cn/html/20241225/1419078.shtml": "苏伊士运河经济区已吸引640亿美元的绿氢投资** 近日苏伊士运河经济区通过12项框架协议吸引了640亿美元的绿氢投资。12个最终确定的框架协议预计每年生产1800万吨绿氢。除了绿色氢能外经济区还提供其他重要投资机会包括电动汽车行业的电池与轮胎制造、制药、建筑材料及纺织品生产等领域。 _绿氢_ _氢能_ _电解水制氢",
"https://news.bjx.com.cn/html/20241225/1419033.shtml": "家氢能公司成立!** 近日西安氢碳绿能能源科技有限公司与富氢储氢福建科技研究院有限公司相继成立西安氢碳绿能能源科技有限公司成立于2024年12月23日注册资本1000万元法定代表人为潘珂郡。经营范围包括一般项目温室气体排放控制技术研发资源循环利用服务技术咨询信息技术咨询服务气体、液体分离及纯净 _储氢_ _氢能_ _绿氢",
"https://news.bjx.com.cn/html/20241225/1418949.shtml": "隆基氢能与HydrogenPro签订合作协议携手开拓欧洲绿氢市场** 12月23日隆基氢能与HydrogenProASAHydrogenPro签署了一项投资协议。HydrogenPro是绿氢技术及系统领域的领军企业隆基氢能将与HydrogenPro现有股东安德里茨集团ANDRITZAG以及三菱重工业株式会社MitsubishiHeavyIndustries,Ltd一起向HydrogenPro投资约1.4亿挪威克朗。与此同时,双方还 _绿氢_ _电解槽_ _隆基氢能",
"https://news.bjx.com.cn/html/20241224/1418802.shtml": "内蒙古兴安盟金风绿氢制50万吨绿色甲醇项目最新进展** 北极星氢能网获悉近日中国化学工程第四建设有限公司江西公司承建的兴安盟金风绿氢制50万吨绿色甲醇项目一期公辅工程EPC项目锅炉实现点火一次成功。该项目位于内蒙古自治区兴安盟经济技术开发区是全国首个大规模风电绿甲醇项目创新融合“风—氢—储—生物质”多能协同技术高效利用波 _绿色甲醇_ _氢能_ _内蒙古氢能",
"https://news.bjx.com.cn/html/20241227/1419674.shtml": "羚牛氢能与泰达控股签订战略合作协议 共建“天津氢港”!** 12月25日羚牛氢能与天津泰达投资控股有限公司简称“泰达控股”携手合作共同签署了战略合作协议。双方将在资源共享、优势互补的基础上探索多领域合作机会共同推动氢能商用车的广泛应用为构建零碳物流生态体系注入强劲动力。泰达控股旗下的中国(北方)商用车产业园项目毗邻滨海新区核心区仅 _氢能汽车_ _氢燃料电池_ _羚牛氢能 羚牛氢能与泰达控股签订战略合作协议 共建“天津氢港”! 羚牛氢能与泰达控股签订战略合作协议 共建“天津氢港”! 羚牛氢能与泰达控股签订战略合作协议 共建“天津氢港”!",
"https://news.bjx.com.cn/html/20241227/1419671.shtml": "中国石化资本投资入股徐工汽车!** 近日,中国石化资本投资入股徐州徐工汽车制造有限公司(简称“徐工汽车”),混改项目正式完成。中国石化资本投资入股徐工汽车,将进一步推动徐工集团和中国石化在氢能交通、润滑油、充换电、销售网络及后市场服务等领域的务实合作,协同构建新能源产业链“闭环式”生态圈,促进我国绿色低碳产业高质量 _氢能交通_ _氢能汽车_ _中国石化 中国石化资本投资入股徐工汽车! 中国石化资本投资入股徐工汽车! 中国石化资本投资入股徐工汽车!",
"https://news.bjx.com.cn/html/20241227/1419616.shtml": "辆氢能重卡三期采购项目中标候选人公示!** 12月25日氢能产业示范区氢能重卡三期采购项目中标候选人公示第一中标候选人天津临港海洋经济投资发展集团有限公司投标报价2150万。项目规模本次招标计划采购氢燃料电池49T半挂牵引车40辆。共分为2个包每个包20辆。具体内容详见招标文件和用户需求书。交货期签订合同后45个工作日交货。 _氢燃料电池_ _氢能重卡_ _氢能 辆氢能重卡三期采购项目中标候选人公示! 辆氢能重卡三期采购项目中标候选人公示!",
"https://news.bjx.com.cn/html/20241227/1419610.shtml": "中石化海水电解制氢中试装置招标!** 12月26日中石化天津石油化工有限公司海水电解制氢中试装置/316+20#10kg/h招标。 _电解水制氢_ _氢能_ _中石化 中石化海水电解制氢中试装置招标! 中石化海水电解制氢中试装置招标!",
"https://news.bjx.com.cn/html/20241227/1419541.shtml": "中能建氢能公司改革新步伐收录国资委《千帆竞渡》!** 由国务院国资委组织编写的《千帆竞渡:基层国有企业改革深化提升行动案例集(上、中、下)》已于近日面向全国发行。中能建氢能源有限公司作为引领国内氢能领域革新探索的典范之一,提炼实践经验,汇集成改革案例《系统实施深化改革,打造氢能领域行业领军企业》,被成功收录其中,鲜明地体现了基层国有 _氢能_ _氢能产业_ _中能建 中能建氢能公司改革新步伐收录国资委《千帆竞渡》! 中能建氢能公司改革新步伐收录国资委《千帆竞渡》!",
"https://news.bjx.com.cn/html/20241226/1419475.shtml": "氢燃料电池商用车整车项目签约落户西安!** 近日北极星氢能网获悉氢燃料电池商用车整车项目落户西安。该项目由陕西秦深盈创氢能科技有限公司投资建设总投资约2亿元建成达产后预计可实现年产值10亿元引进配套供应商10个以上。该项目主要聚焦氢燃料电池商用车整车研发、生产、销售。生产的车辆还将采用国内领先的动力配置实现双极板、 _氢燃料电池汽车_ _氢能产业_ _氢商用车",
"https://news.bjx.com.cn/html/20241226/1419471.shtml": "辆氢能源环卫作业车辆租赁项目中标结果公示!** 12月25日郑州市金水区城市管理局金水区氢能源环卫作业车辆租赁项目中标结果公示中标人郑州金水建设投资有限公司中标金额79214400.00元。采购内容:为积极响应国家节能减排政策号召,加快推进金水区氢能源产业的建设,郑州市金水区城市管理局计划对传统柴油环卫作业车辆逐步进行更新升级,先行采 _氢能环卫_ _氢能汽车_ _氢燃料电池",
"https://news.bjx.com.cn/html/20241226/1419453.shtml": "阳光氢能开启电解槽“数智”蝶变** 北极星氢能网获悉12月26日阳光氢能举办数智化大型电解槽新品发布会氢能上下游企业、协会、媒体等专家、领导齐聚一堂与数万观众通过线上直播共同见证了首台“数智化”电解槽的隆重发布。在数字能源转型与氢能产业快速发展的当下电解槽的“数智”蝶变将大力助推绿氢规模化发展和多元场景的 _电解槽_ _电解水制氢_ _阳光氢能",
"https://news.bjx.com.cn/html/20241223/1418467.shtml": "绿氢100万标方宁煤完成绿氢制绿氨示范** 近日宁夏煤业烯烃二公司累计引入宁东可再生氢碳减排示范区一期项目清水营制氢厂绿氢100万标方成功实现了煤化工行业可再生氢耦合示范填补我国光伏制可再生氢耦合煤制合成氨系统运营的空白进一步推动了宁夏煤业公司绿色发展。宁东可再生氢碳减排示范区一期项目是国家能源集团首个万方级光伏制可 _绿氢_ _可再生氢耦合_ _光伏制氢",
"https://news.bjx.com.cn/html/20241218/1417617.shtml": "内蒙古宝丰煤基绿氢与煤化工耦合碳减排创新示范项目开车投产!** 近日内蒙古宝丰煤基绿氢与煤化工耦合碳减排创新示范项目首系列各装置顺利开车投产标志着该项目正式进入试生产阶段。该项目建设年产300万吨烯烃是目前全球单厂规模最大的煤制烯烃项目也是全球唯一一个规模化用绿氢替代化石能源生产烯烃的项目广泛应用了多项具有我国自主知识产权、全球现代煤 _绿氢_ _绿氢项目_ _氢能",
"https://news.bjx.com.cn/html/20241217/1417357.shtml": "氧化碳耦合绿氢制甲醇 吉利创新中心牵手世界500强** 近日吉利创新中心与世界500强企业霍尼韦尔签署战略合作协议双方将基于各自优势在二氧化碳捕集、捕集二氧化碳耦合绿氢制取电子甲醇、电子甲醇制取可持续航空燃料SAF技术合作以及其他服务于高质量低碳可持续发展的先进技术等多个领域达成了合作意向。用绿色甲醇破解世界能源和双碳难题吉利创新中 _绿氢_ _绿色甲醇_ _绿色能源",
"https://news.bjx.com.cn/html/20240826/1396924.shtml": "国家电网巴西电力签约绿氢项目** 北极星氢能网获悉8月22日中国国家电网巴西电力CPFL公司以下简称国网巴电CPFL公司与巴西米祖水泥制造公司在巴西东北部北里奥格兰德州纳塔尔市举行绿氢科技项目签约仪式为当地能源转型注入新动力。根据签约内容双方将联合投资建设包括氢能制取、储运、应用在内的全链条1兆瓦绿色制氢站并就氢 _绿氢_ _氢电耦合_ _国家电网",
"https://news.bjx.com.cn/html/20240820/1395862.shtml": "年产1120万吨甲醇宝丰又一个绿氢耦合煤化工项目启动** 7月30日据国家级新疆准东经济技术开发区官网新疆宝丰煤炭清洁高效转化耦合植入绿氢制低碳化学品和新材料示范项目进入环境影响评价公众参与第一次公示阶段。项目位于将军庙矿区5号化工产业园区包括4×280万吨/年甲醇、4×100万吨/年甲醇制烯烃、4×110万吨/年烯烃分离、3×65万吨/年聚丙烯、3×65 _绿氢_ _绿色甲醇_ _氢能",
"https://news.bjx.com.cn/html/20240708/1387671.shtml": "全球单厂规模最大绿氢耦合煤制烯烃项目变电站成功送电** 6月30日内蒙古宝丰煤基新材料有限公司宝丰烯烃220千伏变电站成功送电该变电站成功送电不仅为宝丰煤基新材料项目的调试投产提供了坚实可靠的电力保障也为宝丰煤基新材料后续“风光融合”发绿电制取绿氢奠定了基础。当天上午10时15分在内蒙古宝丰煤基新材料有限公司年产300万吨烯烃项目随着主 _绿氢_ _甲醇_ _煤制烯烃",
"https://news.bjx.com.cn/html/20240703/1386708.shtml": "国家能源集团首例绿氢耦合煤化工项目建成中交** 北极星氢能网获悉6月28日由国家能源集团国华投资氢能公司宁夏分公司建设的宁东可再生氢碳减排示范区一期项目清水营制氢厂建成中交该厂是国家能源集团首例绿氢耦合煤化工项目所制氢气专供煤化工项目作为原料补充氢气实现绿氢与煤化工产业耦合示范应用。清水营制氢厂是国家能源集团首例“ _绿氢_ _制氢_ _国家能源集团",
"https://news.bjx.com.cn/html/20240423/1372981.shtml": "加强电氢耦合标准化建设 推动绿氢产业健康可持续发展** 今年的政府工作报告提出“强化能源资源安全保障”“加快建设新型能源体系”。氢作为一种绿色低碳、来源丰富、应用广泛的能源形式,既是重要的化工原料又是优质的能源载体,将在新型能源体系中承担重要角色。“双碳”目标要求下,新能源电解制氢(绿氢)是未来氢能发展的核心方向。新能源电解制氢规模的 _电氢耦合_ _新型电力系统_ _氢燃料电池技",
"https://news.bjx.com.cn/html/20240422/1372893.shtml": "苏州希倍优氢能源科技有限公司在离网风光耦合制绿氢研究取得重要进展** 光伏与风电是一种无碳排放的可再生能源,但是其能量具有波动性的特征,对电网系统的安全运行冲击较大,国内很多地区可供并网的风电、光伏装机容量已达上限。使用光伏、风能进行耦合离网电解水制氢,不但可以解决光伏、风电的消纳难题,还有助于国家在工业、交通运输及民用领域深度脱碳,实现国家“碳中 _电解水制氢_ _电解槽_ _希倍优氢能",
"https://news.bjx.com.cn/html/20240327/1368442.shtml": "中国电科院康建东:电氢耦合技术战略及发展趋势** 北极星氢能网获悉3月27日中国电力科学研究院有限公司技术战略研究中心室主任康建东在绿氢技术与氢电协同发展专题论坛上发表了《电氢耦合技术战略及发展趋势》的主题演讲。以下为康建东演讲全文各位嘉宾、各位同仁上午好。我是来自中国电力科学研究院的康建东我今天演讲的题目是电氢耦合技术绽 _绿氢技术_ _新型电力系统_ _电氢耦合技术",
"https://pubapinews.bjx.com.cn/kehuclickid=22330": "2025 “北极星杯”\n储能影响力企业评选\n\n主办单位\n北极星电力网\n承办公单位\n北极星能动网",
"https://pubapinews.bjx.com.cn/kehuclickid=21678": "《2023年风光项目开发地图》\n《2023能源央企新能源版图》\n重磅上线\n热销中\n能源央企新能源版图\n30",
"https://pubapinews.bjx.com.cn/kehuclickid=18782": "北极星电力行业\n 会议/直播 营销服务平台",
"https://news.bjx.com.cn/rankinglist/qingneng/": "更多> **新闻排行榜** _今日_ _本周_ _本月",
"https://news.bjx.com.cn/html/20241227/1419591.shtml": "华电取得首个绿氨掺烧项目! 华电取得首个绿氨掺烧项目! 华电取得首个绿氨掺烧项目!",
"https://news.bjx.com.cn/html/20241227/1419727.shtml": "绿色燃料,未来已来! 绿色燃料,未来已来! 绿色燃料,未来已来!",
"https://news.bjx.com.cn/html/20241227/1419693.shtml": "考克利尔获210MW电解槽订单支持美国12万吨电子甲醇项目 考克利尔获210MW电解槽订单支持美国12万吨电子甲醇项目 考克利尔获210MW电解槽订单支持美国12万吨电子甲醇项目",
"https://dljob.bjx.com.cn/specials/101813.html": "届秋招第二批次补录岗位首发 届秋招第二批次补录岗位首发",
"https://dljob.bjx.com.cn/specials/101817.html": "新一线城市25届校招专场 新一线城市25届校招专场",
"https://dljob.bjx.com.cn/specials/101814.html": "研后大型专场招聘会",
"https://hdjob.bjx.com.cn/specials/101816.html": "薪跳加速,职此进阶!火电行业集控岗位招聘专场",
"https://fdjob.bjx.com.cn/specials/101815.html": "“薪”潮澎湃,虚位以待! 河北地区 风电行业运维岗招聘专场",
"https://hr.bjx.com.cn/companys/9946/jobs_0_1/": "",
"https://hr.bjx.com.cn/companys/24264/jobs_0_1/": "十一科技",
"https://hr.bjx.com.cn/companys/29747/jobs_0_1/": "",
"https://hr.bjx.com.cn/companys/73962/jobs_0_1/": "",
"https://hr.bjx.com.cn/companys/104157/jobs_0_1/": "",
"https://edu.bjx.com.cn/s/67109308.html": "课程集中式光伏项目全流程支持性文件概述",
"https://edu.bjx.com.cn/s/67109294.html": "课程储能电站安全运维管理方案",
"https://edu.bjx.com.cn/s/67109353.html": "课程锂离子电池储能中的安全问题及应对技术(限时免费)",
"https://edu.bjx.com.cn/s/67109396.html": "课程光伏电站股权收购的流程和风险分析",
"https://edu.bjx.com.cn/s/67109299.html": "课程《零碳生态&绿色未来》系列公益公开课",
"https://edu.bjx.com.cn/s/67109355.html": "课程分布式光伏电站建设“避坑指南”",
"https://news.bjx.com.cn/html/20241227/1419527.shtml": "中国能建华北院中标鄂尔多斯市绿氢与煤化工耦合碳减排创新示范项目!",
"http://www.bjx.com.cn/about/about.html": "关于北极星",
"http://www.bjx.com.cn/about/baojia_index.html": "广告服务",
"https://companycenter.bjx.com.cn/common/hybz": "会员服务",
"http://www.bjx.com.cn/about/yxfa.html": "营销方案",
"http://www.bjx.com.cn/about/about.html=": "成功案例",
"http://www.bjx.com.cn/about/lxwm.html": "联系我们",
"http://www.beian.gov.cn/portal/registersysteminforecordcode=11010502034458": "京公网安备11010502034458号",
"https://www.bjx.com.cn/icp.html": "电子公告服务专项备案"
},
"text": "新闻\n\n招聘\n\n直播\n\n学社\n\n商务通\n\n社区\n\n会展\n\n专题\n\n搜索历史清空\n\n1. 企业注册[Ref_1]\n 2. 企业登录[Ref_2]\n 3. 个人注册\n 4. 个人登录\n\n您的位置 _电力[Ref_3]_ _氢能[Ref_4]_ _氢能综合利用[Ref_5]_ _其他[Ref_6]_ _企业[Ref_7]_ _正文_\n\n# 中国能建华北院中标鄂尔多斯市绿氢与煤化工耦合碳减排创新示范项目!\n\n2024-12-27 08:56来源中国能建关键词 _绿氢[Ref_8]_ _氢能[Ref_9]_ _绿氢耦合[Ref_10]_ 收藏点赞\n\n分享\n\n订阅\n\n投稿 _我要投稿_\n\n中国能建华北院中标内蒙古宝丰煤基新材料有限公司源网荷储一体化工程设计项目。\n\n项目位于乌审旗苏里格经济开发区是鄂尔多斯市绿氢[Ref_8]与煤化工耦合碳减排创新示范项目。项目依托乌审旗丰富的煤炭资源、土地资源、可再生风光资源、矿井疏干水资源和环境承载力空间通过配套独立建设100万千瓦新能源其中风电50万千瓦、光伏50万千瓦20万千瓦/60万千瓦时储能为260万吨/年煤制烯烃及配套40万吨/年植入绿氢耦合[Ref_10]制烯烃供电。\n\n项目建成后将实现绿电、绿氧、绿氢耦合减排并减少外购甲醇量稳定烯烃产能最终实现降碳减碳目标。\n\n投稿与新闻线索陈女士 微信/手机13693626116 邮箱chenchen#bjxmail.com请将#改成@\n\n订阅北极星周刊精彩内容不再错过\n\n_*_ 姓名\n\n_*_ 手机\n\n**发送验证码**\n\n_*_ 邮箱\n\n公司\n\n岗位\n\n订阅\n\n特别声明北极星转载其他网站内容出于传递更多信息而非盈利之目的同时并不代表赞成其观点或证实其描述内容仅供参考。版权归原作者所有若有侵权请联系我们删除。\n\n凡来源注明北极星*网的内容为北极星原创,转载需获授权。\n\n**阅读下一篇**\n\n安徽新力电业高技术有限责任公司在招副值/集控副值(垃圾发电)、值长、主值、副值等 _16_ 个职位[Ref_13]绩效奖金 | 带薪年假 | 交通补助\n\n信息产业电子第十一设计研究院科技工程股份有限公司华东分院在招光伏电站运维站长-祁东、光伏电站运维人员-青海海南州等 _30_ 个职位[Ref_14]午餐补助 | 绩效奖金 | 五险一金\n\n新疆天池能源有限责任公司在招20亿立方煤制气电解水车间主任、安全专工、设备专工、班长、20亿立方煤制气项目动力项目部工艺专工等 _27_ 个职位[Ref_15]定期体检 | 交通补助 | 绩效奖金\n\n光大环保能源衡南有限公司在招会计、等 _1_ 个职位[Ref_16]带薪年假 | 通讯津贴 | 定期体检\n\n阳光智维科技股份有限公司在招浙江光伏运维值班员、湖北荆州光伏运维值长等 _538_ 个职位[Ref_17]绩效奖金 | 通讯津贴 | 节日礼物\n\n**最新热点****企业风采**\n\n## 登录注册\n\n**继续扫码**\n\n**二维码已失效** 点击刷新\n\n请使用微信扫一扫\n\n关注公众号完成登录\n\n## 绑定账号\n\n_+86_\n\n发送验证码\n\n绑定\n\n## 想要获取更精准资讯推荐?建议您完善以下信息~\n\n姓名 \n--- \n性别 \n出生日期 \n邮箱 \n所在地区 \n行业类别 \n工作经验 \n学历 \n公司名称 \n任职岗位 \n \n提交\n\n## 订阅成功\n\n我们将会第一时间为您推送相关内容\n\n* _扫码下载APP_\n * _扫码关注公众号_\n\n便捷入口\n\n关于我们\n\n网站运营\n\n北京火山动力网络技术有限公司\n\n北京市朝阳区世通国际大厦C座12层\n\n广告合作崔女士 18911066791\n\n陈女士 17701031159\n\n合作投稿陈女士 13693626116\n\n会展合作齐女士 13381061157\n\n会员咨询李先生 17718308761\n\n法务邮箱fw@bjxmail.com\n\nCopyright © 2024 Bjx.com.cn All Rights Reserved. 北京火山动力网络技术有限公司[Ref_18] 版权所有",
"text_link_map": {
"Ref_1": "https://companycenter.bjx.com.cn/account/register/",
"Ref_2": "https://companycenter.bjx.com.cn/account/logon/",
"Ref_3": "https://news.bjx.com.cn/",
"Ref_4": "https://qn.bjx.com.cn/",
"Ref_5": "https://qn.bjx.com.cn/qmzhly/",
"Ref_6": "https://qn.bjx.com.cn/qnzhlyqt/",
"Ref_7": "https://qn.bjx.com.cn/mq/",
"Ref_8": "https://news.bjx.com.cn/topics/luqing/",
"Ref_9": "https://news.bjx.com.cn/topics/qingneng/",
"Ref_10": "https://news.bjx.com.cn/topics/luqingouhe/",
"Ref_11": "https://news.bjx.com.cn/topics/luqing/",
"Ref_12": "https://news.bjx.com.cn/topics/luqingouhe/",
"Ref_13": "https://hr.bjx.com.cn/companys/9946/jobs_0_1/",
"Ref_14": "https://hr.bjx.com.cn/companys/24264/jobs_0_1/",
"Ref_15": "https://hr.bjx.com.cn/companys/29747/jobs_0_1/",
"Ref_16": "https://hr.bjx.com.cn/companys/73962/jobs_0_1/",
"Ref_17": "https://hr.bjx.com.cn/companys/104157/jobs_0_1/",
"Ref_18": "http://img.mybjx.net/theme/default/images/common/renzeng/yingyezhizheng.jpg"
}
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,102 @@
focus statement:
#上海房地产新闻
#北京房地产新闻
#广州房地产新闻
#深圳房地产新闻
#杭州房地产新闻
raw materials in: e78068
llm model: Qwen/Qwen2.5-7B-Instruct
get more links hallucination times: 0
get infos hallucination times: 0
get more links time: 6.735590934753418 s
get infos time: 4.8277060985565186 s
total more links: 7
total infos: 1
author and publish time: {"source": "乐居新媒体 徐迪", "publish_date": "2024-12-23"}
infos:
#北京房地产新闻:北京市住建委数据显示12月22日北京新房网签307套期房213+现房94网签面积约2.6万平方米二手房网签185套网签面积1.65万平方米。其中新房住宅网签184套期房164+现房20网签面积2.17万平方米二手房住宅网签180套网签面积1.63万平方米。
more links:
北京建独栋别墅,懋源打了擦边球:https://www.lejucaijing.com/column-61.html
本地市场:https://www.lejucaijing.com/channel-shanghai/data_channel_id=6848073394228390811&sub_channel_name=本地市场
月1日北京住宅网签新房56套、二手房68套 5.2w阅读:https://www.lejucaijing.com/news-7280383417282918151.html
深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园 1.3w阅读 深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园 深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园:https://www.lejucaijing.com/news-7280412724021622645.html
广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套 1.7w阅读 广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套 广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套:https://www.lejucaijing.com/news-7280398764920731411.html
当前位置:上海:https://www.lejucaijing.com/channel-shanghai/
首拍海淀朱房双子地块8家房企入场 3.9w阅读:https://www.lejucaijing.com/news-7280029718337484066.html
************
llm model: Qwen/Qwen2.5-14B-Instruct
get more links hallucination times: 0
get infos hallucination times: 0
get more links time: 5.896205902099609 s
get infos time: 6.4380762577056885 s
total more links: 9
total infos: 1
author and publish time: {"source": "乐居新媒体 徐迪", "publish_date": "2024-12-23"}
infos:
北京房地产新闻:北京市住建委数据显示12月22日北京新房网签307套期房213+现房94网签面积约2.6万平方米二手房网签185套网签面积1.65万平方米。其中新房住宅网签184套期房164+现房20网签面积2.17万平方米二手房住宅网签180套网签面积1.63万平方米。
more links:
北京建独栋别墅,懋源打了擦边球:https://www.lejucaijing.com/column-61.html
首开售罄16天后电建长安华曦府再拿证单套总价466万元起:https://www.lejucaijing.com/news-7280112407346345715.html
内嵌阳台尺度收紧?金茂璞逸丰宜花池是这么来的 9167阅读 内嵌阳台尺度收紧?金茂璞逸丰宜花池是这么来的 内嵌阳台尺度收紧?金茂璞逸丰宜花池是这么来的:https://www.lejucaijing.com/news-7280415329275802996.html
保利发展转让南京学尚置业50%股权底价2053万元:https://www.lejucaijing.com/news-7280366957340849921.html
月1日北京住宅网签新房56套、二手房68套 5.2w阅读:https://www.lejucaijing.com/news-7280383417282918151.html
深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园 1.3w阅读 深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园 深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园:https://www.lejucaijing.com/news-7280412724021622645.html
广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套 1.7w阅读 广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套 广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套:https://www.lejucaijing.com/news-7280398764920731411.html
保利嘉华天珺852套房源拿证8.8万+新盘、最小70㎡两居:https://www.lejucaijing.com/news-7280124924101588705.html
首拍海淀朱房双子地块8家房企入场 3.9w阅读:https://www.lejucaijing.com/news-7280029718337484066.html
************
llm model: Qwen/Qwen2.5-32B-Instruct
get more links hallucination times: 0
get infos hallucination times: 0
get more links time: 5.530687093734741 s
get infos time: 4.671689033508301 s
total more links: 9
total infos: 1
author and publish time: {"source": "乐居新媒体 徐迪", "publish_date": "2024-12-23"}
infos:
#北京房地产新闻:北京市住建委数据显示12月22日北京新房网签307套期房213+现房94网签面积约2.6万平方米二手房网签185套网签面积1.65万平方米。其中新房住宅网签184套期房164+现房20网签面积2.17万平方米二手房住宅网签180套网签面积1.63万平方米。
more links:
北京建独栋别墅,懋源打了擦边球:https://www.lejucaijing.com/column-61.html
首开售罄16天后电建长安华曦府再拿证单套总价466万元起:https://www.lejucaijing.com/news-7280112407346345715.html
内嵌阳台尺度收紧?金茂璞逸丰宜花池是这么来的 9167阅读 内嵌阳台尺度收紧?金茂璞逸丰宜花池是这么来的 内嵌阳台尺度收紧?金茂璞逸丰宜花池是这么来的:https://www.lejucaijing.com/news-7280415329275802996.html
月1日北京住宅网签新房56套、二手房68套 5.2w阅读:https://www.lejucaijing.com/news-7280383417282918151.html
深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园 1.3w阅读 深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园 深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园:https://www.lejucaijing.com/news-7280412724021622645.html
广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套 1.7w阅读 广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套 广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套:https://www.lejucaijing.com/news-7280398764920731411.html
当前位置:上海:https://www.lejucaijing.com/channel-shanghai/
保利嘉华天珺852套房源拿证8.8万+新盘、最小70㎡两居:https://www.lejucaijing.com/news-7280124924101588705.html
首拍海淀朱房双子地块8家房企入场 3.9w阅读:https://www.lejucaijing.com/news-7280029718337484066.html
************
llm model: deepseek-ai/DeepSeek-V2.5
get more links hallucination times: 0
get infos hallucination times: 0
get more links time: 30.159864902496338 s
get infos time: 30.636465072631836 s
total more links: 10
total infos: 3
author and publish time: {
"source": "乐居新媒体 徐迪",
"publish_date": "2024-12-23"
}
infos:
#北京房地产新闻:其中新房住宅网签184套期房164+现房20网签面积2.17万平方米二手房住宅网签180套网签面积1.63万平方米。
#北京房地产新闻:12月22日北京住宅网签新房184套、二手房180套
#北京房地产新闻:北京市住建委数据显示12月22日北京新房网签307套期房213+现房94网签面积约2.6万平方米二手房网签185套网签面积1.65万平方米。
more links:
北京建独栋别墅,懋源打了擦边球:https://www.lejucaijing.com/column-61.html
首开售罄16天后电建长安华曦府再拿证单套总价466万元起:https://www.lejucaijing.com/news-7280112407346345715.html
内嵌阳台尺度收紧?金茂璞逸丰宜花池是这么来的 9167阅读 内嵌阳台尺度收紧?金茂璞逸丰宜花池是这么来的 内嵌阳台尺度收紧?金茂璞逸丰宜花池是这么来的:https://www.lejucaijing.com/news-7280415329275802996.html
保利发展转让南京学尚置业50%股权底价2053万元:https://www.lejucaijing.com/news-7280366957340849921.html
月1日北京住宅网签新房56套、二手房68套 5.2w阅读:https://www.lejucaijing.com/news-7280383417282918151.html
深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园 1.3w阅读 深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园 深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园:https://www.lejucaijing.com/news-7280412724021622645.html
广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套 1.7w阅读 广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套 广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套:https://www.lejucaijing.com/news-7280398764920731411.html
当前位置:上海:https://www.lejucaijing.com/channel-shanghai/
保利嘉华天珺852套房源拿证8.8万+新盘、最小70㎡两居:https://www.lejucaijing.com/news-7280124924101588705.html
首拍海淀朱房双子地块8家房企入场 3.9w阅读:https://www.lejucaijing.com/news-7280029718337484066.html
************

View File

@ -0,0 +1,63 @@
{
"link_dict": {
"https://www.lejucaijing.com/channel-shendu/data_channel_id=6942722459234298840&sub_channel_name=预审ipo": "预审IPO",
"https://www.lejucaijing.com/channel-shendu/data_channel_id=6942722459234298840&sub_channel_name=地产k线": "地产K线",
"https://www.lejucaijing.com/channel-shendu/data_channel_id=6942722459234298840&sub_channel_name=家居k线": "家居K线",
"https://www.lejucaijing.com/channel-shendu/data_channel_id=6942722459234298840&sub_channel_name=物业k线": "物业K线",
"https://www.lejucaijing.com/channel-shendu/data_channel_id=6942722459234298840&sub_channel_name=资管k线": "资管K线",
"https://www.lejucaijing.com/channel-shendu/data_channel_id=6942722459234298840&sub_channel_name=研究院": "研究院",
"https://www.lejucaijing.com/channel-shendu/data_channel_id=6942722459234298840&sub_channel_name=物业英雄": "物业英雄",
"https://www.lejucaijing.com/channel-shendu/data_channel_id=6942722459234298840&sub_channel_name=工匠先锋": "工匠先锋",
"https://www.lejucaijing.com/channel-shanghai/data_channel_id=6848073394228390811&sub_channel_name=本地市场": "本地市场",
"https://www.lejucaijing.com/channel-shanghai/data_channel_id=6848073394228390811&sub_channel_name=公司动态": "公司动态",
"https://www.lejucaijing.com/channel-shanghai/data_channel_id=6848073394228390811&sub_channel_name=楼市行情": "楼市行情",
"https://www.lejucaijing.com/channel-shangye/data_channel_id=6486535174854634268&sub_channel_name=商业地产": "商业地产",
"https://www.lejucaijing.com/channel-shangye/data_channel_id=6486535174854634268&sub_channel_name=产业园区": "产业园区",
"https://www.lejucaijing.com/channel-shangye/data_channel_id=6486535174854634268&sub_channel_name=康养文旅": "康养文旅",
"https://www.lejucaijing.com/channel-shangye/data_channel_id=6486535174854634268&sub_channel_name=城市更新": "城市更新",
"https://m.rccaijing.com/channel-rcipo/": "IPO",
"https://www.lejucaijing.com/channel-shanghai/": "当前位置:上海",
"https://www.lejucaijing.com/search/indexwd=时代邻里": "时代邻里",
"https://www.lejucaijing.com/search/indexwd=海伦堡": "海伦堡",
"https://www.lejucaijing.com/search/indexwd=碧桂园": "碧桂园",
"https://www.lejucaijing.com/search/indexwd=物业k线": "物业K线",
"https://www.lejucaijing.com/search/indexwd=时代中国": "时代中国",
"https://www.lejucaijing.com/search/indexwd=融创中国": "融创中国",
"https://www.lejucaijing.com/search/indexwd=家居k线": "家居K线",
"https://www.lejucaijing.com/column-114.html": "w关注 乐居新媒体",
"https://www.lejucaijing.com/news-7280415329275802996.html": "内嵌阳台尺度收紧?金茂璞逸丰宜花池是这么来的 9167阅读 内嵌阳台尺度收紧?金茂璞逸丰宜花池是这么来的 内嵌阳台尺度收紧?金茂璞逸丰宜花池是这么来的",
"https://www.lejucaijing.com/news-7280412724021622645.html": "深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园 1.3w阅读 深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园 深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园",
"https://www.lejucaijing.com/news-7280398764920731411.html": "广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套 1.7w阅读 广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套 广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套",
"https://www.lejucaijing.com/news-7280383417282918151.html": "月1日北京住宅网签新房56套、二手房68套 5.2w阅读",
"https://www.lejucaijing.com/news-7280029718337484066.html": "首拍海淀朱房双子地块8家房企入场 3.9w阅读",
"https://www.lejucaijing.com/column-61.html": "北京建独栋别墅,懋源打了擦边球",
"https://www.lejucaijing.com/column-62.html": "家居K线 罗文强让“老手下”持股多家企业,质押昊晟陶瓷全部股权给农商行",
"https://www.lejucaijing.com/column-60.html": "物业K线 千亿应收高悬9家物企花式追账",
"https://www.lejucaijing.com/news-7280059266429023980.html": "金意陶何乾:锚定差异化,做有价值的创新",
"https://www.lejucaijing.com/news-7280060994201253596.html": "维盾门窗凌贤林:以科技创新为利刃,向更高目标奋勇攀登",
"https://www.lejucaijing.com/news-7280139850820024042.html": "赛力斯2024年新能源汽车销量超42万辆 同比增长",
"https://www.lejucaijing.com/news-7280112407346345715.html": "首开售罄16天后电建长安华曦府再拿证单套总价466万元起",
"https://www.lejucaijing.com/news-7280124924101588705.html": "保利嘉华天珺852套房源拿证8.8万+新盘、最小70㎡两居",
"https://www.lejucaijing.com/news-7280366957340849921.html": "保利发展转让南京学尚置业50%股权底价2053万元",
"https://www.lejucaijing.com/news-7280195376916395770.html": "亿港元!阿里清仓高鑫零售,德弘资本接手",
"https://www.lejucaijing.com/news-7280236887578178894.html": "居然智家王宁:原创艺术走进家庭将是大势所趋",
"https://www.lejucaijing.com/news-7280220183909300050.html": "东方雨虹总裁换人接任者杨浩成从工程部经理成长而来已工作27年",
"https://www.lejucaijing.com/news-7280236189570495821.html": "第四届“家文化中堂书画楹联展”暨“写春联送福字”活动亮相居然智家",
"https://www.lejucaijing.com/news-7280388821631039275.html": "中南集团2024年交付5.5套13个项目入围白名单",
"https://www.lejucaijing.com/news-7280387973291112234.html": "碧桂园最新发声已回笼资金超600亿2024年保交房38万套",
"https://www.lejucaijing.com/news-7280410467150525810.html": "东盛金材IPO年入6.58亿元,张盛田一家五口持股",
"https://www.lejucaijing.com/news-7280387711352633099.html": "行业遇冷,我乐家居大片首发暖到“家”了",
"https://www.lejucaijing.com/home/about": "关于乐居财经",
"https://www.lejucaijing.com/home/ustype=about_us": "联系我们",
"https://www.lejucaijing.com/home/ustype=join_us": "加入我们",
"https://www.lejucaijing.com/home/ustype=copyright": "版权声明",
"https://om.qq.com/userauth/index": "腾讯新闻",
"https://news.baidu.com/cip=119.57.38.62&logid=2385410307": "百度新闻",
"http://www.beian.gov.cn/portal/registersysteminforecordcode=11010502047973": "京公网安备 11010502047973号 京ICP备2021030296号"
},
"text": "* G\n\n* H\n\n* J\n\n* K\n\n* N\n\n* S\n\n* W\n\n* Z\n\n#### 历史搜索\n\n#### 热门搜索\n\n公告\n\n研报\n\n穿透表象看清本质。\n\n专注家居上市公司解析。\n\n专注物业上市公司解析。\n\n### 12月22日北京住宅网签新房184套、二手房180套\n\n_原创_ <{$news[\"createtime\"]|date_format:\"%Y-%m-%d %H:%M\"}> 乐居新媒体 徐迪 5.0w阅读 2024-12-23 10:11\n\n**乐居新媒体 徐迪** 北京市住建委数据显示12月22日北京新房网签307套期房213+现房94网签面积约2.6万平方米二手房网签185套网签面积1.65万平方米。\n\n其中新房住宅网签184套期房164+现房20网签面积2.17万平方米二手房住宅网签180套网签面积1.63万平方米。\n\n来源乐居新媒体\n\n作者徐迪\n\n相关标签\n\n重要提示本文仅代表作者个人观点并不代表乐居财经立场。 本文著作权归乐居财经所有。未经允许任何单位或个人不得在任何公开传播平台上使用本文内容经允许进行转载或引用时请注明来源。联系请发邮件至ljcj@leju.com或点击【联系客服[Ref_1]】\n\n#### 网友评论\n\n#### 相关推荐\n\n_原创_ 乐居新媒体 刚刚\n\n_原创_ 乐居新媒体 刚刚\n\n_原创_ 乐居新媒体 1小时前\n\n_原创_ 乐居财经 1小时前\n\n_原创_ 乐居财经 1小时前\n\n#### 最新文章推荐\n\n_原创_ 乐居新媒体 刚刚\n\n_原创_ 乐居新媒体 刚刚\n\n_原创_ 乐居财经 刚刚\n\n_原创_ 乐居新媒体 1小时前\n\n_原创_ 乐居财经 1小时前\n\n乐居财经APP\n\n官方声明\n 未经授权,不得复制、转载或以其他方式使用本网站的内容。乐居财经及授权的第三方信息提供者竭力确保数据准确可靠,但不保证数据绝对正确。\n\n友情链接\n\n©2017-2025 北京怡生乐居财经文化传媒有限公司 北京市朝阳区西大望路甲22号院1号楼1层101内3层S3-01房间756号 100016\n\n乐居财经\n\n物业K线\n\n见地\n\n地产K线\n\n进深\n\n研究院\n\n汽车K线\n\n家居K线\n\n物业英雄\n\n分享\n\n[Ref_2]",
"text_link_map": {
"Ref_1": "https://work.weixin.qq.com/kfid/kfc72fb606bc0ffff47",
"Ref_2": "https://www.lejucaijing.com/news-7276781538510567338.html"
}
}

View File

@ -0,0 +1,63 @@
{
"link_dict": {
"https://www.lejucaijing.com/channel-shendu/data_channel_id=6942722459234298840&sub_channel_name=预审ipo": "预审IPO",
"https://www.lejucaijing.com/channel-shendu/data_channel_id=6942722459234298840&sub_channel_name=地产k线": "地产K线",
"https://www.lejucaijing.com/channel-shendu/data_channel_id=6942722459234298840&sub_channel_name=家居k线": "家居K线",
"https://www.lejucaijing.com/channel-shendu/data_channel_id=6942722459234298840&sub_channel_name=物业k线": "物业K线",
"https://www.lejucaijing.com/channel-shendu/data_channel_id=6942722459234298840&sub_channel_name=资管k线": "资管K线",
"https://www.lejucaijing.com/channel-shendu/data_channel_id=6942722459234298840&sub_channel_name=研究院": "研究院",
"https://www.lejucaijing.com/channel-shendu/data_channel_id=6942722459234298840&sub_channel_name=物业英雄": "物业英雄",
"https://www.lejucaijing.com/channel-shendu/data_channel_id=6942722459234298840&sub_channel_name=工匠先锋": "工匠先锋",
"https://www.lejucaijing.com/channel-shanghai/data_channel_id=6848073394228390811&sub_channel_name=本地市场": "本地市场",
"https://www.lejucaijing.com/channel-shanghai/data_channel_id=6848073394228390811&sub_channel_name=公司动态": "公司动态",
"https://www.lejucaijing.com/channel-shanghai/data_channel_id=6848073394228390811&sub_channel_name=楼市行情": "楼市行情",
"https://www.lejucaijing.com/channel-shangye/data_channel_id=6486535174854634268&sub_channel_name=商业地产": "商业地产",
"https://www.lejucaijing.com/channel-shangye/data_channel_id=6486535174854634268&sub_channel_name=产业园区": "产业园区",
"https://www.lejucaijing.com/channel-shangye/data_channel_id=6486535174854634268&sub_channel_name=康养文旅": "康养文旅",
"https://www.lejucaijing.com/channel-shangye/data_channel_id=6486535174854634268&sub_channel_name=城市更新": "城市更新",
"https://m.rccaijing.com/channel-rcipo/": "IPO",
"https://www.lejucaijing.com/channel-shanghai/": "当前位置:上海",
"https://www.lejucaijing.com/search/indexwd=时代邻里": "时代邻里",
"https://www.lejucaijing.com/search/indexwd=海伦堡": "海伦堡",
"https://www.lejucaijing.com/search/indexwd=碧桂园": "碧桂园",
"https://www.lejucaijing.com/search/indexwd=物业k线": "物业K线",
"https://www.lejucaijing.com/search/indexwd=时代中国": "时代中国",
"https://www.lejucaijing.com/search/indexwd=融创中国": "融创中国",
"https://www.lejucaijing.com/search/indexwd=家居k线": "家居K线",
"https://www.lejucaijing.com/column-114.html": "w关注 乐居新媒体",
"https://www.lejucaijing.com/news-7280415329275802996.html": "内嵌阳台尺度收紧?金茂璞逸丰宜花池是这么来的 9167阅读 内嵌阳台尺度收紧?金茂璞逸丰宜花池是这么来的 内嵌阳台尺度收紧?金茂璞逸丰宜花池是这么来的",
"https://www.lejucaijing.com/news-7280412724021622645.html": "深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园 1.3w阅读 深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园 深圳光明再添新盘地铁13号线月亮站旁项目定名阅洺境花园",
"https://www.lejucaijing.com/news-7280398764920731411.html": "广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套 1.7w阅读 广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套 广州楼市2024年成绩单出炉二手成交首超一手连续3月破万套",
"https://www.lejucaijing.com/news-7280383417282918151.html": "月1日北京住宅网签新房56套、二手房68套 5.2w阅读",
"https://www.lejucaijing.com/news-7280029718337484066.html": "首拍海淀朱房双子地块8家房企入场 3.9w阅读",
"https://www.lejucaijing.com/column-61.html": "北京建独栋别墅,懋源打了擦边球",
"https://www.lejucaijing.com/column-62.html": "家居K线 罗文强让“老手下”持股多家企业,质押昊晟陶瓷全部股权给农商行",
"https://www.lejucaijing.com/column-60.html": "物业K线 千亿应收高悬9家物企花式追账",
"https://www.lejucaijing.com/news-7280059266429023980.html": "金意陶何乾:锚定差异化,做有价值的创新",
"https://www.lejucaijing.com/news-7280060994201253596.html": "维盾门窗凌贤林:以科技创新为利刃,向更高目标奋勇攀登",
"https://www.lejucaijing.com/news-7280139850820024042.html": "赛力斯2024年新能源汽车销量超42万辆 同比增长",
"https://www.lejucaijing.com/news-7280112407346345715.html": "首开售罄16天后电建长安华曦府再拿证单套总价466万元起",
"https://www.lejucaijing.com/news-7280124924101588705.html": "保利嘉华天珺852套房源拿证8.8万+新盘、最小70㎡两居",
"https://www.lejucaijing.com/news-7280366957340849921.html": "保利发展转让南京学尚置业50%股权底价2053万元",
"https://www.lejucaijing.com/news-7280195376916395770.html": "亿港元!阿里清仓高鑫零售,德弘资本接手",
"https://www.lejucaijing.com/news-7280236887578178894.html": "居然智家王宁:原创艺术走进家庭将是大势所趋",
"https://www.lejucaijing.com/news-7280220183909300050.html": "东方雨虹总裁换人接任者杨浩成从工程部经理成长而来已工作27年",
"https://www.lejucaijing.com/news-7280236189570495821.html": "第四届“家文化中堂书画楹联展”暨“写春联送福字”活动亮相居然智家",
"https://www.lejucaijing.com/news-7280388821631039275.html": "中南集团2024年交付5.5套13个项目入围白名单",
"https://www.lejucaijing.com/news-7280387973291112234.html": "碧桂园最新发声已回笼资金超600亿2024年保交房38万套",
"https://www.lejucaijing.com/news-7280410467150525810.html": "东盛金材IPO年入6.58亿元,张盛田一家五口持股",
"https://www.lejucaijing.com/news-7280387711352633099.html": "行业遇冷,我乐家居大片首发暖到“家”了",
"https://www.lejucaijing.com/home/about": "关于乐居财经",
"https://www.lejucaijing.com/home/ustype=about_us": "联系我们",
"https://www.lejucaijing.com/home/ustype=join_us": "加入我们",
"https://www.lejucaijing.com/home/ustype=copyright": "版权声明",
"https://om.qq.com/userauth/index": "腾讯新闻",
"https://news.baidu.com/cip=119.57.38.62&logid=2385410307": "百度新闻",
"http://www.beian.gov.cn/portal/registersysteminforecordcode=11010502047973": "京公网安备 11010502047973号 京ICP备2021030296号"
},
"text": "* G\n\n* H\n\n* J\n\n* K\n\n* N\n\n* S\n\n* W\n\n* Z\n\n#### 历史搜索\n\n#### 热门搜索\n\n公告\n\n研报\n\n穿透表象看清本质。\n\n专注家居上市公司解析。\n\n专注物业上市公司解析。\n\n### 12月22日北京住宅网签新房184套、二手房180套\n\n_原创_ <{$news[\"createtime\"]|date_format:\"%Y-%m-%d %H:%M\"}> 乐居新媒体 徐迪 5.0w阅读 2024-12-23 10:11\n\n**乐居新媒体 徐迪** 北京市住建委数据显示12月22日北京新房网签307套期房213+现房94网签面积约2.6万平方米二手房网签185套网签面积1.65万平方米。\n\n其中新房住宅网签184套期房164+现房20网签面积2.17万平方米二手房住宅网签180套网签面积1.63万平方米。\n\n来源乐居新媒体\n\n作者徐迪\n\n相关标签\n\n重要提示本文仅代表作者个人观点并不代表乐居财经立场。 本文著作权归乐居财经所有。未经允许任何单位或个人不得在任何公开传播平台上使用本文内容经允许进行转载或引用时请注明来源。联系请发邮件至ljcj@leju.com或点击【联系客服[Ref_1]】\n\n#### 网友评论\n\n#### 相关推荐\n\n_原创_ 乐居新媒体 刚刚\n\n_原创_ 乐居新媒体 刚刚\n\n_原创_ 乐居新媒体 1小时前\n\n_原创_ 乐居财经 1小时前\n\n_原创_ 乐居财经 1小时前\n\n#### 最新文章推荐\n\n_原创_ 乐居新媒体 刚刚\n\n_原创_ 乐居新媒体 刚刚\n\n_原创_ 乐居财经 刚刚\n\n_原创_ 乐居新媒体 1小时前\n\n_原创_ 乐居财经 1小时前\n\n乐居财经APP\n\n官方声明\n 未经授权,不得复制、转载或以其他方式使用本网站的内容。乐居财经及授权的第三方信息提供者竭力确保数据准确可靠,但不保证数据绝对正确。\n\n友情链接\n\n©2017-2025 北京怡生乐居财经文化传媒有限公司 北京市朝阳区西大望路甲22号院1号楼1层101内3层S3-01房间756号 100016\n\n乐居财经\n\n物业K线\n\n见地\n\n地产K线\n\n进深\n\n研究院\n\n汽车K线\n\n家居K线\n\n物业英雄\n\n分享\n\n[Ref_2]",
"text_link_map": {
"Ref_1": "https://work.weixin.qq.com/kfid/kfc72fb606bc0ffff47",
"Ref_2": "https://www.lejucaijing.com/news-7276781538510567338.html"
}
}

View File

@ -0,0 +1,5 @@
[{"focuspoint": "上海房地产新闻", "explanation": ""},
{"focuspoint": "北京房地产新闻", "explanation": ""},
{"focuspoint": "广州房地产新闻", "explanation": ""},
{"focuspoint": "深圳房地产新闻", "explanation": ""},
{"focuspoint": "杭州房地产新闻", "explanation": ""}]