ScrapeGraphAI is a web scraping python library based on LangChain which uses LLM and direct graph logic to create scraping pipelines for websites and documents. Just say which information you want to extract and the library will do it for you!
The reference page for Scrapegraph-ai is avaible on the official page of pypy: pypi.
pip install scrapegraphai
Official streamlit demo:
Try it directly on the web using Google Colab:
Follow the procedure on the following link to setup your OpenAI API key: link.
The documentation for ScrapeGraphAI can be found here.
Check out also the docusaurus documentation.
You can use the SmartScraper
class to extract information from a website using a prompt.
The SmartScraper
class is a direct graph implementation that uses the most common nodes present in a web scraping pipeline. For more information, please see the documentation.
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import SmartScraperGraph
load_dotenv()
openai_key = os.getenv("OPENAI_APIKEY")
# Define the configuration for the graph
graph_config = {
"llm": {
"api_key": openai_key,
"model": "gpt-3.5-turbo",
},
}
# Create the SmartScraperGraph instance
smart_scraper_graph = SmartScraperGraph(
prompt="List me all the titles and project descriptions"
file_source="https://perinim.github.io/projects/", # also accepts a local file path
config=graph_config
)
result = smart_scraper_graph.run()
print(result)
The output will be a dictionary with the extracted information, for example:
{
'titles': [
'Rotary Pendulum RL'
],
'descriptions': [
'Open Source project aimed at controlling a real life rotary pendulum using RL algorithms'
]
}
Fell free to contribute and join our Discord server to discuss with us improvements and give us suggestions!
For more information, please see the contributing guidelines.
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 data from graphs}
}
Contact Info | |
---|---|
Marco Vinciguerra | |
Marco Perini | |
Lorenzo Padoan |
ScrapeGraphAI is licensed under the MIT License. See the LICENSE file for more information.
- 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.