scrapegraph-ai
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 (15.7%) to scientific vocabulary
Repository
Basic Info
- Host: GitHub
- Owner: Jdh235
- License: mit
- Language: Python
- Default Branch: main
- Size: 2.74 MB
Statistics
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
🕷️ ScrapeGraphAI: You Only Scrape Once
English | 中文 | 日本語 | 한국어 | Русский | Türkçe
[ScrapeGraphAI](https://scrapegraphai.com) 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!
🚀 Quick install
The reference page for Scrapegraph-ai is available on the official page of PyPI: pypi.
```bash pip install scrapegraphai
IMPORTANT (for fetching websites content)
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 from scrapegraphai.graphs import SmartScraperGraph
Define the configuration for the scraping pipeline
graphconfig = { "llm": { "model": "ollama/llama3.2", "modeltokens": 8192 }, "verbose": True, "headless": False, }
Create the SmartScraperGraph instance
smartscrapergraph = 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 = smartscrapergraph.run()
import json print(json.dumps(result, indent=4)) ```
[!NOTE] For OpenAI and other models you just need to change the llm config!
python graph_config = { "llm": { "api_key": "YOUR_OPENAI_API_KEY", "model": "openai/gpt-4o-mini", }, "verbose": True, "headless": False, }
The output will be a dictionary like the following:
python
{
"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": "",
"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
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.
🔗 ScrapeGraph API & SDKs
If you are looking for a quick solution to integrate ScrapeGraph in your system, check out our powerful API here!
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
📈 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 SCRAPEGRAPHAITELEMETRYENABLED=false. For more information, please refer to the documentation here.
❤️ Contributors
🎓 Citations
If you have used our library for research purposes please quote us with the following reference:
text
@misc{scrapegraph-ai,
author = {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
| | Contact Info |
|--------------------|----------------------|
| Marco Vinciguerra | |
| Lorenzo Padoan |
|
📜 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
Owner
- Login: Jdh235
- Kind: user
- Repositories: 1
- Profile: https://github.com/Jdh235
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
- Public event: 1
- Push event: 4
- Create event: 1
Last Year
- Public event: 1
- Push event: 4
- Create event: 1
Dependencies
- python 3.11-slim build
- ollama/ollama latest
- myst-parser >=2.0.0 development
- sphinx >=7.1.2 development
- sphinx-autoapi >=3.0.0 development
- sphinx-autodoc-typehints >=1.25.2 development
- sphinx-copybutton >=0.5.2 development
- sphinx-design >=0.5.0 development
- sphinx-rtd-theme >=1.3.0 development
- furo >=2024.1.29
- myst-parser >=2.0.0
- sphinx >=7.1.2
- sphinx-autoapi >=3.0.0
- sphinx-autodoc-typehints >=1.25.2
- sphinx-copybutton >=0.5.2
- sphinx-design >=0.5.0
- sphinx-rtd-theme >=1.3.0
- async-timeout >=4.0.3
- beautifulsoup4 >=4.12.3
- duckduckgo-search >=7.2.1
- free-proxy >=1.1.1
- html2text >=2024.2.26
- jsonschema >=4.23.0
- langchain >=0.3.0
- langchain-aws >=0.1.3
- langchain-mistralai >=0.1.12
- langchain-ollama >=0.1.3
- langchain-openai >=0.1.22
- langchain_community >=0.2.9
- minify-html >=0.15.0
- playwright >=1.43.0
- pydantic >=2.10.2
- python-dotenv >=1.0.1
- semchunk >=2.2.0
- simpleeval >=1.0.0
- tiktoken >=0.7
- tqdm >=4.66.4
- undetected-playwright >=0.3.0
- myst-parser >=2.0.0 development
- sphinx >=7.1.2 development
- sphinx-autoapi >=3.0.0 development
- sphinx-autodoc-typehints >=1.25.2 development
- sphinx-copybutton >=0.5.2 development
- sphinx-design >=0.5.0 development
- myst-parser >=2.0.0
- sphinx >=7.1.2
- sphinx-autoapi >=3.0.0
- sphinx-autodoc-typehints >=1.25.2
- sphinx-copybutton >=0.5.2
- sphinx-design >=0.5.0
- 225 dependencies