Metadata-Version: 1.1
Name: pyagar
Version: 0.0.2
Summary: agar.io python client library
Home-page: https://github.com/nilp0inter/pyagar
Author: Roberto Abdelkader Martínez Pérez
Author-email: robertomartinezp@gmail.com
License: LGPLv3
Description: pyagar
        ======
        
        ``pyagar`` is a client implementation of http://agar.io for Python 3.4.
        
        This package allows you to play as in the original site, see the game as
        an spectator and also play automatically with a simple bot.
        
        .. image:: docs/images/shot.png
           :alt: Screenshot
           :align: center
        
        
        Dependencies
        ------------
        
        In order to run this software you'll need:
        
        - Python 3.4+
        - SDL2 (you may found in your distribution as libsdl2)
        
        
        Installation
        ------------
        
        It is recomended to install this package into a virtualenv.
        
        
        Stable version
        ~~~~~~~~~~~~~~
        
        .. code-block:: bash
        
           $ pip install pyagar
        
        
        Develop version
        ~~~~~~~~~~~~~~~
        
        .. code-block:: bash
        
           $ git clone https://github.com/nilp0inter/pyagar
           $ cd pyagar
           $ python setup.py develop
        
        
        Play
        ----
        
        .. code-block:: bash
        
           $ agar.io --help
           usage: agar.io [-h] [--no-visualize] [-n NICK] [--auto] [--debug] [--spectate]
        
            optional arguments:
              -h, --help            show this help message and exit
              --no-visualize
              -n NICK, --nick NICK
              --auto
              --debug
              --spectate
        
        
        Play setting a custom nick
        ~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        .. code-block:: bash
        
           $ agar.io -n doge
        
        
        Just watch the game
        ~~~~~~~~~~~~~~~~~~~
        
        .. code-block:: bash
        
           $ agar.io --spectate
        
        
        Play automatically using the default bot
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        .. code-block:: bash
        
           $ agar.io --auto
        
        
        Play using the bot, but without a window
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        Please, **do not abuse** the system with this!
        
        .. code-block:: bash
        
           $ agar.io --auto --no-visualize
        
        
        
Keywords: agar.io client
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.4
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
