微信扫码
添加专属顾问
掌握LangChain与网络爬虫的结合,提升LLM数据获取能力。 核心内容: 1. 网络爬虫在LLM数据增强中的作用和优势 2. LangChain中使用爬取数据的挑战及解决方案 3. 实操教程:构建LangChain网络爬虫,从CNN文章提取内容并生成摘要
用网络爬虫赋能LLM应用
在LangChain中使用爬取数据的优势与挑战
· 反爬机制:如验证码(CAPTCHA)和动态网页。
· 合规性与效率:维护合规且高效的爬虫耗时且技术复杂。
Bright Data的Web Scraper API提供了预配置的爬取端点,支持100+网站,通过IP轮换、验证码自动破解和JavaScript渲染等功能,实现高效、可靠的数据收集。
分步教程:用Bright Data实现LangChain网络爬虫
我们将在这里构建的示例是一个简单的起点,但使用LangChain可以轻松扩展附加的特性和分析。例如,您甚至可以基于SERP数据创建一个RAG聊天机器人。
按照下面的步骤开始吧!
mkdir langchain_scraping
cd langchain_scraping python3 -m venv env
注意:在Windows上,使用python而不是python3。
现在,在您最喜欢的Python IDE中打开项目目录。PyCharm社区版或带有Python扩展的Visual Studio Code就可以了。
在langchain_scraping中,添加一个script.py文件。这是一个空Python脚本,但它很快就会包含LangChain的网页抓取逻辑。
在IDE的终端中,使用下面的命令激活虚拟环境:
./env/bin/activate
env/Scripts/activate
Python LangChain抽取项目依赖于以下库:
· python-dotenv:从.env文件中加载环境变量。它将用于管理敏感信息,如Bright Data和OpenAI凭据。
· requests:执行HTTP请求以与Bright Data的Web Scraper API交互。
· langchain_openai:通过openai SDK对OpenAI的LangChain集成。
在激活的虚拟环境中,用以下命令安装所有依赖项:
pip install python-dotenv requests langchain-community
在scripts.py中,添加以下导入:
from dotenv import load_dotenv import os
注意:os来自Python标准库,所以你不需要安装它。
然后,在项目文件夹中创建一个.env文件来存储所有凭据。下面是您当前的项目文件结构应该是什么样子的:
在脚本.py中用下面一行指示python-dotenv从.env中加载环境变量:
load_dotenv()
os.environ.get("")由于目标站点是CNN.com,请在搜索输入中输入“cnn”,然后选择“CNN新闻-按URL分类”抽取器:
在当前页面上,点击"Create token"按钮,生成一个Bright Data API token:
这将打开以下模式,您可以在其中配置token的详细信息:
在您的.env文件中,将此信息存储如下:
BRIGHT_DATA_API_TOKEN=""
你的CNN新闻Web Scraper API页面现在看起来应该类似于下面的示例:
我们开始吧!配置您的Web Scraper API请求并使用它。
Web Scraper API会在前面看到的页面上启动根据您的需求配置的Web Scraper任务。然后,该过程生成包含刮取数据的快照。
下面是Web Scraper API抽取过程的工作概述:
· 您向Web Scraper API发出请求,通过URL提供要抓取的页面。
· 将启动一个网页抓取任务,从这些URL中检索和解析数据。
· 一旦任务完成,您将反复查询快照检索API以获取结果数据。
CNN Web Scraper API的POST端点是:
"https://api.brightdata.com/datasets/v3/trigger?dataset_id=gd_lycz8783197ch4wvwg&include_errors=true"
{"snapshot_id":""}使用此响应中的snapshot_id,您需要查询以下端点以检索数据:
https://api.brightdata.com/datasets/v3/snapshot/?format=json
任务完成后,端点将以以下格式返回数据:
[ { "input": { "url": "https://www.cnn.com/2024/12/16/weather/white-christmas-forecast-climate/", "keyword": "" }, "id": "https://www.cnn.com/2024/12/16/weather/white-christmas-forecast-climate/index.html", "url": "https://www.cnn.com/2024/12/16/weather/white-christmas-forecast-climate/index.html", "author": "Mary Gilbert", "headline": "White Christmas forecast: Will you be left dreaming of snow or reveling in it?", "topics": [ "weather" ], "publication_date": "2024-12-16T13:20:52.800Z", "updated_last": "2024-12-16T13:20:52.800Z", "content": "Christmas is approaching nearly as fast as Santa’s sleigh, but almost anyone in the United States fantasizing about a movie-worthy white Christmas might need to keep dreaming. Early forecasts indicate temperatures could max out around 10 to 15 degrees above normal for much of the country on Christmas Day. [omitted for brevity...]", "videos": null, "images": [ "omitted for brevity..." ], "related_articles": [], "keyword": null, "timestamp": "2024-12-16T14:18:14.101Z" }]要实现这一点,首先从.env读取env并初始化端点URL常量:
BRIGHT_DATA_API_TOKEN = os.environ.get("BRIGHT_DATA_API_TOKEN") BRIGHT_DATA_CNN_WEB_SCRAPER_API_URL = "https://api.brightdata.com/datasets/v3/trigger?dataset_id=gd_lycz8783197ch4wvwg&include_errors=true"def get_scraped_data(url): # Authorization headers headers = { "Authorization": f"Bearer {BRIGHT_DATA_API_TOKEN}" } # Web Scraper API payload data = [{ "url": url }] # Making the POST request to the Bright Data Web Scraper API response = requests.post(BRIGHT_DATA_CNN_WEB_SCRAPER_API_URL, headers=headers, json=data) if response.status_code == 200: response_data = response.json() snapshot_id = response_data.get("snapshot_id") if snapshot_id: # Iterate until the snapshot is ready snapshot_url = f"https://api.brightdata.com/datasets/v3/snapshot/{snapshot_id}?format=json" while True: snapshot_response = requests.get(snapshot_url, headers=headers) if snapshot_response.status_code == 200: # Parse and return the snapshot data snapshot_response_data = snapshot_response.json() return snapshot_response_data[0].get("content") elif snapshot_response.status_code == 202: print("Snapshot not ready yet. Retrying in 10 seconds...") time.sleep(10) # Wait for 10 seconds before retrying else: print(f"Failed to retrieve snapshot. Status code: {snapshot_response.status_code}") print(snapshot_response.text) break else: print("Snapshot ID not found in the response") else: print(f"Error: {response.status_code}")print(response.text)import requestsimport time
步骤6:准备使用Open AI模型
这个示例依赖OpenAI模型在LangChain中集成LLM。要使用这些模型,您必须在环境变量中配置OpenAI API密钥。
默认情况下,langchain_openai会自动从OPENAI_API_KEY环境变量读取OpenAI API密钥。要设置此功能,请在你的.env文件中添加以下行:
OPENAI_API_KEY=""
太棒了!是时候在LangChain抽取脚本中使用OpenAI模型了。
步骤7:生成LLM Prompt
定义一个函数,该函数取出抽取的数据,并生成一个Prompt以获取文章摘要:
def create_summary_prompt(content, words=100): return f"""Summarize the following content in less than {words} words. CONTENT: '{content}' """在当前示例中,完整的Prompt将是:Summarize the following content in less than 100 words.CONTENT:'Christmas is approaching nearly as fast as Santa’s sleigh, but almost anyone in the United States fantasizing about a movie-worthy white Christmas might need to keep dreaming. Early forecasts indicate temperatures could max out around 10 to 15 degrees above normal for much of the country on Christmas Day. It’s a forecast reminiscent of last Christmas for many, which came amid the warmest winter on record in the US. But the country could be split in two by warmth and cold in the run up to the big day. [omitted for brevity...]'这足以说明Prompt效果很好!
步骤8:集成OpenAI
首先,调用get_scraped_data()函数从文章页面中检索内容:
article_url = "https://www.cnn.com/2024/12/16/weather/white-christmas-forecast-climate/"scraped_data = get_scraped_data(article_url)
if scraped_data is not None:prompt = create_summary_prompt(scraped_data)
model = ChatOpenAI(model="gpt-4o-mini")response = model.invoke(prompt)
from langchain_openai import ChatOpenAI
summary = response.content
步骤9:导出AI处理的数据
现在,您只需通过LangChain将所选AI模型生成的数据导出为人类可阅读的格式,例如JSON文件。
为此,用您想要的数据初始化字典。然后,导出,然后将其保存为JSON文件,如下图:
export_data = { "url": article_url, "summary": summary}file_name = "summary.json"with open(file_name, "w") as file: json.dump(export_data, file, indent=4)import json
步骤10:添加日志
使用Web Scraping AI和ChatGPT分析进行抓取过程可能需要一些时间。因此,一个好的做法是包含日志来跟踪脚本的进度。
可以通过在脚本的关键步骤中添加print()语句来实现这一点,如下所示:
article_url = "https://www.cnn.com/2024/12/16/weather/white-christmas-forecast-climate/"print(f"Scraping data from '{article_url}'...")scraped_data = get_scraped_data(article_url)if scraped_data is not None: print("Data successfully scraped, creating summary prompt") prompt = create_summary_prompt(scraped_data) # Ask ChatGPT to perform the task specified in the prompt print("Sending prompt to ChatGPT for summarization") model = ChatOpenAI(model="gpt-4o-mini") response = model.invoke(prompt) # Get the AI result summary = response.content print("Received summary from ChatGPT") # Export the produced data to JSON export_data = { "url": article_url, "summary": summary } print("Exporting data to JSON") # Write the output dictionary to JSON file file_name = "summary.json" with open(file_name, "w") as file: json.dump(export_data, file, indent=4) print(f"Data exported to '${file_name}'")else: print("Scraping failed")步骤11:
最终的script.py文件应该包含:
from dotenv import load_dotenvimport osimport requestsimport timefrom langchain_openai import ChatOpenAIimport json load_dotenv()BRIGHT_DATA_API_TOKEN = os.environ.get("BRIGHT_DATA_API_TOKEN")BRIGHT_DATA_CNN_WEB_SCRAPER_API_URL = "https://api.brightdata.com/datasets/v3/trigger?dataset_id=gd_lycz8783197ch4wvwg&include_errors=true" def get_scraped_data(url): # Authorization headers headers = { "Authorization": f"Bearer {BRIGHT_DATA_API_TOKEN}" } # Web Scraper API payload data = [{ "url": url }] # Making the POST request to the Bright Data Web Scraper API response = requests.post(BRIGHT_DATA_CNN_WEB_SCRAPER_API_URL, headers=headers, json=data) if response.status_code == 200: response_data = response.json() snapshot_id = response_data.get("snapshot_id") if snapshot_id: # Iterate until the snapshot is ready snapshot_url = f"https://api.brightdata.com/datasets/v3/snapshot/{snapshot_id}?format=json" while True: snapshot_response = requests.get(snapshot_url, headers=headers) if snapshot_response.status_code == 200: # Parse and return the snapshot data snapshot_response_data = snapshot_response.json() return snapshot_response_data[0].get("content") elif snapshot_response.status_code == 202: print("Snapshot not ready yet. Retrying in 10 seconds...") time.sleep(10) # Wait for 10 seconds before retrying else: print(f"Failed to retrieve snapshot. Status code: {snapshot_response.status_code}") print(snapshot_response.text) break else: print("Snapshot ID not found in the response") else: print(f"Error: {response.status_code}") print(response.text)def create_summary_prompt(content, words=100): return f"""Summarize the following content in less than {words} words. CONTENT: '{content}' """# Retrieve the content from the given web pagearticle_url = "https://www.cnn.com/2024/12/16/weather/white-christmas-forecast-climate/"scraped_data = get_scraped_data(article_url)# Ask ChatGPT to perform the task specified in the promptprompt = create_summary_prompt(scraped_data)model = ChatOpenAI(model="gpt-4o-mini")response = model.invoke(prompt)# Get the AI resultsummary = response.content # Export the produced data to JSONexport_data = { "url": article_url, "summary": summary} # Write dictionary to JSON filewith open("summary.json", "w") as file: json.dump(export_data, file, indent=4)用以下命令验证它是否有效:
python3 script.py
python script.py
终端中的输出应该接近这个:
Scraping data from 'https://www.cnn.com/2024/12/16/weather/white-christmas-forecast-climate/'...Snapshot not ready yet. Retrying in 10 seconds...Data successfully scraped, creating summary promptSending prompt to ChatGPT for summarizationReceived summary from ChatGPTExporting data to JSONData exported to 'summary.json'打开项目目录中出现的open.json文件,你应该会看到如下内容:{ "url": "https://www.cnn.com/2024/12/16/weather/white-christmas-forecast-climate/", "summary": "As Christmas approaches, forecasts indicate temperatures in the US may be 10 to 15 degrees above normal, continuing a trend from last year\u2019s warm winter. The western US will likely remain warm, while the East experiences colder conditions leading up to Christmas. Some areas may see a mix of rain and snow, but a true \"white Christmas\" requires at least an inch of snow on the ground. Historically, cities like Minneapolis and Burlington have the best chances for snow, while places like New York City and Atlanta have significantly lower probabilities."}结论
这种方法的主要挑战包括:
· 页面结构频繁变动
· 反爬机制复杂
· 大规模数据抓取成本高
Bright Data的Web Scraper API提供了从主要网站提取数据的无缝解决方案,轻松克服了这些挑战。这使其成为支持RAG应用程序和其他LangChain支持的解决方案的宝贵工具。
53AI,企业落地大模型首选服务商
产品:场景落地咨询+大模型应用平台+行业解决方案
承诺:免费POC验证,效果达标后再合作。零风险落地应用大模型,已交付160+中大型企业
2026-07-01
LangGraph Runtime 是什么?一文讲清Runtime与Context的作用与用法!
2026-06-26
拆解Agent Harness的11大核心组件与工程实践(附下载)
2026-06-05
让 Agent 快速上生产:基于 OceanBase 和 LangChain 打造的智能体系统解决方案发布
2026-05-19
90% 的 Agent 失败,不是框架不行,而是卡在 5 个工程问题
2026-05-14
用两行代码将 AgentRun 集成到你的应用
2026-05-06
LangChain 深度智能体(Deep Agents)入门
2026-04-19
万字讲透Agent Harness的十二大模块
2026-04-08
同一个模型,换个Harness排名跳了25位:智能体基础设施完全解剖
2026-04-19
2026-04-08
2026-05-06
2026-05-19
2026-05-14
2026-06-05
2026-06-26
2026-07-01
2026-03-26
2025-11-03
2025-10-29
2025-07-14
2025-07-13
2025-07-05
2025-06-26
2025-06-13
欢迎您使用【53AI 官方网站】(以下简称“本网站”或“我们”)。本《会员服务协议》(以下简称“本协议”)是您(以下简称“会员”或“用户”)与【深圳市博思协创网络科技有限公司】之间关于注册、登录及使用本网站会员服务所订立的法律协议。
在您注册或登录前,请务必审慎阅读、充分理解各条款内容,特别是免除或限制责任的条款、知识产权条款、争议解决条款等。此类条款将以加粗形式提示您注意。 当您通过微信公众号授权、手机验证码验证或其他方式成功登录本网站时,即视为您已完全理解并同意接受本协议的全部内容。
一、 定义
本网站:指由【深圳市博思协创网络科技有限公司】运营的,域名为【53ai.com】的网站及相关移动端页面。
会员服务:指本网站向注册会员提供的知识库文章查阅、内容检索及其他相关增值服务。
知识库内容:指本网站发布的包括但不限于文字、图表、数据、研究报告、行业分析等数字化内容资源。
二、 账号注册与登录
登录方式:本网站支持以下登录方式,您可根据实际情况选择:
微信公众号授权登录:您同意将您的微信OpenID信息授权给本网站,用于创建或关联会员账号。
手机验证码登录:您需提供真实有效的手机号码,并通过短信验证码完成身份验证与登录/注册。
账号安全:您的账号仅限您本人使用,禁止赠与、借用、租用、转让或售卖。因您保管不善导致的账号被盗、密码泄露等损失,由您自行承担。
实名认证:根据相关法律法规要求,我们可能要求您在特定功能下完成实名认证。如您拒绝提供,可能无法使用部分或全部服务。
未成年人保护:若您未满18周岁,请在法定监护人的陪同下阅读本协议,并在征得监护人同意后使用本服务。
三、 服务内容与规范
知识库查阅权限:会员登录后,有权按照其会员等级对应的权限范围,在线浏览、检索本网站知识库中的相关文章及内容。
服务变更:我们有权根据业务发展需要,调整、变更或终止部分服务内容,并将以网站公告、公众号消息等方式提前通知。
禁止行为:您在使用服务时不得实施以下行为:
利用技术手段批量爬取、下载、转存知识库内容;
将知识库内容用于商业目的或未经授权地向第三方传播;
干扰本网站正常运行或侵犯其他用户合法权益;
发布违法违规信息或从事违反公序良俗的活动。
四、 知识产权声明
权利归属:本网站知识库中的排版设计、软件代码等内容的知识产权均归【公司全称】或原权利人所有,受《中华人民共和国著作权法》等法律保护。
有限许可:本网站授予会员一项非独占、不可转让、不可转授权的普通许可,仅限于个人学习、研究之目的在线查阅知识库内容。
侵权追责:未经书面许可,任何单位或个人不得以任何形式复制、转载、摘编、镜像、汇编或以其他方式使用上述内容。一经发现,我们保留追究其法律责任的权利。
五、 个人信息保护
我们重视对您个人信息的保护。关于我们如何收集、使用、存储和保护您的个人信息,请单独阅读 《隐私政策》。
您通过微信公众号授权或手机号验证所提供的信息,我们将严格按照《个人信息保护法》的规定处理,仅用于身份识别、服务提供及安全验证等必要用途。
您可以随时通过网站设置或联系客服行使查阅、更正、删除个人信息及撤回授权同意的权利。
六、 免责声明
内容准确性:知识库内容仅供参考,不构成专业建议。我们不对其完整性、准确性、时效性作任何明示或暗示的保证,您应自行判断并承担使用风险。
不可抗力:因自然灾害、政策法规变化、网络故障、第三方平台接口异常(如微信接口维护、运营商短信通道故障)等不可抗力导致的服务中断或延迟,我们不承担违约责任。
第三方链接:本网站可能包含指向第三方网站的链接,该等网站的内容和服务不受我们控制,请您自行甄别风险。
七、 违约责任
如您违反本协议约定,我们有权视情节采取警告、限制功能、暂停服务、注销账号等措施,并保留要求赔偿损失的权利。
如因您的违约行为导致我们遭受行政处罚、第三方索赔或商誉损失,您应承担全部赔偿责任(包括但不限于罚款、赔偿金、律师费、公证费等)。
八、 法律适用与争议解决
本协议的订立、执行和解释均适用中华人民共和国大陆地区法律。
因本协议产生的或与本协议有关的任何争议,双方应友好协商解决;协商不成的,任何一方均可向【公司所在地】有管辖权的人民法院提起诉讼。
九、 其他
本协议构成双方就本服务达成的完整协议,取代此前任何口头或书面约定。
本协议任一条款被认定为无效或不可执行的,不影响其他条款的效力。
我们对本协议享有最终解释权,并在法律允许的范围内保留随时修改的权利。修改后的协议一经公布即生效,继续使用服务即视为同意修订内容。