Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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);
```