Skip to content

Commit 6d4557e

Browse files
authored
Merge pull request #2 from ScrapeGraphAI/copilot/integrate-scrapegraphai-sdk
Implement ScrapeGraphAI SDK integration with Elasticsearch for marketplace product comparison
2 parents 991fa89 + 72e0db9 commit 6d4557e

23 files changed

+2565
-2
lines changed

.env.example

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Elasticsearch Configuration
2+
ELASTICSEARCH_HOST=localhost
3+
ELASTICSEARCH_PORT=9200
4+
ELASTICSEARCH_SCHEME=http
5+
ELASTICSEARCH_USERNAME=elastic
6+
ELASTICSEARCH_PASSWORD=changeme
7+
8+
# ScrapeGraphAI Configuration
9+
SCRAPEGRAPHAI_API_KEY=your_api_key_here
10+
11+
# Optional: OpenAI API Key for LLM functionality
12+
OPENAI_API_KEY=your_openai_api_key_here

.gitignore

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
env/
8+
venv/
9+
ENV/
10+
build/
11+
develop-eggs/
12+
dist/
13+
downloads/
14+
eggs/
15+
.eggs/
16+
lib/
17+
lib64/
18+
parts/
19+
sdist/
20+
var/
21+
wheels/
22+
*.egg-info/
23+
.installed.cfg
24+
*.egg
25+
26+
# Environment
27+
.env
28+
29+
# IDEs
30+
.vscode/
31+
.idea/
32+
*.swp
33+
*.swo
34+
*~
35+
36+
# Logs
37+
*.log
38+
39+
# OS
40+
.DS_Store
41+
Thumbs.db
42+
43+
# Data
44+
data/
45+
*.csv
46+
*.json

0 commit comments

Comments
 (0)