scapegpt
v1.0.0
Published
Use GPT-4 to scrape any remote website based on a URL. This is a simple wrapper around the [OpenAI API](https://beta.openai.com/docs/api-reference/introduction) that allows you to scrape any website using GPT-4.
Downloads
2
Readme
Scrape GPT
Use GPT-4 to scrape any remote website based on a URL. This is a simple wrapper around the OpenAI API that allows you to scrape any website using GPT-4.
Installation
npm i scrapegpt
Usage
const scrape = require('scrapegpt');
const url = 'https://www.bbc.com/news/world-us-canada-57982050';
scrape(url).then((result) => {
console.log(result);
});