{ "info": { "author": "Leandro Toledo", "author_email": "devs@python-telegram-bot.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", "Operating System :: OS Independent", "Programming Language :: Python", "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", "Topic :: Communications :: Chat", "Topic :: Internet", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. image:: https://github.com/python-telegram-bot/logos/blob/master/logo-text/png/ptb-logo-text_768.png?raw=true\n :align: center\n :target: https://python-telegram-bot.org\n :alt: python-telegram-bot Logo\n\nWe have made you a wrapper you can't refuse\n\nWe have a vibrant community of developers helping each other in our `Telegram group `_. Join us!\n\n*Stay tuned for library updates and new releases on our* `Telegram Channel `_.\n\n.. image:: https://img.shields.io/pypi/v/python-telegram-bot.svg\n :target: https://pypi.org/project/python-telegram-bot/\n :alt: PyPi Package Version\n\n.. image:: https://img.shields.io/pypi/pyversions/python-telegram-bot.svg\n :target: https://pypi.org/project/python-telegram-bot/\n :alt: Supported Python versions\n\n.. image:: https://www.cpu.re/static/python-telegram-bot/downloads.svg\n :target: https://www.cpu.re/static/python-telegram-bot/downloads-by-python-version.txt\n :alt: PyPi Package Monthly Download\n\n.. image:: https://img.shields.io/badge/docs-latest-af1a97.svg\n :target: https://python-telegram-bot.readthedocs.io/\n :alt: Documentation Status\n\n.. image:: https://img.shields.io/pypi/l/python-telegram-bot.svg\n :target: https://www.gnu.org/licenses/lgpl-3.0.html\n :alt: LGPLv3 License\n\n.. image:: https://travis-ci.org/python-telegram-bot/python-telegram-bot.svg?branch=master\n :target: https://travis-ci.org/python-telegram-bot/python-telegram-bot\n :alt: Travis CI Status\n\n.. image:: https://img.shields.io/appveyor/ci/python-telegram-bot/python-telegram-bot/master.svg?logo=appveyor\n :target: https://ci.appveyor.com/project/python-telegram-bot/python-telegram-bot\n :alt: AppVeyor CI Status\n\n\n.. image:: https://codecov.io/gh/python-telegram-bot/python-telegram-bot/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/python-telegram-bot/python-telegram-bot\n :alt: Code coverage\n\n.. image:: http://isitmaintained.com/badge/resolution/python-telegram-bot/python-telegram-bot.svg\n :target: http://isitmaintained.com/project/python-telegram-bot/python-telegram-bot\n :alt: Median time to resolve an issue\n\n.. image:: https://img.shields.io/badge/Telegram-Group-blue.svg\n :target: https://telegram.me/pythontelegrambotgroup\n :alt: Telegram Group\n\n.. image:: https://img.shields.io/badge/IRC-Channel-blue.svg\n :target: https://webchat.freenode.net/?channels=##python-telegram-bot\n :alt: IRC Bridge\n\n=================\nTable of contents\n=================\n\n- `Introduction`_\n\n- `Telegram API support`_\n\n- `Installing`_\n\n- `Getting started`_\n\n #. `Learning by example`_\n\n #. `Logging`_\n\n #. `Documentation`_\n\n- `Getting help`_\n\n- `Contributing`_\n\n- `License`_\n\n============\nIntroduction\n============\n\nThis library provides a pure Python interface for the\n`Telegram Bot API `_.\nIt's compatible with Python versions 2.7, 3.3+ and `PyPy `_.\nIt also works with `Google App Engine `_.\n\nIn addition to the pure API implementation, this library features a number of high-level classes to\nmake the development of bots easy and straightforward. These classes are contained in the\n``telegram.ext`` submodule.\n\n====================\nTelegram API support\n====================\n\nAll types and methods of the Telegram Bot API **4.1** are supported.\n\n==========\nInstalling\n==========\n\nYou can install or upgrade python-telegram-bot with:\n\n.. code:: shell\n\n $ pip install python-telegram-bot --upgrade\n\nOr you can install from source with:\n\n.. code:: shell\n\n $ git clone https://github.com/python-telegram-bot/python-telegram-bot --recursive\n $ cd python-telegram-bot\n $ python setup.py install\n\nIn case you have a previously cloned local repository already, you should initialize the added urllib3 submodule before installing with:\n\n.. code:: shell\n\n $ git submodule update --init --recursive\n\n===============\nGetting started\n===============\n\nOur Wiki contains a lot of resources to get you started with ``python-telegram-bot``:\n\n- `Introduction to the API `_\n- Tutorial: `Your first Bot `_\n\nOther references:\n\n- `Telegram API documentation `_\n- `python-telegram-bot documentation `_\n\n-------------------\nLearning by example\n-------------------\n\nWe believe that the best way to learn and understand this simple package is by example. So here\nare some examples for you to review. Even if it's not your approach for learning, please take a\nlook at ``echobot2``, it is de facto the base for most of the bots out there. Best of all,\nthe code for these examples are released to the public domain, so you can start by grabbing the\ncode and building on top of it.\n\nVisit `this page `_ to discover the official examples or look at the examples on the `wiki `_ to see other bots the community has built.\n\n-------\nLogging\n-------\n\nThis library uses the ``logging`` module. To set up logging to standard output, put:\n\n.. code:: python\n\n import logging\n logging.basicConfig(level=logging.DEBUG,\n format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')\n\nat the beginning of your script.\n\nYou can also use logs in your application by calling ``logging.getLogger()`` and setting the log level you want:\n\n.. code:: python\n\n logger = logging.getLogger()\n logger.setLevel(logging.INFO)\n\nIf you want DEBUG logs instead:\n\n.. code:: python\n\n logger.setLevel(logging.DEBUG)\n\n\n=============\nDocumentation\n=============\n\n``python-telegram-bot``'s documentation lives at `readthedocs.io `_.\n\n============\nGetting help\n============\n\nYou can get help in several ways:\n\n1. We have a vibrant community of developers helping each other in our `Telegram group `_. Join us!\n\n2. Our `Wiki pages `_ offer a growing amount of resources.\n\n3. You can ask for help on Stack Overflow using the `python-telegram-bot tag `_.\n\n4. As last resort, the developers are ready to help you with `serious issues `_.\n\n\n============\nContributing\n============\n\nContributions of all sizes are welcome. Please review our `contribution guidelines `_ to get started. You can also help by `reporting bugs `_.\n\n=======\nLicense\n=======\n\nYou may copy, distribute and modify the software provided that modifications are described and licensed for free under `LGPL-3 `_. Derivatives works (including modifications or anything statically linked to the library) can only be redistributed under LGPL-3, but applications that use the library don't have to be.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://python-telegram-bot.org/", "keywords": "python telegram bot api wrapper", "license": "LGPLv3", "maintainer": "", "maintainer_email": "", "name": "python-telegram-payment-bot", "package_url": "https://pypi.org/project/python-telegram-payment-bot/", "platform": "", "project_url": "https://pypi.org/project/python-telegram-payment-bot/", "project_urls": { "Homepage": "https://python-telegram-bot.org/" }, "release_url": "https://pypi.org/project/python-telegram-payment-bot/11.1.2/", "requires_dist": [ "certifi", "cryptography", "future (>=0.16.0)", "ujson; extra == 'json'", "PySocks; extra == 'socks'" ], "requires_python": "", "summary": "We have made you a wrapper you can't refuse", "version": "11.1.2" }, "last_serial": 5764068, "releases": { "11.1.0": [ { "comment_text": "", "digests": { "md5": "92786235220110961155d25e8317cecd", "sha256": "3b9fe22b950514903607f0de72b71498e59404d042d0e281a3563616c59c7e44" }, "downloads": -1, "filename": "python_telegram_payment_bot-11.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "92786235220110961155d25e8317cecd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 247974, "upload_time": "2019-08-31T08:46:55", "url": "https://files.pythonhosted.org/packages/2e/1a/9fedaf40052347659381f6db4454a26da1a6ef65be1cce8f9ca81028d06a/python_telegram_payment_bot-11.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "48863e895fd033e123fa5e0ef980c55d", "sha256": "04a094ff0c62cb34cf393a33fc85714e0e76c1a2d506eb74e9cd38dc8b7ea3e3" }, "downloads": -1, "filename": "python-telegram-payment-bot-11.1.0.tar.gz", "has_sig": false, "md5_digest": "48863e895fd033e123fa5e0ef980c55d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127833, "upload_time": "2019-08-31T08:46:59", "url": "https://files.pythonhosted.org/packages/ff/53/3cddea2ac09ad1b757d8546bc69bf798c042bc1fda5238623ef71f688690/python-telegram-payment-bot-11.1.0.tar.gz" } ], "11.1.1": [ { "comment_text": "", "digests": { "md5": "e25802a26ab887efd8941e7f8abb21cd", "sha256": "9ff00b7a8666d577af2f4a223f4ef678bf8498367d82ba0c458200c1723627a2" }, "downloads": -1, "filename": "python_telegram_payment_bot-11.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e25802a26ab887efd8941e7f8abb21cd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 248016, "upload_time": "2019-08-31T10:08:01", "url": "https://files.pythonhosted.org/packages/12/a4/4c1840d6e2e9c00f4f9cfd4dbf7f5cf3b9514b4610dd32e2caef5b79a6af/python_telegram_payment_bot-11.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a843f50fa6c7a751ddf78d7b8678234e", "sha256": "b31695d5f63158426766ba1346c92692f5d8a1e68bd54819a21a33b69d9bc3ac" }, "downloads": -1, "filename": "python-telegram-payment-bot-11.1.1.tar.gz", "has_sig": false, "md5_digest": "a843f50fa6c7a751ddf78d7b8678234e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127897, "upload_time": "2019-08-31T10:09:07", "url": "https://files.pythonhosted.org/packages/9c/d8/48b0f392c3a548577a3404b81c2fb351fa5bb7858b671366859248fd56c5/python-telegram-payment-bot-11.1.1.tar.gz" } ], "11.1.2": [ { "comment_text": "", "digests": { "md5": "16db6839a2a30da60acb37653b890447", "sha256": "67c91a30ae7db37ce905049696b2dce9d2c556945a362016a3a29f25e1b0b3d2" }, "downloads": -1, "filename": "python_telegram_payment_bot-11.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "16db6839a2a30da60acb37653b890447", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 247999, "upload_time": "2019-08-31T10:21:45", "url": "https://files.pythonhosted.org/packages/82/b9/cbcc4ed9af0ae07b7b7b0cfe9b22edd7ae8f8f44e92af5a94cf86dc09319/python_telegram_payment_bot-11.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c144fcc2268656401112aa2dad01ccd2", "sha256": "f8de9305f91889ce75dea180bed39709dc295bcf1eca54436cb2ae8e580d3dc8" }, "downloads": -1, "filename": "python-telegram-payment-bot-11.1.2.tar.gz", "has_sig": false, "md5_digest": "c144fcc2268656401112aa2dad01ccd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127895, "upload_time": "2019-08-31T10:21:49", "url": "https://files.pythonhosted.org/packages/5b/8f/9644cf230a7eddbf5b7b3076dd31b6f7126004e78ebe68648c1be92b650e/python-telegram-payment-bot-11.1.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "16db6839a2a30da60acb37653b890447", "sha256": "67c91a30ae7db37ce905049696b2dce9d2c556945a362016a3a29f25e1b0b3d2" }, "downloads": -1, "filename": "python_telegram_payment_bot-11.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "16db6839a2a30da60acb37653b890447", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 247999, "upload_time": "2019-08-31T10:21:45", "url": "https://files.pythonhosted.org/packages/82/b9/cbcc4ed9af0ae07b7b7b0cfe9b22edd7ae8f8f44e92af5a94cf86dc09319/python_telegram_payment_bot-11.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c144fcc2268656401112aa2dad01ccd2", "sha256": "f8de9305f91889ce75dea180bed39709dc295bcf1eca54436cb2ae8e580d3dc8" }, "downloads": -1, "filename": "python-telegram-payment-bot-11.1.2.tar.gz", "has_sig": false, "md5_digest": "c144fcc2268656401112aa2dad01ccd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127895, "upload_time": "2019-08-31T10:21:49", "url": "https://files.pythonhosted.org/packages/5b/8f/9644cf230a7eddbf5b7b3076dd31b6f7126004e78ebe68648c1be92b650e/python-telegram-payment-bot-11.1.2.tar.gz" } ] }