-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #775 from U-C4N/main
This commit focuses on optimizing the utility modules in the codebase…
- Loading branch information
Showing
19 changed files
with
279 additions
and
165 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,87 @@ | ||
{ | ||
"version": "v1.0.0", | ||
"entity": { | ||
"type": "individual", | ||
"role": "maintainer", | ||
"name": "Marco Vinciguerra", | ||
"email": "mvincig11@gmail.com", | ||
"phone": "", | ||
"description": "I'm dedicated to advancing web scraping and data extraction through AI-powered tools, focusing on making data access more accessible and ethical. My mission is to create solutions that uphold digital freedoms and support open internet principles.", | ||
"webpageUrl": { | ||
"url": "https://scrapegraphai.com", | ||
} | ||
}, | ||
"projects": [ | ||
{ | ||
"guid": "scrapegraph-core", | ||
"name": "ScrapeGraphAI Core", | ||
"description": "An AI-powered web scraping framework that intelligently extracts structured data from websites with automatic pattern recognition, adaptive scraping strategies, and built-in rate limiting. Recognized as a top 200 open-source AI project globally.", | ||
"webpageUrl": { | ||
"url": "https://scrapegraphai.com/projects/core", | ||
}, | ||
"repositoryUrl": { | ||
"url": "https://github.com/ScrapeGraphAI/Scrapegraph-ai", | ||
}, | ||
"licenses": ["spdx:MIT"], | ||
"tags": ["web-scraping", "ai", "data-extraction", "python", "machine-learning", "open-source", "llm"] | ||
} | ||
], | ||
"funding": { | ||
"channels": [ | ||
{ | ||
"guid": "mybank", | ||
"type": "bank", | ||
"address": "", | ||
"description": "Will accept direct bank transfers. Please e-mail me for details." | ||
}, | ||
{ | ||
"guid": "mypay", | ||
"type": "payment-provider", | ||
"address": "https://example.com/payme/@myid", | ||
"description": "Pay with your debit/credit card through this gateway and set up recurring subscriptions." | ||
} | ||
], | ||
"plans": [ | ||
{ | ||
"guid": "infrastructure", | ||
"status": "active", | ||
"name": "Infrastructure Support", | ||
"description": "Help cover monthly cloud infrastructure costs, including API servers, model hosting, and data storage.", | ||
"amount": 750, | ||
"currency": "USD", | ||
"frequency": "monthly", | ||
"channels": ["mybank"] | ||
}, | ||
{ | ||
"guid": "developer-compensation", | ||
"status": "active", | ||
"name": "Developer Compensation", | ||
"description": "Provides financial support for developers working on maintenance, updates, and feature additions for the projects.", | ||
"amount": 2500, | ||
"currency": "USD", | ||
"frequency": "monthly", | ||
"channels": ["mybank"] | ||
}, | ||
{ | ||
"guid": "community-backer", | ||
"status": "active", | ||
"name": "Community Backer", | ||
"description": "Support our open-source efforts with any contribution amount. Every donation helps!", | ||
"amount": 5, | ||
"currency": "USD", | ||
"frequency": "monthly", | ||
"channels": ["mypay"] | ||
} | ||
], | ||
"history": [ | ||
{ | ||
"year": 2024, | ||
"income": 15000, | ||
"expenses": 15000, | ||
"taxes": 0, | ||
"currency": "USD", | ||
"description": "Experienced a temporary dip in donations, with improvements expected." | ||
} | ||
] | ||
} | ||
} |
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
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
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
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[project] | ||
name = "scrapegraphai" | ||
|
||
|
||
version = "1.27.0b13" | ||
|
||
|
||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
""" | ||
__init__.py file for scrapegraphai folder | ||
__init__.py file for scrapegraphai folder | ||
""" |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
""" | ||
__init__.py file for builders folder | ||
This module contains the builders for constructing various components in the ScrapeGraphAI application. | ||
""" | ||
|
||
from .graph_builder import GraphBuilder |
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
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""" | ||
""" | ||
FetchNode Module | ||
""" | ||
import json | ||
|
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
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
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
Oops, something went wrong.