Metadata-Version: 1.2
Name: agario-bot
Version: 0.6
Summary: Just small python bot client for socket-based agario
Home-page: https://gitlab.com/prettyGoo/agario-python-bot
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: ## agario-python-bot
        
        ##### Lightweight client library for writing agario bots in Python
        
        ##### socketio server: https://gitlab.com/unidev/agario
        
        ##### installation: pip install agario-bot
        
        #### Examples
        
        ###### Simplest cycle bot
        ```python
        from agario_bot.bot import BotClient
        
        b = BotClient('prettygoo', wait_rate=0.1)
        surroundings = b.get_visible_surroundings()
        
        while True:
            b.move_left()
            surroundings = b.get_visible_surroundings()
            print(surroundings['cells'])
            print(surroundings['food'])
        
            b.move_up()
            surroundings = b.get_visible_surroundings()
            print(surroundings['cells'])
            print(surroundings['food'])
        
            b.move_right()
            surroundings = b.get_visible_surroundings()
            print(surroundings['cells'])
            print(surroundings['food'])
        
            b.move_down()
            surroundings = b.get_visible_surroundings()
            print(surroundings['cells'])
            print(surroundings['food'])
        ```
        
        ###### Scary bot, just runs away from everyone one the gameboard
        ```python
        from agario_bot.examples.scary_bot import run_scary_bot
        run_scary_bot()
        ```
        
        ##### BotClient arguments
        - speed_rate - time to execute movement, 1 - one second
        - wait_rate - time to wait before server response on client emitted socket
        - cells - players
        - mass - will be removed
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Games/Entertainment :: Board Games
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3
