forked from ScrapeGraphAI/Scrapegraph-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c8becc
commit 6a753f2
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
OPENAI_API_KEY="YOUR OPENAI API KEY" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
""" | ||
Module for testing the smart scraper class | ||
""" | ||
|
||
import os | ||
import pytest | ||
import pandas as pd | ||
from dotenv import load_dotenv | ||
from scrapegraphai.graphs import SmartScraperGraph | ||
from scrapegraphai.utils import prettify_exec_info | ||
|
||
load_dotenv() | ||
|
||
@pytest.fixture | ||
def graph_config(): | ||
"""Configuration of the graph""" | ||
openai_key = os.getenv("OPENAI_APIKEY") | ||
return { | ||
"llm": { | ||
"api_key": openai_key, | ||
"model": "gpt-3.5-turbo", | ||
}, | ||
"verbose": True, | ||
"headless": False, | ||
} | ||
|
||
def test_scraping_pipeline(graph_config): | ||
"""Start of the scraping pipeline""" | ||
smart_scraper_graph = SmartScraperGraph( | ||
prompt="List me all the projects with their description.", | ||
source="https://perinim.github.io/projects/", | ||
config=graph_config, | ||
) | ||
|
||
result = smart_scraper_graph.run() | ||
|
||
assert result is not None | ||
assert isinstance(result, dict) | ||
|
||
def test_get_execution_info(graph_config): | ||
"""Get the execution info""" | ||
smart_scraper_graph = SmartScraperGraph( | ||
prompt="List me all the projects with their description.", | ||
source="https://perinim.github.io/projects/", | ||
config=graph_config, | ||
) | ||
|
||
smart_scraper_graph.run() | ||
|
||
graph_exec_info = smart_scraper_graph.get_execution_info() | ||
|
||
assert graph_exec_info is not None |