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

https://github.com/manucabral/assistant-robert

A Python web searcher library with different search engines and more
https://github.com/manucabral/assistant-robert

python search search-engine

Last synced: over 1 year ago
JSON representation

A Python web searcher library with different search engines and more

Awesome Lists containing this project

README

          

# Assistant Robert
A simple Python library that provides search with different search engines and more.

# Install
```
pip install assistant-robert
```

# Usage
```py
from robert import GoogleSearcher

client = GoogleSearcher('en')
result = client.search('hello')
print(result)
```