https://github.com/walkr/bing-python
Python wrapper for Bing API
https://github.com/walkr/bing-python
Last synced: 2 months ago
JSON representation
Python wrapper for Bing API
- Host: GitHub
- URL: https://github.com/walkr/bing-python
- Owner: walkr
- License: mit
- Created: 2014-05-05T05:45:16.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-05T05:50:11.000Z (about 11 years ago)
- Last Synced: 2023-08-03T21:22:57.391Z (almost 2 years ago)
- Language: Python
- Size: 141 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Python wrapper for Bing API
----------------------------Usage:
```python
import bing
api = bing.API('your-key')
web_results = api.query('hello world')
news_results = api.query('hello world', srctype='News')```