2023-04-29 20:58:20 -07:00

17 lines
415 B
Markdown

# Async Website Loader
This loader is an asynchronous web scraper that fetches the text from static websites by converting the HTML to text.
## Usage
To use this loader, you need to pass in an array of URLs.
```python
from llama_index import download_loader
AsyncWebPageReader = download_loader("AsyncWebPageReader")
loader = AsyncWebPageReader()
documents = loader.load_data(urls=['https://google.com'])
```