Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 622 Bytes

README.md

File metadata and controls

35 lines (27 loc) · 622 Bytes

bingpy

Python Bing Search API (2014)

python3 branch includes bingpy for python3 thanks to Tomtomgo

Install

pip install bingpy

OR

pip install git+https://github.com/mpkato/bingpy.git

For python3

pip install git+https://github.com/mpkato/bingpy@python3

Usage

Get your API Key at https://datamarket.azure.com/dataset/bing/search

from bingpy import WebSearch
web = WebSearch("YOUR_API_KEY")
pages = web.search("kyoto", 20)
for page in pages:
    print page.title