惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
S
Secure Thoughts
V2EX - 技术
V2EX - 技术
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
O
OpenAI News
D
DataBreaches.Net
The Cloudflare Blog
L
LangChain Blog
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
The Register - Security
The Register - Security
MyScale Blog
MyScale Blog
Help Net Security
Help Net Security
Jina AI
Jina AI
T
The Blog of Author Tim Ferriss
T
The Exploit Database - CXSecurity.com
D
Darknet – Hacking Tools, Hacker News & Cyber Security
博客园 - 叶小钗
The Last Watchdog
The Last Watchdog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
www.infosecurity-magazine.com
www.infosecurity-magazine.com
TaoSecurity Blog
TaoSecurity Blog
博客园 - 司徒正美
aimingoo的专栏
aimingoo的专栏
C
Cyber Attacks, Cyber Crime and Cyber Security
A
Arctic Wolf
T
Tenable Blog
Know Your Adversary
Know Your Adversary
Google DeepMind News
Google DeepMind News
量子位
The Hacker News
The Hacker News
AWS News Blog
AWS News Blog
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
Hacker News: Ask HN
Hacker News: Ask HN
Scott Helme
Scott Helme
小众软件
小众软件
Recent Commits to openclaw:main
Recent Commits to openclaw:main
T
Threat Research - Cisco Blogs
G
GRAHAM CLULEY
H
Heimdal Security Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
博客园_首页
B
Blog
GbyAI
GbyAI
P
Palo Alto Networks Blog
美团技术团队
Hacker News - Newest:
Hacker News - Newest: "LLM"
博客园 - Franky

Star History

Star History Monthly 🌟 Skills (March 2026) Star History Monthly 🌟 Clawflare (February 2026) Star History Monthly 🌟 Embedded Web Editor (January 2026) star-history.com in 2025 Star History Monthly 🌟 React (December 2025) Star History Monthly 🌟 Agent SDK/Framework (November 2025) Star History Starlet 🌟 NPC Shell Star History Monthly 🌟 Declarative (October 2025) Star History Newsletter 🌟 Star History Newsletter 🌟 Star History Newsletter 🌟 IDE for Vibe Coding Star History Newsletter 🌟 Browser for AI Agent Star History Newsletter 🌟 Agent Protocol Star History Newsletter 🌟 AI Verse Star History Newsletter 🌟 MCP Server Star History Newsletter 🌟 Fun AI Generators Star History Weekly Star History Weekly Star History Weekly
Star History Weekly
2024-05-25 · via Star History

Hi and welcome to Star History Weekly #23!

If you are new, it's Mila here. Each week, we curate some open-source news and take you to explore an open-source project, the Starlets. Meanwhile, we share fascinating GitHub repos daily over at @StarHistoryHQ, so make sure to follow us if you haven't already.

In Issue #23, we are checking out options for open-source AI web scraping tools.

Web scraping, in simpler words, is to scrape data and content from websites, the data is then saved in the form of XML, Excel, or SQL. On top of lead generation, competitor monitoring, market research, web scrapers can also be used to automate your data collection process.

With the help of AI web scraping tools, the limitations associated with manual or purely code-based scraping tools can be addressed: dynamic or unstructured websites can easily be handled, all without human intervention.

Here, we present a few open-source AI web scraping tools to choose from.

Reader

Reader is an offering by Jina AI. It can convert any URL to an LLM-friendly input when you append a simple https://r.jina.ai/, and you can get structured output for your agent and RAG systems at no cost.

Since its first release just this past month (April 15th, to be exact), they have served over 18M requests from the world, and the project itself has already gained 4.5K stargazers.

Aside from scraping any URL, Jina just released another feature where you can use https://s.jina.ai/YOUR_SEARCH_QUERY to search for up-to-date knowledge on the Internet. The result includes a title, an LLM-friendly markdown, and a URL that attributes the source.

Together, you can construct a comprehensive solution for LLMs, agents, and RAG systems.

LLM Scraper

LLM Scraper is a TypeScript library that can convert any webpage into structured data using LLMs. Essentially, it uses function calling to convert pages to structured data.

Similar to Reader, it was open-sourced just last month. It currently supports Local (GGUF), OpenAI, Groq chat models. The author is working on supporting local LLMs via llama.cpp to lower the cost of using LLMs for web scraping.

Firecrawl

Firecrawl is an API service that can convert an URL into a clean, well-formatted markdown. This format is great for LLM applications, offering a structured yet flexible way to represent web content.

This tool is tailored for LLM engineers, data scientists, AI researchers, and developers looking to harness web data for training machine learning models, market research, and content aggregation. It simplifies the data preparation process, allowing professionals to focus on insights and model development, and you can self-host it to your own taste.

ScrapeGraphAI

ScrapeGraphAI is a Python library that uses LLM and direct graph logic to create scraping pipelines for websites and local documents (XML, HTML, JSON, etc.). With ScrapeGraphAI, you get to specify exactly what sort of data you want to extract.

ScrapegraphAI leverages the power of LLMs, and can thus adapt to changes in website structures, reducing the need for constant developer intervention. This flexibility ensures that scrapers remain functional even when website layouts change.

The LLMs it currently supports include GPT, Gemini, Groq, Azure, Hugging Face, as well as local models.

LangChain

What is LangChain not capable of? Not web scraping.

One of web scraping's biggest challenges is the changing nature of modern websites' layouts and content, which requires modifying scraping scripts to accommodate the changes, LangChain also utilizes function (e.g., OpenAI) with an extraction chain, so that you don't have to change your code constantly when websites change.

If you are doing research and want to scrape only the news article's name and summary from The Wall Street Journal website, it's got you covered.

To Sum Up

Of course, there is no one-size-fits-all web scraper. Do you prefer old-school traditional web scrapers or LLM-empowered ones?