{
"info": {
"author": "ICQ LLC (Mail.Ru Group)",
"author_email": "support@icq.com",
"bugtrack_url": null,
"classifiers": [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Communications :: Chat",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules"
],
"description": "
\n\n# \ud83d\udc0d bot-python\n\nPure Python interface for Bot API.\n\n# Table of contents\n- [Introduction](#introduction)\n- [Getting started](#getting-started)\n- [Installing](#installing)\n- [API description](#api-description)\n\n# Introduction\n\nThis library provides complete Bot API 1.0 interface and compatible with Python 2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10.\n\n# Getting started\n\n* Create your own bot by sending the /newbot command to Metabot and follow the instructions.\n >Note: a bot can only reply after the user has added it to his contact list, or if the user was the first to start a dialogue.\n* You can configure the domain that hosts your ICQ server. When instantiating the Bot class, add the address of your domain.\n > Example: Bot(token=TOKEN, name=NAME, version=VERSION, api_url_base=\"https://api.icq.net/bot/v1\"), by default we use the domain: https://api.icq.net/bot/v1\n* If you are Myteam client, you can add flag \"is_myteam=True\", when instantiating the Bot class. This will let you use additional chat methods.\n > Example: Bot(token=TOKEN, name=NAME, is_myteam=True), by default it is False.\n\n\n> An example of how to use the framework can be seen in example/test_bot.py \n\n# Installing\nInstall using pip:\n```bash\npip install --upgrade mailru-im-bot\n```\n\nInstall from sources:\n```bash\ngit clone https://github.com/mail-ru-im/bot-python.git\ncd bot-python\npython setup.py install\n```\n\n# API description\n