{ "info": { "author": "django-telegrambot", "author_email": "francesco.scarlato@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: Django", "Framework :: Django :: 1.10", "Framework :: Django :: 1.11", "Framework :: Django :: 1.7", "Framework :: Django :: 1.8", "Framework :: Django :: 1.9", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Natural Language :: English", "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" ], "description": "=============================\ndjango-telegrambot\n=============================\n\n.. image:: https://badge.fury.io/py/django-telegrambot.png\n :target: https://badge.fury.io/py/django-telegrambot\n\n.. image:: https://travis-ci.org/JungDev/django-telegrambot.png?branch=master\n :target: https://travis-ci.org/JungDev/django-telegrambot\n\n\nA simple app to develop Telegram bots with Django\n\nDocumentation\n-------------\n\nThe full documentation is at https://django-telegrambot.readthedocs.org.\n\nChangelog\n------------\n* **IMPORTANT ver 1.0.0** : If you upgrade from a previous version, you **MUST** change how to include ``django_telegrambot.urls`` and modify your ``settings.py``.\n\n\nQuickstart\n----------\n\nInstall django-telegrambot::\n\n pip install django-telegrambot\n\nConfigure your installation\n---------------------------\n\nAdd ``django_telegrambot`` in ``INSTALLED_APPS`` ::\n\n #settings.py\n INSTALLED_APPS = (\n ...\n 'django_telegrambot',\n ...\n )\n\nAnd set your bots::\n\n #settings.py\n #Django Telegram Bot settings\n\n DJANGO_TELEGRAMBOT = {\n\n 'MODE' : 'WEBHOOK', #(Optional [str]) # The default value is WEBHOOK,\n # otherwise you may use 'POLLING'\n # NB: if use polling you must provide to run\n # a management command that starts a worker\n\n 'WEBHOOK_SITE' : 'https://mywebsite.com',\n 'WEBHOOK_PREFIX' : '/prefix', # (Optional[str]) # If this value is specified,\n # a prefix is added to webhook url\n\n #'WEBHOOK_CERTIFICATE' : 'cert.pem', # If your site use self-signed\n \t #certificate, must be set with location of your public key\n \t #certificate.(More info at https://core.telegram.org/bots/self-signed )\n\n 'BOTS' : [\n {\n 'TOKEN': '123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11', #Your bot token.\n\n #'ALLOWED_UPDATES':(Optional[list[str]]), # List the types of\n \t\t\t\t\t\t #updates you want your bot to receive. For example, specify\n \t\t\t\t\t\t #``[\"message\", \"edited_channel_post\", \"callback_query\"]`` to\n \t\t\t\t\t\t #only receive updates of these types. See ``telegram.Update``\n \t\t\t\t\t\t #for a complete list of available update types.\n \t\t\t\t\t\t #Specify an empty list to receive all updates regardless of type\n \t\t\t\t\t\t #(default). If not specified, the previous setting will be used.\n \t\t\t\t\t\t #Please note that this parameter doesn't affect updates created\n \t\t\t\t\t\t #before the call to the setWebhook, so unwanted updates may be\n \t\t\t\t\t\t #received for a short period of time.\n\n #'TIMEOUT':(Optional[int|float]), # If this value is specified,\n \t\t #use it as the read timeout from the server\n\n #'WEBHOOK_MAX_CONNECTIONS':(Optional[int]), # Maximum allowed number of\n \t\t #simultaneous HTTPS connections to the webhook for update\n \t\t #delivery, 1-100. Defaults to 40. Use lower values to limit the\n \t\t #load on your bot's server, and higher values to increase your\n \t\t #bot's throughput.\n\n #'POLL_INTERVAL' : (Optional[float]), # Time to wait between polling updates from Telegram in\n #seconds. Default is 0.0\n\n #'POLL_CLEAN':(Optional[bool]), # Whether to clean any pending updates on Telegram servers before\n \t\t #actually starting to poll. Default is False.\n\n #'POLL_BOOTSTRAP_RETRIES':(Optional[int]), # Whether the bootstrapping phase of the `Updater`\n \t\t #will retry on failures on the Telegram server.\n \t\t #| < 0 - retry indefinitely\n \t\t #| 0 - no retries (default)\n \t\t #| > 0 - retry up to X times\n\n #'POLL_READ_LATENCY':(Optional[float|int]), # Grace time in seconds for receiving the reply from\n \t\t #server. Will be added to the `timeout` value and used as the read timeout from\n #server (Default: 2).\n },\n #Other bots here with same structure.\n ],\n\n }\n\n\n\nInclude in your urls.py the ``django_telegrambot.urls`` (NB: If you upgrade from a previous version, you MUST change how to include ``django_telegrambot.urls``. Never set prefix here!)::\n\n #urls.py\n urlpatterns = [\n ...\n url(r'^', include('django_telegrambot.urls')),\n ...\n ]\n\nThen use it in a project creating a module ``telegrambot.py`` in your app ::\n\n #myapp/telegrambot.py\n # Example code for telegrambot.py module\n from telegram.ext import CommandHandler, MessageHandler, Filters\n from django_telegrambot.apps import DjangoTelegramBot\n\n import logging\n logger = logging.getLogger(__name__)\n\n\n # Define a few command handlers. These usually take the two arguments bot and\n # update. Error handlers also receive the raised TelegramError object in error.\n def start(bot, update):\n bot.sendMessage(update.message.chat_id, text='Hi!')\n\n\n def help(bot, update):\n bot.sendMessage(update.message.chat_id, text='Help!')\n\n\n def echo(bot, update):\n bot.sendMessage(update.message.chat_id, text=update.message.text)\n\n\n def error(bot, update, error):\n logger.warn('Update \"%s\" caused error \"%s\"' % (update, error))\n\n\n def main():\n logger.info(\"Loading handlers for telegram bot\")\n\n # Default dispatcher (this is related to the first bot in settings.DJANGO_TELEGRAMBOT['BOTS'])\n dp = DjangoTelegramBot.dispatcher\n # To get Dispatcher related to a specific bot\n # dp = DjangoTelegramBot.getDispatcher('BOT_n_token') #get by bot token\n # dp = DjangoTelegramBot.getDispatcher('BOT_n_username') #get by bot username\n\n # on different commands - answer in Telegram\n dp.add_handler(CommandHandler(\"start\", start))\n dp.add_handler(CommandHandler(\"help\", help))\n\n # on noncommand i.e message - echo the message on Telegram\n dp.add_handler(MessageHandler([Filters.text], echo))\n\n # log all errors\n dp.add_error_handler(error)\n\n\n\nFeatures\n--------\n\n* Multiple bots\n* Admin dashboard available at ``/admin/django-telegrambot``\n* Polling mode by management command (an easy to way to run bot in local machine, not recommended in production!)\n\n ``(myenv) $ python manage.py botpolling --username=``\n\nContributing\n------------\n\nPatches and bug reports are welcome, just please keep the style consistent with the original source.\n\nRunning Tests\n--------------\n\nDoes the code actually work?\n\n::\n\n source /bin/activate\n (myenv) $ pip install -r requirements-test.txt\n (myenv) $ python runtests.py\n\nSample Application\n------------------\nThere a sample application in `sampleproject` directory. Here is installation instructions:\n\n1. Install requirements with command\n\n pip install -r requirements.txt\n2. Copy file `local_settings.sample.py` as `local_settings.py` and edit your bot token\n\n cp sampleproject/local_settings.sample.py sampleproject/local_settings.py\n\n nano sampleproject/local_settings.py\n3. Run Django migrations\n\n python manage.py migrate\n4. Run server\n\n python manage.py runserver\n5. If **WEBHOOK** Mode setted go to 8\n\n6. If **POLLING** Mode setted, open in your browser http://localhost/\n\n7. Open Django-Telegram Dashboard http://localhost/admin/django-telegrambot and follow instruction to run worker by management command `botpolling`. Then go to 10\n\n8. To test webhook locally install `ngrok` application and run command\n\n ./ngrok http 8000\n9. Change `WEBHOOK_SITE` and `ALLOWED_HOSTS` in local_settings.py file\n\n10. Start a chat with your bot using telegram.me link avaible in **Django-Telegram Dashboard** at http://localhost/admin/django-telegrambot\n\nCredits\n---------\nRequired package:\n\n* `Python Telegram Bot`_\n\n.. _`Python Telegram Bot`: https://github.com/python-telegram-bot/python-telegram-bot\n\nTools used in rendering this package:\n\n* Cookiecutter_\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n\n\n\n\n\nHistory\n-------\n1.0.0 (2017-05-25)\n++++++++++++++++++\n* IMPORTANT: If you upgrade from a previous version, you MUST change how to include django_telegrambot.urls and settings.py.\n* Added admin dashboard, available at /admin/django-telegrambot\n* Added polling mode from management command (an easy to way to run bot in local machine, not recommended in production)\n* More setting available\n* Improved AppConfig\n* Improved sample project\n\n0.2.6 (2017-04-08)\n++++++++++++++++++\n* Improved module loading\n* Added sample project\n\n0.2.5 (2017-03-06)\n++++++++++++++++++\n* Fix compatibility with python-telegram-bot 5.1\n\n0.2.4 (2016-10-04)\n++++++++++++++++++\n* Fix compatibility with Django 1.10\n\n0.2.3 (2016-07-30)\n++++++++++++++++++\n* Fix default dispatcher and bot\n\n0.2.2 (2016-07-27)\n++++++++++++++++++\n* Fix multi workers\n\n0.2.1 (2016-07-24)\n++++++++++++++++++\n* Update for python-telegram-bot release v5.0\n\n0.2.0 (2016-04-27)\n++++++++++++++++++\n\n* Update for python-telegram-bot release v4.0.1\n\n0.1.8 (2016-03-22)\n++++++++++++++++++\n\n* Update for deprecation in python-telegram-bot release v3.4\n\n0.1.5 (2016-01-28)\n++++++++++++++++++\n\n* Fix compatibility.\n\n0.1.4 (2016-01-28)\n++++++++++++++++++\n\n* Fix compatibility.\n\n0.1.3 (2016-01-28)\n++++++++++++++++++\n\n* Fix setting certificate.\n* Add method DjangoTelegramBot.getBot(); get bot instance by token or username.\n\n0.1.2 (2016-01-26)\n++++++++++++++++++\n\n* First release on PyPI.", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/JungDev/django-telegrambot", "keywords": "django-telegrambot", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "django-telegrambot", "package_url": "https://pypi.org/project/django-telegrambot/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/django-telegrambot/", "project_urls": { "Homepage": "https://github.com/JungDev/django-telegrambot" }, "release_url": "https://pypi.org/project/django-telegrambot/1.0.1/", "requires_dist": [ "django (>=1.8.18)", "python-telegram-bot (>=6.0.1)" ], "requires_python": "", "summary": "A simple app to develop Telegram bot with Django", "version": "1.0.1" }, "last_serial": 2918671, "releases": { "0.1.0": [], "0.1.2": [ { "comment_text": "", "digests": { "md5": "80e814b042aea5f0f01361c3e97a2433", "sha256": "891bd98e1814be19fc0adbb5a604fa9d875956c3340c5f0df39b02005dc4a81e" }, "downloads": -1, "filename": "django-telegrambot-0.1.2.tar.gz", "has_sig": false, "md5_digest": "80e814b042aea5f0f01361c3e97a2433", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8153, "upload_time": "2016-01-26T11:36:53", "url": "https://files.pythonhosted.org/packages/d0/60/d1c9c41c9b0ffde2417ef1103606a4e68ca44b2854a181b8fbd021ce4166/django-telegrambot-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "built for Linux-3.13.0-29-generic-x86_64-with-glibc2.4", "digests": { "md5": "ea0fe1f6ae6d4f42e489a2a7b7f48bde", "sha256": "42e1078febf82cefa3324bcb1d2e564a6547bb6116085750e73e8028005972da" }, "downloads": -1, "filename": "django-telegrambot-0.1.3.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "ea0fe1f6ae6d4f42e489a2a7b7f48bde", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 6866, "upload_time": "2016-01-28T10:06:26", "url": "https://files.pythonhosted.org/packages/71/ec/fe1c38ea9c3fa599eda7be69761c7632062bdf55629a7d49bcab05c17efb/django-telegrambot-0.1.3.linux-x86_64.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "a7f183afbeb1525110568977415303b9", "sha256": "8b519ad70bba0ae8361fa8068294abeef9a6df7720de79f1767eefc667cce02b" }, "downloads": -1, "filename": "django-telegrambot-0.1.4.tar.gz", "has_sig": false, "md5_digest": "a7f183afbeb1525110568977415303b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8287, "upload_time": "2016-01-28T10:54:29", "url": "https://files.pythonhosted.org/packages/8b/f4/e29e4fbecb18c1b6d667da4bb959739ec023156b8844d3e5addf9ab4b80f/django-telegrambot-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "51a3dc4b6c2e57fec873bedf2886393b", "sha256": "81743f406a9f49a7bcdaa044654dc0c4739aa32e69661416435b789b61a63f4c" }, "downloads": -1, "filename": "django-telegrambot-0.1.5.tar.gz", "has_sig": false, "md5_digest": "51a3dc4b6c2e57fec873bedf2886393b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8312, "upload_time": "2016-01-28T16:18:35", "url": "https://files.pythonhosted.org/packages/76/bc/dcb71149c271695af94335a2a27cf32ac604fad60fbe9093913e09e3194b/django-telegrambot-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "af72ac37e2e4ea4f924ec380edac2976", "sha256": "961031d4debddf76cd02332ac4233e0094c850faacb022375d0a4fcf24e08be6" }, "downloads": -1, "filename": "django-telegrambot-0.1.6.tar.gz", "has_sig": false, "md5_digest": "af72ac37e2e4ea4f924ec380edac2976", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8423, "upload_time": "2016-02-07T14:19:07", "url": "https://files.pythonhosted.org/packages/a5/0e/55695bdd206bfb5c58ee5a69c8cd425221521d3da6471ffe01706f7ab69e/django-telegrambot-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "9fa743570e0c47a5b65664eb9e6ffb84", "sha256": "84fcf3447f40d4bc8bb683f9b79bd2d9ff9aff2f2a75e913e4c5870de49d2418" }, "downloads": -1, "filename": "django-telegrambot-0.1.7.tar.gz", "has_sig": false, "md5_digest": "9fa743570e0c47a5b65664eb9e6ffb84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9183, "upload_time": "2016-02-08T22:54:15", "url": "https://files.pythonhosted.org/packages/47/aa/2c4775a16719870c3b3f0b420b89ab5777193c0c9302ac3d423b29c8701d/django-telegrambot-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "6bc9baa5820de3b69b2821a7a2367e57", "sha256": "b3d0161a368562db2942d189faf28ef99179d96619562db5b289636c240b82c8" }, "downloads": -1, "filename": "django-telegrambot-0.1.8.tar.gz", "has_sig": false, "md5_digest": "6bc9baa5820de3b69b2821a7a2367e57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9240, "upload_time": "2016-03-22T10:11:01", "url": "https://files.pythonhosted.org/packages/7b/1a/cb4eeef5d061823aa7d92356bac8892918b47a00a97d6d9a6bab59b1b568/django-telegrambot-0.1.8.tar.gz" } ], "0.1.9": [], "0.2.0": [ { "comment_text": "", "digests": { "md5": "83b7c22cb73e11307ceb4fe3ebb76b31", "sha256": "511f018b9042780766b49a907d0c8203d348903c39aa8df8f41c9bf10ca29707" }, "downloads": -1, "filename": "django-telegrambot-0.2.0.tar.gz", "has_sig": false, "md5_digest": "83b7c22cb73e11307ceb4fe3ebb76b31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9171, "upload_time": "2016-04-27T08:56:56", "url": "https://files.pythonhosted.org/packages/17/c6/415e8dc3a0758b393c839fe109df6d89e1f27435aad303cb15bee61ee5f4/django-telegrambot-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "7e95907cdc6633b3d78629b2ee73cd24", "sha256": "52d6d8967dd8feccf0f91151eb22bdb15761cd3005850e38d18ed301b02ed37b" }, "downloads": -1, "filename": "django_telegrambot-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7e95907cdc6633b3d78629b2ee73cd24", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10091, "upload_time": "2016-07-24T09:15:30", "url": "https://files.pythonhosted.org/packages/1c/1b/d6c3fd5e17f504a1e48eb34a095a6612351f36645d6c3faccd276b4e0b65/django_telegrambot-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "475476ac54c97a7493c88afeb45d126d", "sha256": "da5e1fa9e9fe66dcb4e019a851458416bef137c4e0eeb7c81466daa78c8a73ec" }, "downloads": -1, "filename": "django-telegrambot-0.2.1.tar.gz", "has_sig": false, "md5_digest": "475476ac54c97a7493c88afeb45d126d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8709, "upload_time": "2016-07-24T09:15:33", "url": "https://files.pythonhosted.org/packages/73/86/f39cefa4266ebe39e57dc452e080d05384b133485aa54086283e9bff9347/django-telegrambot-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "4226af40b2f8bd2ef7b3154e0e99280a", "sha256": "6e3478f14ce413e521b91983490153e5d02e6308c3105274f5be7f960cd7713f" }, "downloads": -1, "filename": "django_telegrambot-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4226af40b2f8bd2ef7b3154e0e99280a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10127, "upload_time": "2016-07-27T14:52:16", "url": "https://files.pythonhosted.org/packages/39/9b/84f8cc3dc6fdfec3bbcecfc2f8d854f6241547bf06beae976c5b2bfb36ad/django_telegrambot-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "28ddab60f08a1e75cbd5d59fff012190", "sha256": "b42620363eba9d514466e8a83f94e3da4d96af489ab31d8888d3b457090ecc6c" }, "downloads": -1, "filename": "django-telegrambot-0.2.2.tar.gz", "has_sig": false, "md5_digest": "28ddab60f08a1e75cbd5d59fff012190", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9433, "upload_time": "2016-07-27T14:52:20", "url": "https://files.pythonhosted.org/packages/5d/99/00eea2ba5346e68d1ce15205f088ee25ec77471d8a85a665e5c3cdd33b75/django-telegrambot-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "5da971b56ae7b0f5b829520a6cf8dea2", "sha256": "f79e0987269be364096e8e33ff50f638ec0b843e27049de05936cf95b2ce5626" }, "downloads": -1, "filename": "django_telegrambot-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5da971b56ae7b0f5b829520a6cf8dea2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10162, "upload_time": "2016-07-30T01:22:37", "url": "https://files.pythonhosted.org/packages/73/50/618fac5de636b4b44144db83788dc6caed0a9b7ad03a4a8b9f3cd9768c51/django_telegrambot-0.2.3-py2.py3-none-any.whl" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "4e08fa62f108a96dd0264f347ab32ae7", "sha256": "84d5f27fb3379bc1ff3bd0c873f6384c75d9ee742b30750eab1ed4364055ec93" }, "downloads": -1, "filename": "django_telegrambot-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4e08fa62f108a96dd0264f347ab32ae7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10187, "upload_time": "2016-10-04T09:40:42", "url": "https://files.pythonhosted.org/packages/97/7a/850550de47005cfe2c4ee4128a604408682ff280a0197e8a953dbb7e17c6/django_telegrambot-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e04f614187711c7e8e86fd6e4208c412", "sha256": "7d82e86e2acff3571c03411aea3f0bee8e837991e8780a2d851fe7cb922dcaf7" }, "downloads": -1, "filename": "django-telegrambot-0.2.4.tar.gz", "has_sig": false, "md5_digest": "e04f614187711c7e8e86fd6e4208c412", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8762, "upload_time": "2016-10-04T09:40:44", "url": "https://files.pythonhosted.org/packages/9d/4a/fcf556dafd70c16fd95285c9f89cb341e4c40de43b06f6c50d7211730f22/django-telegrambot-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "8b40a7578f6f6b68298f41159bd1f56a", "sha256": "559957985709fff7608e3b6361c2281a0664bc1b3150f3e74014fc45063b72d1" }, "downloads": -1, "filename": "django-telegrambot-0.2.5.tar.gz", "has_sig": false, "md5_digest": "8b40a7578f6f6b68298f41159bd1f56a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8846, "upload_time": "2017-03-05T23:39:22", "url": "https://files.pythonhosted.org/packages/51/df/9f5d4aa3c98c856c606a94212ca9f8d9e96044d227ea8ac61c430a98ab9a/django-telegrambot-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "fa2ed04ba5c351a518943d14d1770a8f", "sha256": "cfd61abf54364ff0baad52b106c2d0016cec5d2e0060df6b9b2320e2c17ef1e7" }, "downloads": -1, "filename": "django-telegrambot-0.2.6.tar.gz", "has_sig": false, "md5_digest": "fa2ed04ba5c351a518943d14d1770a8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9211, "upload_time": "2017-04-08T10:59:35", "url": "https://files.pythonhosted.org/packages/9a/cf/64ca9d763b265fa127cf8e4debbcfaaf866da21a371a4de5df64e99ffe7f/django-telegrambot-0.2.6.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "4d313d8f4d4c34ae34dee818da6ce438", "sha256": "41305bf10496197dc5070355a14da21cee21a445bcc7e62049101ca3f5db7ceb" }, "downloads": -1, "filename": "django_telegrambot-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4d313d8f4d4c34ae34dee818da6ce438", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17512, "upload_time": "2017-05-25T19:19:42", "url": "https://files.pythonhosted.org/packages/40/32/d5061ccc185a2153ff3e1dd86fa4c181678d15784ba7acb6b9703bfe7097/django_telegrambot-1.0.0-py2.py3-none-any.whl" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "5ae65f965ad5b5a8572abb3784ea8e42", "sha256": "9cd222e8fa82eaab5bca251842f9eab061fac2280eb485b3666cf28994ad7474" }, "downloads": -1, "filename": "django_telegrambot-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5ae65f965ad5b5a8572abb3784ea8e42", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18094, "upload_time": "2017-06-02T01:11:19", "url": "https://files.pythonhosted.org/packages/cf/7c/1d454c8cc5100a1dfa7c2c7592ae6266f6ef922982fe51d277c418f2d034/django_telegrambot-1.0.1-py2.py3-none-any.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5ae65f965ad5b5a8572abb3784ea8e42", "sha256": "9cd222e8fa82eaab5bca251842f9eab061fac2280eb485b3666cf28994ad7474" }, "downloads": -1, "filename": "django_telegrambot-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5ae65f965ad5b5a8572abb3784ea8e42", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18094, "upload_time": "2017-06-02T01:11:19", "url": "https://files.pythonhosted.org/packages/cf/7c/1d454c8cc5100a1dfa7c2c7592ae6266f6ef922982fe51d277c418f2d034/django_telegrambot-1.0.1-py2.py3-none-any.whl" } ] }