Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (16.3%) to scientific vocabulary
Last synced: 6 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: rav-d
  • License: mit
  • Language: Python
  • Default Branch: main
  • Size: 8.03 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created over 1 year ago · Last pushed over 1 year ago
Metadata Files
Readme Changelog Contributing License Code of conduct Citation Security

README.md

🕷️ ScrapeGraphAI: You Only Scrape Once

English | 中文 | 日本語 | 한국어 | Русский

Downloads linting: pylint Pylint CodeQL License: MIT

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.

```bash pip install scrapegraphai

playwright install ```

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

💻 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.

```python import json from scrapegraphai.graphs import SmartScraperGraph

Define the configuration for the scraping pipeline

graphconfig = { "llm": { "apikey": "YOUROPENAIAPIKEY", "model": "gpt-4o-mini", }, "verbose": True, "headless": False, }

Create the SmartScraperGraph instance

smartscrapergraph = SmartScraperGraph( prompt="Find some information about what does the company do, the name and a contact email.", source="https://scrapegraphai.com/", config=graph_config )

Run the pipeline

result = smartscrapergraph.run() print(json.dumps(result, indent=4)) ```

The output will be a dictionary like the following:

python { "company": "ScrapeGraphAI", "name": "ScrapeGraphAI Extracting content from websites and local documents using LLM", "contact_email": "contact@scrapegraphai.com" }

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. |

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.

🔍 Demo

Official streamlit demo:

My Skills

Try it directly on the web using Google Colab:

Open In Colab

📖 Documentation

The documentation for ScrapeGraphAI can be found here.

Check out also the Docusaurus here.

🤝 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

📈 Roadmap

We are working on the following features! If you are interested in collaborating right-click on the feature and open in a new tab to file a PR. If you have doubts and wanna discuss them with us, just contact us on discord or open a Discussion here on Github!

```mermaid %%{init: {'theme': 'base', 'themeVariables': { 'primaryColor': '#5C4B9B', 'edgeLabelBackground':'#ffffff', 'tertiaryColor': '#ffffff', 'primaryBorderColor': '#5C4B9B', 'fontFamily': 'Arial', 'fontSize': '16px', 'textColor': '#5C4B9B' }}}%% graph LR A[DeepSearch Graph] --> F[Use Existing Chromium Instances] F --> B[Page Caching] B --> C[Screenshot Scraping] C --> D[Handle Dynamic Content] D --> E[New Webdrivers]

style A fill:#ffffff,stroke:#5C4B9B,stroke-width:2px,rx:10,ry:10
style F fill:#ffffff,stroke:#5C4B9B,stroke-width:2px,rx:10,ry:10
style B fill:#ffffff,stroke:#5C4B9B,stroke-width:2px,rx:10,ry:10
style C fill:#ffffff,stroke:#5C4B9B,stroke-width:2px,rx:10,ry:10
style D fill:#ffffff,stroke:#5C4B9B,stroke-width:2px,rx:10,ry:10
style E fill:#ffffff,stroke:#5C4B9B,stroke-width:2px,rx:10,ry:10

click A href "https://github.com/VinciGit00/Scrapegraph-ai/issues/260" "Open DeepSearch Graph Issue"
click F href "https://github.com/VinciGit00/Scrapegraph-ai/issues/329" "Open Chromium Instances Issue"
click B href "https://github.com/VinciGit00/Scrapegraph-ai/issues/197" "Open Page Caching Issue"
click C href "https://github.com/VinciGit00/Scrapegraph-ai/issues/197" "Open Screenshot Scraping Issue"
click D href "https://github.com/VinciGit00/Scrapegraph-ai/issues/279" "Open Handle Dynamic Content Issue"
click E href "https://github.com/VinciGit00/Scrapegraph-ai/issues/171" "Open New Webdrivers Issue"

```

❤️ Contributors

Contributors

🎓 Citations

If you have used our library for research purposes please quote us with the following reference: text @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.

Owner

  • Name: Ravisher Dhillon
  • Login: rav-d
  • Kind: user

Senior Software Engineer. Passion for coding and the curiosity to perpetually expand my knowledge.

Citation (citation.cff)

cff-version: 0.0.1
message: "If you use Scrapegraph-ai in your research, please cite it using these metadata."
authors:
  - family-names: Perini
    given-names: Marco
  - family-names: Padoan
    given-names: Lorenzo
  - family-names: Vinciguerra
    given-names: Marco
title: Scrapegraph-ai
version: v0.0.10
date-released: 2024-1-10
url: https://github.com/VinciGit00/Scrapegraph-ai
license: MIT

GitHub Events

Total
Last Year

Dependencies

.github/workflows/codeql.yml actions
  • actions/checkout v4 composite
  • github/codeql-action/init v3 composite
.github/workflows/dependency-review.yml actions
  • actions/checkout v4 composite
  • actions/dependency-review-action v4 composite
.github/workflows/pylint.yml actions
  • actions/checkout v3 composite
  • eifinger/setup-rye v3 composite
.github/workflows/python-publish.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v5 composite
.github/workflows/release.yml actions
  • actions/cache v2 composite
  • actions/checkout v4.1.1 composite
  • actions/setup-node v4 composite
  • cycjimmy/semantic-release-action v4.1.0 composite
  • eifinger/setup-rye v3 composite
Dockerfile docker
  • python 3.11-slim build
docker-compose.yml docker
  • ollama/ollama latest
pyproject.toml pypi
  • beautifulsoup4 >=4.12.3
  • faiss-cpu >=1.8.0
  • free-proxy >=1.1.1
  • google >=3.0.0
  • graphviz >=0.20.3
  • html2text >=2024.2.26
  • langchain >=0.2.10
  • langchain-anthropic >=0.1.11
  • langchain-aws >=0.1.3
  • langchain-fireworks >=0.1.3
  • langchain-google-genai >=1.0.7
  • langchain-google-vertexai *
  • langchain-groq >=0.1.3
  • langchain-nvidia-ai-endpoints >=0.1.6
  • langchain-openai >=0.1.17
  • langchain_community >=0.2.9
  • minify-html >=0.15.0
  • pandas >=2.2.2
  • playwright >=1.43.0
  • python-dotenv >=1.0.1
  • semchunk >=1.0.1
  • tiktoken >=0.7
  • tqdm >=4.66.4
  • undetected-playwright >=0.3.0
requirements-dev.txt pypi
  • burr ==0.22.1 development
  • furo ==2024.5.6 development
  • pylint >=3.2.5 development
  • pytest ==8.0.0 development
  • pytest-mock ==3.14.0 development
  • sphinx ==6.0 development
requirements.txt pypi
  • beautifulsoup4 >=4.12.3
  • faiss-cpu >=1.8.0
  • free-proxy >=1.1.1
  • google >=3.0.0
  • graphviz >=0.20.3
  • html2text >=2024.2.26
  • langchain >=0.2.10
  • langchain-anthropic >=0.1.11
  • langchain-aws >=0.1.3
  • langchain-fireworks >=0.1.3
  • langchain-google-genai >=1.0.7
  • langchain-google-vertexai *
  • langchain-groq >=0.1.3
  • langchain-nvidia-ai-endpoints >=0.1.6
  • langchain-openai >=0.1.17
  • langchain_community >=0.2.9
  • minify-html >=0.15.0
  • pandas >=2.2.2
  • playwright >=1.43.0
  • python-dotenv >=1.0.1
  • semchunk >=1.0.1
  • tiktoken >=0.7
  • tqdm >=4.66.4
  • undetected-playwright >=0.3.0