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
- Host: GitHub
- URL: https://github.com/manucabral/assistant-robert
- Owner: manucabral
- License: mit
- Created: 2021-12-16T04:31:47.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-18T22:22:17.000Z (over 4 years ago)
- Last Synced: 2025-02-23T22:48:10.327Z (over 1 year ago)
- Topics: python, search, search-engine
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```