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

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

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')

```