Metadata-Version: 2.1
Name: bingsearchpy
Version: 0.7
Summary: bing search engine for python
Home-page: https://github.com/rizki4106/bingsearchpy
Author: mrxxx04
Author-email: rizkimaulana348@gmail.com
License: MIT
Download-URL: https://github.com/rizki4106/bingsearchpy/archive/v.0.1.zip
Description: ## bingsearchpy
        bing search engine for python.
        
        ### installation
        
        ```python 
        pip install bingsearchpy
        ```
        #### how to use
        
        - get random data
        ```python
        from bingsearchpy import engine
        
        for i in engine.search('the most beautiful place in the world'):
            print(i['title'], i['link'])
        ```
        | data | description |
        |------|-------------|
        | title | title of websites |
        | link | website's link |
        
        - get image
        
        ```python
        from bingsearchpy import engine
        
        for i in engine.search_image('bali'):
            print(i['title'], i['link'])
        ```
        | data | description |
        |------|-------------|
        | title | image's name |
        | link | image's source |
        
        - get video
        ```python
        from bingsearchpy import engine
        
        for i in engine.search_video('bandung'):
            print(i['title'], i['snippet_video'], i['detail_video'])
        ```
        | data | description |
        |------|-------------|
        | title | video's name |
        | snippet_video | short video |
        | detail_video | the place of origin of the video |
        
        
        that's it all ðŸ˜Ž
        
Keywords: google,msn,searchengine,microsoft,google
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
