Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/renruyi/goduckduckgo
a duckduckgo web search scraper
https://github.com/renruyi/goduckduckgo
autogpt duckduckgo langchain scraper search serp
Last synced: about 2 months ago
JSON representation
a duckduckgo web search scraper
- Host: GitHub
- URL: https://github.com/renruyi/goduckduckgo
- Owner: renruyi
- Created: 2017-02-06T05:16:33.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-02-20T06:55:59.000Z (11 months ago)
- Last Synced: 2024-11-19T16:18:04.316Z (2 months ago)
- Topics: autogpt, duckduckgo, langchain, scraper, search, serp
- Language: TypeScript
- Homepage:
- Size: 104 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# GoDuckDuckGo
## Install
```
npm install goduckduckgo --save
```## Usage
```typescript
import { Duck } from "goduckduckgo";
const d = new Duck();const results = await d.search("duckduckgo");
```## Options
```typescript
import { ProxyConfiguration } from '@crawlee/core'
const config = {
proxyConfiguration: new ProxyConfiguration({
proxyUrls: ["http://user:[email protected]", "http://user:[email protected]"],
}),
maxPage: 3,
};const d = new Duck(config);
```