Skip to content

Commit 3085cef

Browse files
committed
add new js version
1 parent 38b56a6 commit 3085cef

File tree

7 files changed

+14
-9
lines changed

7 files changed

+14
-9
lines changed

scrapegraph-js/examples/searchscraper/searchScraper_markdown_example.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,4 @@ try {
9090
console.error('❌ Unexpected error:', error.message);
9191
process.exit(1);
9292
}
93+

scrapegraph-js/examples/searchscraper/searchScraper_markdown_polling_example.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,3 +142,4 @@ try {
142142
console.error('❌ Unexpected error:', error.message);
143143
process.exit(1);
144144
}
145+

scrapegraph-js/package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scrapegraph-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "scrapegraph-js",
33
"author": "ScrapeGraphAI",
4-
"version": "0.1.4",
4+
"version": "0.1.5",
55
"description": "Scrape and extract structured data from a webpage using ScrapeGraphAI's APIs. Supports cookies for authentication, infinite scrolling, and pagination.",
66
"repository": {
77
"type": "git",

scrapegraph-js/test/searchScraper_markdown_test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -521,3 +521,4 @@ export {
521521
testResponseStructure,
522522
runAllMarkdownTests
523523
};
524+

scrapegraph-py/examples/searchscraper/async/async_searchscraper_markdown_example.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,3 +165,4 @@ async def main():
165165
if __name__ == "__main__":
166166
success = asyncio.run(main())
167167
exit(0 if success else 1)
168+

scrapegraph-py/examples/searchscraper/sync/searchscraper_markdown_example.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,3 +97,4 @@ def main():
9797
if __name__ == "__main__":
9898
success = main()
9999
exit(0 if success else 1)
100+

0 commit comments

Comments
 (0)