Update README.md

This commit is contained in:
Nicolas 2024-04-25 13:29:37 -07:00
parent 3ac8724329
commit 4fce848ebb
1 changed files with 9 additions and 0 deletions

View File

@ -180,6 +180,15 @@ url = 'https://example.com'
scraped_data = app.scrape_url(url) scraped_data = app.scrape_url(url)
``` ```
### Search for a query
Performs a web search, retrieve the top results, extract data from each page, and returns their markdown.
```python
query = 'what is mendable?'
search_result = app.search(query)
```
## Contributing ## Contributing
We love contributions! Please read our [contributing guide](CONTRIBUTING.md) before submitting a pull request. We love contributions! Please read our [contributing guide](CONTRIBUTING.md) before submitting a pull request.