基于AI的Python爬虫
Go to file
2025-01-06 02:36:05 +01:00
.github fix: upgrade twine 2025-01-02 19:06:27 +01:00
cookbook docs: added official cookbook reference 2024-12-23 12:09:01 +01:00
docs docs: fixed missing import 2025-01-02 15:20:49 +01:00
examples chore: pandas package is now optional 2025-01-06 02:36:05 +01:00
scrapegraphai chore: pandas package is now optional 2025-01-06 02:36:05 +01:00
tests chore: pandas package is now optional 2025-01-06 02:36:05 +01:00
.gitattributes Initial commit 2024-01-27 17:54:23 +01:00
.gitignore feat: refactoring of rag node 2024-06-04 12:01:21 +02:00
.releaserc.yml ci: add ci workflow to manage lib release with semantic-release 2024-04-25 12:03:28 +02:00
CHANGELOG.md ci(release): 1.34.0-beta.15 [skip ci] 2025-01-03 13:03:44 +00:00
citation.cff add quotation file 2024-03-04 10:36:31 +01:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2024-02-05 10:20:57 +01:00
CONTRIBUTING.md Update CONTRIBUTING.md 2024-09-18 10:06:22 +02:00
docker-compose.yml docker compose working ollama implementation 2024-04-07 11:08:08 +02:00
Dockerfile Clean up cache files to reduce Docker image size 2024-11-15 03:19:48 +08:00
funding.json Update funding.json 2024-10-31 10:36:11 +01:00
LICENSE add new node 2024-02-17 21:42:43 +01:00
pyproject.toml chore: pandas package is now optional 2025-01-06 02:36:05 +01:00
README.md fix: better playwright installation handling 2025-01-06 02:01:17 +01:00
readthedocs.yml changed the read the docs command 2024-02-15 08:58:03 +01:00
requirements-dev.lock Pre/beta (#835) 2024-12-02 09:39:26 +01:00
requirements-dev.txt Add the AbstractGraph run_safe_async and its test 2024-12-21 09:53:56 -03:00
requirements.lock Pre/beta (#835) 2024-12-02 09:39:26 +01:00
requirements.txt feat: add conditional node structure to the smart_scraper_graph and implemented a structured way to check condition 2024-10-15 14:23:02 +03:00
SECURITY.md feat: add claude documentation 2024-05-03 17:21:26 +02:00
uv.lock fix: better playwright installation handling 2025-01-06 02:01:17 +01:00

🕷️ ScrapeGraphAI: You Only Scrape Once

English | 中文 | 日本語 | 한국어 | Русский | Türkçe

Downloads linting: pylint Pylint CodeQL License: MIT

VinciGit00%2FScrapegraph-ai | Trendshift

ScrapeGraphAI is a web scraping python library that uses LLM and direct graph logic to create scraping pipelines for websites and local documents (XML, HTML, JSON, Markdown, etc.).

Just say which information you want to extract and the library will do it for you!

ScrapeGraphAI Hero

🚀 Quick install

The reference page for Scrapegraph-ai is available on the official page of PyPI: pypi.

pip install scrapegraphai

# IMPORTANT (to fetch webpage content)
playwright install

Note: it is recommended to install the library in a virtual environment to avoid conflicts with other libraries 🐱

Optional Dependencies Additional dependecies can be added while installing the library:
  • More Language Models: additional language models are installed, such as Fireworks, Groq, Anthropic, Hugging Face, and Nvidia AI Endpoints.

    This group allows you to use additional language models like Fireworks, Groq, Anthropic, Together AI, Hugging Face, and Nvidia AI Endpoints.

    pip install scrapegraphai[other-language-models]
    
  • Semantic Options: this group includes tools for advanced semantic processing, such as Graphviz.

    pip install scrapegraphai[more-semantic-options]
    
  • Browsers Options: this group includes additional browser management tools/services, such as Browserbase.

    pip install scrapegraphai[more-browser-options]
    

💻 Usage

There are multiple standard scraping pipelines that can be used to extract information from a website (or local file).

The most common one is the SmartScraperGraph, which extracts information from a single page given a user prompt and a source URL.

from scrapegraphai.graphs import SmartScraperGraph

# Define the configuration for the scraping pipeline
graph_config = {
    "llm": {
        "api_key": "YOUR_OPENAI_API_KEY",
        "model": "openai/gpt-4o-mini",
    },
    "verbose": True,
    "headless": False,
}

# Create the SmartScraperGraph instance
smart_scraper_graph = SmartScraperGraph(
    prompt="Extract useful information from the webpage, including a description of what the company does, founders and social media links",
    source="https://scrapegraphai.com/",
    config=graph_config
)

# Run the pipeline
result = smart_scraper_graph.run()

import json
print(json.dumps(result, indent=4))

The output will be a dictionary like the following:

{
    "description": "ScrapeGraphAI transforms websites into clean, organized data for AI agents and data analytics. It offers an AI-powered API for effortless and cost-effective data extraction.",
    "founders": [
        {
            "name": "Marco Perini",
            "role": "Founder & Technical Lead",
            "linkedin": "https://www.linkedin.com/in/perinim/"
        },
        {
            "name": "Marco Vinciguerra",
            "role": "Founder & Software Engineer",
            "linkedin": "https://www.linkedin.com/in/marco-vinciguerra-7ba365242/"
        },
        {
            "name": "Lorenzo Padoan",
            "role": "Founder & Product Engineer",
            "linkedin": "https://www.linkedin.com/in/lorenzo-padoan-4521a2154/"
        }
    ],
    "social_media_links": {
        "linkedin": "https://www.linkedin.com/company/101881123",
        "twitter": "https://x.com/scrapegraphai",
        "github": "https://github.com/ScrapeGraphAI/Scrapegraph-ai"
    }
}

There are other pipelines that can be used to extract information from multiple pages, generate Python scripts, or even generate audio files.

Pipeline Name Description
SmartScraperGraph Single-page scraper that only needs a user prompt and an input source.
SearchGraph Multi-page scraper that extracts information from the top n search results of a search engine.
SpeechGraph Single-page scraper that extracts information from a website and generates an audio file.
ScriptCreatorGraph Single-page scraper that extracts information from a website and generates a Python script.
SmartScraperMultiGraph Multi-page scraper that extracts information from multiple pages given a single prompt and a list of sources.
ScriptCreatorMultiGraph Multi-page scraper that generates a Python script for extracting information from multiple pages and sources.

For each of these graphs there is the multi version. It allows to make calls of the LLM in parallel.

It is possible to use different LLM through APIs, such as OpenAI, Groq, Azure and Gemini, or local models using Ollama.

Remember to have Ollama installed and download the models using the ollama pull command, if you want to use local models.

📖 Documentation

Open In Colab

The documentation for ScrapeGraphAI can be found here. Check out also the Docusaurus here.

🔗 ScrapeGraph API & SDKs

If you are looking for a quick solution to integrate ScrapeGraph in your system, check out our powerful API here!

ScrapeGraph API Banner

We offer SDKs in both Python and Node.js, making it easy to integrate into your projects. Check them out below:

SDK Language GitHub Link
Python SDK Python scrapegraph-py
Node.js SDK Node.js scrapegraph-js

The Official API Documentation can be found here.

🏆 Sponsors

🤝 Contributing

Feel free to contribute and join our Discord server to discuss with us improvements and give us suggestions!

Please see the contributing guidelines.

My Skills My Skills My Skills

📈 Telemetry

We collect anonymous usage metrics to enhance our package's quality and user experience. The data helps us prioritize improvements and ensure compatibility. If you wish to opt-out, set the environment variable SCRAPEGRAPHAI_TELEMETRY_ENABLED=false. For more information, please refer to the documentation here.

❤️ Contributors

Contributors

🎓 Citations

If you have used our library for research purposes please quote us with the following reference:

  @misc{scrapegraph-ai,
    author = {Marco Perini, Lorenzo Padoan, Marco Vinciguerra},
    title = {Scrapegraph-ai},
    year = {2024},
    url = {https://github.com/VinciGit00/Scrapegraph-ai},
    note = {A Python library for scraping leveraging large language models}
  }

Authors

Authors_logos

Contact Info
Marco Vinciguerra Linkedin Badge
Marco Perini Linkedin Badge
Lorenzo Padoan Linkedin Badge

📜 License

ScrapeGraphAI is licensed under the MIT License. See the LICENSE file for more information.

Acknowledgements

  • We would like to thank all the contributors to the project and the open-source community for their support.
  • ScrapeGraphAI is meant to be used for data exploration and research purposes only. We are not responsible for any misuse of the library.

Made with ❤️ by ScrapeGraph AI