Metadata-Version: 1.1
Name: pybomb
Version: 0.1.3
Summary: Client for the Giant Bomb API
Home-page: https://github.com/steveYeah/PyBomb
Author: Steve Hutchins
Author-email: hutchinsteve@gmail.com
License: MIT
Download-URL: https://github.com/steveYeah/PyBomb/archive/v0.1.3.tar.gz
Description: PyBomb
        ======
        
        |PyPi version| |PyPi downloads| |PyPi status|
        
        Simple client for the Giant Bomb API. `Giant Bomb
        Docs <http://www.giantbomb.com/api/>`__
        
        This will go into version 1.0 when all resources are supported.
        
        Currently Supported Resources:
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        -  games
        
        Install
        -------
        
        ::
        
            pip install pybomb
        
        Examples
        --------
        
        GamesClient - search
        ^^^^^^^^^^^^^^^^^^^^
        
        ::
        
            import pybomb
        
            my_key = your_giant_bomb_api_key
            games_client = pybomb.GamesClient(my_key)
        
            return_fields = ('id', 'name', 'platforms')
            limit = 10
            offset = 5
            sort_by = 'name'
            filter_by = {'platforms': pybomb.PS3}
        
            response = games_client.search(
              filter_by, return_fields, sort_by, desc=True, limit=limit, offset=offset
            )
        
            print response.results
            print response.uri
            print response.num_page_results
            print response.num_total_results
        
        GamesClient - quick\_search
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^
        
        ::
        
            import pybomb
        
            my_key = your_giant_bomb_api_key
            games_client = pybomb.GamesClient(my_key)
        
            response = games_client.quick_search(
              'call of duty', platform=pybomb.PS3, sort_by='original_release_date', desc=True
            )
        
            print response.results
            print response.uri
            print response.num_page_results
            print response.num_total_results
        
        .. |PyPi version| image:: https://img.shields.io/pypi/v/pybomb.svg?
           :target: http://badge.fury.io/py/pybomb
        .. |PyPi downloads| image:: https://img.shields.io/pypi/dm/pybomb.svg?
           :target: https://pypi.python.org/pypi/pybomb
        .. |PyPi status| image:: https://img.shields.io/travis/steveYeah/PyBomb.svg?
           :target: https://travis-ci.org/steveYeah/PyBomb
        
Keywords: giant,bomb,game,api,client
Platform: UNKNOWN
