Metadata-Version: 2.1
Name: python-icq-bot
Version: 0.0.11
Summary: Pure Python interface for ICQ Bot API. Bot cookbook for Humans.
Home-page: https://github.com/icq-bot/python-icq-bot
Author: ICQ LLC (Mail.Ru Group)
Author-email: support@icq.com
License: MIT
Description: # python-icq-bot
        
        Pure Python interface for ICQ Bot API. Bot cookbook for Humans.
        
        # Installing
        
        ```bash
        git clone https://github.com/icq-bot/python-icq-bot.git
        cd python-icq-bot
        python setup.py install
        ```
        
        # Getting started
        
        Create your bot by sending /newbot command to <a href="https://icq.com/people/70001">MegaBot</a> and follow instructions.
        
        # Examples
        
        See example directory.
        
        Some bots you can play with right now:<br>
        <a href="https://icq.com/725223851">Echo Bot</a><br>
        <a href="https://icq.com/729805850">Giphy Bot</a><br>
        <a href="https://icq.com/720507564">Hash Bot</a><br>
        <a href="https://icq.com/70003">Meme Bot</a><br>
        <a href="https://icq.com/721765058">OAuth Bot</a><br>
        <a href="https://icq.com/720020179">Reformat Bot</a><br>
        <a href="https://icq.com/100500">Stickers Bot</a><br>
        <a href="https://icq.com/724894572">URL Encode Bot</a><br>
        <a href="https://icq.com/728777874">URL Decode Bot</a><br>
        <a href="https://icq.com/720953874">Vinci Bot</a><br>
        <a href="https://icq.com/729775354">WolframAlpha Bot</a><br>
        
        ## Starting your bot
        
        Without virtualenv:
        ```bash
        python echo_bot.py
        ```
        
        With virtualenv:
        ```bash
        # Initializing virtualenv.
        virtualenv venv;
        
        # Activating virtualenv.
        source venv/bin/activate
        
        # Installing dependencies.
        pip install -r requirements.txt && pip install -r example/requirements.txt
        
        # Starting bot.
        cd example && PYTHONPATH='..' python echo_bot.py
        
        # Deactivating virtualenv.
        deactivate
        ```
        
        # News
        
        <a href="https://icq.com/chat/python-icq-bot">ICQ channel</a>
Keywords: python icq bot api
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Internet
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Operating System :: OS Independent
Requires-Python: >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*
Description-Content-Type: text/markdown
