{ "info": { "author": "Markus Ressel", "author_email": "mail@markusressel.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "# telegram-click [![Contributors](https://img.shields.io/github/contributors/markusressel/telegram-click.svg)](https://github.com/markusressel/telegram-click/graphs/contributors) [![MIT License](https://img.shields.io/github/license/markusressel/telegram-click.svg)](/LICENSE) ![Code Size](https://img.shields.io/github/languages/code-size/markusressel/telegram-click.svg) ![Latest Version](https://badge.fury.io/py/telegram-click.svg) [![Build Status](https://travis-ci.org/markusressel/telegram-click.svg?branch=master)](https://travis-ci.org/markusressel/telegram-click)\n\n[Click](https://github.com/pallets/click/) \ninspired command-line interface creation toolkit for \n[pyton-telegram-bot](https://github.com/python-telegram-bot/python-telegram-bot).\n\nTry the latest version of the [example.py](/example.py) out for yourself: [@PythonTelegramClickBot](http://t.me/PythonTelegramClickBot)\n\n

\n \n

\n\n# Features\n* [x] POSIX style argument parsing\n * [x] Quoted arguments (`/command \"Hello World\"`)\n * [x] Named arguments (`/command --text \"Hello World\"`)\n * [x] Optional arguments\n * [x] Type conversion including support for custom types\n * [x] Argument input validation\n* [x] Automatic help messages\n * [x] Show help messages when a command was used with invalid arguments\n * [x] List all available commands with a single method\n* [x] Permission handling\n * [x] Set up permissions for each command separately\n * [x] Limit command execution to private chats or group admins\n * [x] Combine permissions using logical operators\n * [x] Create custom permission handlers\n* [x] Error handling\n * [x] Automatically send error messages if something goes wrong\n * [x] Optionally send exception messages\n\n**telegram-click** is used by\n\n* [InfiniteWisdom](https://github.com/ekeih/InfiniteWisdom)\n* [DeineMudda](https://github.com/markusressel/DeineMudda)\n\nand hopefully many others :)\n\n# How to use\n\nInstall this library as a dependency to use it in your project.\n\n```shell\npip install telegram-click\n```\n\nThen annotate your command handler functions with the `@command` decorator\nof this library:\n\n```python\nfrom telegram import Update\nfrom telegram.ext import CallbackContext\nfrom telegram_click.decorator import command\nfrom telegram_click.argument import Argument\n\nclass MyBot:\n\n [...]\n\n @command(name='start', description='Start bot interaction')\n def _start_command_callback(self, update: Update, context: CallbackContext):\n # do something\n pass\n\n @command(name='age', \n description='Set age',\n arguments=[\n Argument(name='age',\n description='The new age',\n type=int,\n validator=lambda x: x > 0,\n example='25')\n ])\n def _age_command_callback(self, update: Update, context: CallbackContext, age: int):\n context.bot.send_message(update.effective_chat.id, \"New age: {}\".format(age))\n```\n\n## Arguments\n\n**telegram-click** automatically parses arguments based on \n[shlex POSIX rules](https://docs.python.org/3/library/shlex.html#parsing-rules)\nso in general space acts as an argument delimiter and quoted arguments \nare parsed as a single one (supporting both double (`\"`) and \nsingle (`'`) quote characters).\n\n### Naming\n\nArguments can have multiple names to allow for abbreviated names. The\nfirst name you specify for an argument will be used for the \ncallback parameter name (normalized to snake-case). Because of this\nit is advisable to specify the full argument name as the first one.\n\n### Types\n\nSince all user input initially is of type `str` there needs to be a type\nconversion if the expected type is not a `str`. For basic types like\n`bool`, `int`, `float` and `str` converters are built in to this library.\nIf you want to use other types you have to specify how to convert the \n`str` input to your type using the `converter` attribute of the \n`Argument` constructor:\n\n```python\nfrom telegram_click.argument import Argument\n\nArgument(name='age',\n description='The new age',\n type=MyType,\n converter=lambda x: MyType(x),\n validator=lambda x: x > 0,\n example='25')\n```\n\n## Permission handling\n\nIf a command should only be executable when a specific criteria is met \nyou can specify those criteria using the `permissions` parameter:\n\n```python\nfrom telegram import Update\nfrom telegram.ext import CallbackContext\nfrom telegram_click.decorator import command\nfrom telegram_click.permission import GROUP_ADMIN\n\n@command(name='permission', \n description='Needs permission',\n permissions=GROUP_ADMIN)\ndef _permission_command_callback(self, update: Update, context: CallbackContext):\n```\n\nMultiple permissions can be combined using `&`, `|` and `~` (not) operators.\n\nIf a user does not have permission to use a command it will not be displayed\nwhen this user generate a list of commands.\n\n### Integrated permission handlers\n\n| Name | Description |\n|-----------------------|--------------------------------------------|\n| `PRIVATE_CHAT` | The command can only be executed in a private chat |\n| `NORMAL_GROUP_CHAT` | The command can only be executed in a normal group |\n| `SUPER_GROUP_CHAT` | The command can only be executed in a supergroup |\n| `GROUP_CHAT` | The command can only be executed in either a normal or a supergroup |\n| `USER_ID` | Only users whose user id is specified have permission |\n| `USER_NAME` | Only users whose username is specified have permission |\n| `GROUP_CREATOR` | Only the group creator has permission |\n| `GROUP_ADMIN` | Only the group admin has permission |\n| `NOBODY` | Nobody has permission (useful for callbacks triggered via code instead of user interaction f.ex. \"unknown command\" handler) |\n| `ANYBODY` | Anybody has permission (this is the default) |\n\n### Custom permission handler\n\nIf none of the integrated handlers suit your needs you can simply write \nyour own permission handler by extending the `Permission` base class \nand pass an instance of the `MyPermission` class to the list of `permissions`:\n\n```python\nfrom telegram import Update\nfrom telegram.ext import CallbackContext\nfrom telegram_click.decorator import command\nfrom telegram_click.permission.base import Permission\nfrom telegram_click.permission import GROUP_ADMIN\n\nclass MyPermission(Permission):\n def evaluate(self, update: Update, context: CallbackContext) -> bool:\n from_user = update.effective_message.from_user\n return from_user.id in [12345, 32435]\n\n@command(name='permission', description='Needs permission',\n permissions=MyPermission() & GROUP_ADMIN)\ndef _permission_command_callback(self, update: Update, context: CallbackContext):\n```\n\n### Show \"Permission denied\" message\n\nBy default command calls coming from a user without permission are ignored.\nIf you want to send them a \"permission denied\" like message you can \npass this message to the `permission_denied_message` argument of the \n`@command` decorator.\n\n## Targeted commands\n\nTelegram supports the `@` notation to target commands at specific bot\nusernames:\n\n```\n/start # unspecified\n/start@myAwesomeBot # targeted at self\n/start@someOtherBot # targeted at other bot\n```\n\nWhen using a `MessageHandler` instead of a `CommandHandler`\nit is possible to catch even commands that are targeted at other bots.\nBy default only messages without a target, and messages that are targeted \ndirectly at your bot are processed.\n\nTo control this behaviour specify the `command_target` parameter:\n\n```python\nfrom telegram import Update\nfrom telegram.ext import CallbackContext\nfrom telegram_click.decorator import command\nfrom telegram_click import CommandTarget\nfrom telegram_click.permission import NOBODY\n\n@command(name=\"commands\",\n description=\"List commands supported by this bot.\",\n permissions=NOBODY,\n command_target=CommandTarget.UNSPECIFIED | CommandTarget.SELF)\ndef _unknown_command_callback(self, update: Update, context: CallbackContext):\n```\n\nYou can combine `CommandTarget`'s using logical operators like in the \nexample above.\n\n## Error handling\n\n**telegram-click** automatically handles errors in most situations.\n\nWhen an exception is raised the user will be notified that his \ncommand has crashed the server. By default he will only see\na general error message. If you want to send full stacktraces \ninstead, set the `print_error` parameter to `True`.\n\nThe user is also informed about input errors like\n* an argument can not be parsed correctly\n* an invalid value is passed for an argument\nIn these cases the user will get a more specific error message\nand a help message for the command he was trying to use.\n\n# Contributing\n\nGitHub is for social coding: if you want to write code, I encourage contributions through pull requests from forks\nof this repository. Create GitHub tickets for bugs and new features and comment on the ones that you are interested in.\n\n\n# License\n```text\ntelegram-click\nCopyright (c) 2019 Markus Ressel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/markusressel/telegram-click", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "telegram-click", "package_url": "https://pypi.org/project/telegram-click/", "platform": "", "project_url": "https://pypi.org/project/telegram-click/", "project_urls": { "Homepage": "https://github.com/markusressel/telegram-click" }, "release_url": "https://pypi.org/project/telegram-click/3.1.2/", "requires_dist": [ "emoji", "python-telegram-bot (==12.0.0)" ], "requires_python": "", "summary": "Click inspired command interface toolkit for pyton-telegram-bot", "version": "3.1.2" }, "last_serial": 5765606, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "41347cd5c22fb28ba62ce35c52a74812", "sha256": "e8cfd020321caff6b65fb9e94658f8c7fa62b3906dc81c505d9ed4f7ab9712ea" }, "downloads": -1, "filename": "telegram_click-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "41347cd5c22fb28ba62ce35c52a74812", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6619, "upload_time": "2019-07-14T12:45:02", "url": "https://files.pythonhosted.org/packages/8f/f2/8b2e299346d5e969fe5e37d8e2b3338a34a92b506b38233db766b2efc05c/telegram_click-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b84702328409a224eb3f1e915c1ae12", "sha256": "cef82b181e9b36ded0d2b4128a4c6a45aad99013a124ab3be28dd81275a3b811" }, "downloads": -1, "filename": "telegram_click-1.0.0.tar.gz", "has_sig": false, "md5_digest": "4b84702328409a224eb3f1e915c1ae12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4508, "upload_time": "2019-07-14T12:45:04", "url": "https://files.pythonhosted.org/packages/9e/1e/82459e69756b152a0f6ad524606802a2dd988ebaa628131114dec86ea17d/telegram_click-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "3a4ea19c35298fcde99ad7c380ee5415", "sha256": "7682071609a24ef4472c5f18ae6c22db56f0d136b9a379184cabee153d171c72" }, "downloads": -1, "filename": "telegram_click-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3a4ea19c35298fcde99ad7c380ee5415", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6944, "upload_time": "2019-07-14T12:54:46", "url": "https://files.pythonhosted.org/packages/c8/39/76d4c49fa4ea72a0cb62ff2834dc0daa759868fc00928fe2e785e8e6b457/telegram_click-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "741bfbdd65cfe01638cc41e7de451955", "sha256": "fd71b2ac199fe94a0773fc20de579ea22c9b60d2ee8f1f4c8b6980f4c637c199" }, "downloads": -1, "filename": "telegram_click-1.0.1.tar.gz", "has_sig": false, "md5_digest": "741bfbdd65cfe01638cc41e7de451955", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4876, "upload_time": "2019-07-14T12:54:48", "url": "https://files.pythonhosted.org/packages/bb/08/de7d048b31dfd4a8dcec9c5912ca900c01a4d40d28358357d5e0b4f9aad8/telegram_click-1.0.1.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "1ad9216128f8b6c61865ee1ad6f5b1f6", "sha256": "d61fa77e6970c9b1874904303266db0428e93374c86b401023e5968e66118343" }, "downloads": -1, "filename": "telegram_click-2.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1ad9216128f8b6c61865ee1ad6f5b1f6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 14827, "upload_time": "2019-07-15T16:35:32", "url": "https://files.pythonhosted.org/packages/bd/51/2d83b1294c419b76ab14331a1fb295f0d2f9a48e5cf1d76f2a653915d455/telegram_click-2.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "30fe825234f84e5e757051c9964c80fd", "sha256": "169308e6e3108bcb91c7330ee5cf81e04ae22b49ef5e5c98cd29ed5a39a33888" }, "downloads": -1, "filename": "telegram_click-2.0.0.tar.gz", "has_sig": false, "md5_digest": "30fe825234f84e5e757051c9964c80fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9075, "upload_time": "2019-07-15T16:35:35", "url": "https://files.pythonhosted.org/packages/93/15/8919ec0e52aa9aadf036b91f3226535e8ca9bad154a47e6dc0493623e416/telegram_click-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "87883018631227d694c11187e01aefa6", "sha256": "2674ee4003f2d818d3569e94a73345950e83fd239ec2cdf460df26355c21892d" }, "downloads": -1, "filename": "telegram_click-2.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "87883018631227d694c11187e01aefa6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 15012, "upload_time": "2019-07-15T16:56:33", "url": "https://files.pythonhosted.org/packages/73/1a/6691545f8e5c3e99846688fb7b6f43d41a293bcc0842b885cee230e3dd3e/telegram_click-2.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9ff7defe747890364850c8220d0e6d57", "sha256": "b49c0ae9cd38a64cd5ecd2fb2e27634349c21810f8f31ac7fa9d6895075b9843" }, "downloads": -1, "filename": "telegram_click-2.0.1.tar.gz", "has_sig": false, "md5_digest": "9ff7defe747890364850c8220d0e6d57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9279, "upload_time": "2019-07-15T16:56:37", "url": "https://files.pythonhosted.org/packages/0a/56/f3db242a238f20202627306307b3eb26046e5f820632d04ff34460c2dac1/telegram_click-2.0.1.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "98789a1899bd0b763dd2bea1f5720d7b", "sha256": "d03b33ef25511f10df90c27710f67b56a152657dc655b70e68ec075f96c1fc28" }, "downloads": -1, "filename": "telegram_click-2.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "98789a1899bd0b763dd2bea1f5720d7b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17442, "upload_time": "2019-07-15T22:22:55", "url": "https://files.pythonhosted.org/packages/4b/4a/dd8760b7a306b6b80df87a4beae1a67c2795663c6906d07ad8ada241bd7f/telegram_click-2.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ee8fb279ee212be375a1a6680b5a0ccc", "sha256": "7309b09adcb3e5338456e6fc70aa4687701f09567f2c90ce7530a1c9ddccf606" }, "downloads": -1, "filename": "telegram_click-2.1.0.tar.gz", "has_sig": false, "md5_digest": "ee8fb279ee212be375a1a6680b5a0ccc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10913, "upload_time": "2019-07-15T22:22:58", "url": "https://files.pythonhosted.org/packages/72/28/b4edea81aca151d571d7e3f668b1c0aeb834f403adf1fbb88c14e24c6641/telegram_click-2.1.0.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "f067d49ebd49265ef350aa1327c63fac", "sha256": "3f3dad3f87c7d7a6f04017777f88f6332d645b59037176d0890584f48830ae65" }, "downloads": -1, "filename": "telegram_click-2.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f067d49ebd49265ef350aa1327c63fac", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17877, "upload_time": "2019-07-16T21:29:18", "url": "https://files.pythonhosted.org/packages/3d/ba/63edadbf131e36707142215a038a659afb07fba1a32e22f4355f63935ae0/telegram_click-2.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8aba368a13919873289121a610fc7f6c", "sha256": "9db714c83f04ff8ee1b3891d33d93e38e65827ca9f3d8a4daacdb6ac5ad43024" }, "downloads": -1, "filename": "telegram_click-2.2.0.tar.gz", "has_sig": false, "md5_digest": "8aba368a13919873289121a610fc7f6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11598, "upload_time": "2019-07-16T21:29:21", "url": "https://files.pythonhosted.org/packages/ce/87/aa142f1be98e1b89fa38a7a7d30e8553eb934a62fe522b3cca1183eed792/telegram_click-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "2a25a24dca5c731bb92ced94b0fb8845", "sha256": "ea0174d32197f1b1d29bdc72f7c5449a5501687565f304cbee0c0a6c1b9e8ae9" }, "downloads": -1, "filename": "telegram_click-2.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "2a25a24dca5c731bb92ced94b0fb8845", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17936, "upload_time": "2019-07-16T23:14:03", "url": "https://files.pythonhosted.org/packages/c1/f9/32e443985c021e143551c07c5e6a3e30d14369ddeee4005ca5980cc435ba/telegram_click-2.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b77237bfa4678462aa4b4471ee1c3365", "sha256": "956d6906c3039724a9ae0b77efe6bfd1688f021e54436985641b1e47e28ceca3" }, "downloads": -1, "filename": "telegram_click-2.2.1.tar.gz", "has_sig": false, "md5_digest": "b77237bfa4678462aa4b4471ee1c3365", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11638, "upload_time": "2019-07-16T23:14:05", "url": "https://files.pythonhosted.org/packages/af/aa/e485578af5eeeecb0806595091b5c56bb3800d8553fd87074642263cadb1/telegram_click-2.2.1.tar.gz" } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "22a775156b25c3e25e4f9f185d7e5c05", "sha256": "5b3adf5a43134d2389ddf1b1f0bfadf3942fdb2907c7d3e367c16ae013f99ac4" }, "downloads": -1, "filename": "telegram_click-2.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "22a775156b25c3e25e4f9f185d7e5c05", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16809, "upload_time": "2019-07-17T00:16:23", "url": "https://files.pythonhosted.org/packages/9a/ef/e2826ccf915e409d1d7ab06d5fb0ac32a1d17e41c2405b49437e2227eb5a/telegram_click-2.2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8b56d9cf53fd6e97e1c1553c815295b6", "sha256": "0091b71392b2ee4492a3dd338abb6f35e43e7e5ffcd3debc85815e3a85c46320" }, "downloads": -1, "filename": "telegram_click-2.2.3.tar.gz", "has_sig": false, "md5_digest": "8b56d9cf53fd6e97e1c1553c815295b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11149, "upload_time": "2019-07-17T00:16:24", "url": "https://files.pythonhosted.org/packages/d1/47/84339d3ae09691c55ada417ed8da6528c9a8ccf2b6fe06710357dae2c728/telegram_click-2.2.3.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "232fc8078b04b1b5131715137c489463", "sha256": "24c668819412cce74f0533cea3d5117ca3aa0bdea061157ab10ab69156c022f8" }, "downloads": -1, "filename": "telegram_click-2.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "232fc8078b04b1b5131715137c489463", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18756, "upload_time": "2019-07-17T22:56:35", "url": "https://files.pythonhosted.org/packages/7f/31/4fbfaa87db5475e6f36ae1dd83fc59401a49633b7275b0c2fc92c75dad9d/telegram_click-2.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bc36694382acbd9fd2fb2cf83e832889", "sha256": "2e434598b894c1da02b31ae6122038a7a4acaf661902034f2342c08c45511cc7" }, "downloads": -1, "filename": "telegram_click-2.3.0.tar.gz", "has_sig": false, "md5_digest": "bc36694382acbd9fd2fb2cf83e832889", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12698, "upload_time": "2019-07-17T22:56:36", "url": "https://files.pythonhosted.org/packages/9d/05/642bc14b98f221357dc4cd02c10cfb1dd094400e5e5524fd95d9bf24740b/telegram_click-2.3.0.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "3471c190a187a225dbd4b585b2344b8e", "sha256": "985210624c000184d2e81cf1c569931ba024b716472e9f1c037a81262a680143" }, "downloads": -1, "filename": "telegram_click-2.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3471c190a187a225dbd4b585b2344b8e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23267, "upload_time": "2019-08-14T03:20:39", "url": "https://files.pythonhosted.org/packages/da/ea/5291bf11fafae17c69fde8b5da8c8cba9a781d79d6a0209bc222b08284fa/telegram_click-2.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "823c986a4351363a9bf37b9f3d74bdd7", "sha256": "c71ab4410588bfaadae93a81b9b932484dd852b80dcfebece46489eefc7bd6a3" }, "downloads": -1, "filename": "telegram_click-2.4.0.tar.gz", "has_sig": false, "md5_digest": "823c986a4351363a9bf37b9f3d74bdd7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14791, "upload_time": "2019-08-14T03:20:40", "url": "https://files.pythonhosted.org/packages/ca/39/bb1070c33db49223bd31a355b1ac106faea3e38add4842bd502ee98ef48f/telegram_click-2.4.0.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "04251b2465c59135b2545be0561c64dd", "sha256": "e4537a3a3b78e9faa3ffc3071300535e931eaccd13471ff484abf4ecd92ec765" }, "downloads": -1, "filename": "telegram_click-3.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "04251b2465c59135b2545be0561c64dd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26628, "upload_time": "2019-08-23T00:53:40", "url": "https://files.pythonhosted.org/packages/ba/d8/1237a93a5116c46bc31c143cc4850c01276dcd47e6e76bc2fb8b50f06c28/telegram_click-3.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6025a6475973815522cbd71942e5edfb", "sha256": "89d1cb525421310963fd044ddd0473e63dabaf18b1bc6b5618110b5eaaf48d50" }, "downloads": -1, "filename": "telegram_click-3.0.0.tar.gz", "has_sig": false, "md5_digest": "6025a6475973815522cbd71942e5edfb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16327, "upload_time": "2019-08-23T00:53:42", "url": "https://files.pythonhosted.org/packages/b6/6a/0216f98d98a5b3bff67bde8079d602a3a1a7b8c0c65fe072ccd1c675c087/telegram_click-3.0.0.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "e9f63aeffcf8edc61842831e684de155", "sha256": "444bda1bd736733d5913f9ea5b30261cee2e237c5b64915bb28c38dee83cbcf5" }, "downloads": -1, "filename": "telegram_click-3.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e9f63aeffcf8edc61842831e684de155", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27624, "upload_time": "2019-08-27T02:43:44", "url": "https://files.pythonhosted.org/packages/ab/bb/65b2975794c025435e29a2a4c3e5f3deaed4bfa58b724c2fc80e383a0541/telegram_click-3.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "95457a3d9f1594f3d8f8a7ef1d2e34ca", "sha256": "2afe782109cd67c82d98459aebb9e16f29c146987e77694bf4e8cc5056a92405" }, "downloads": -1, "filename": "telegram_click-3.1.0.tar.gz", "has_sig": false, "md5_digest": "95457a3d9f1594f3d8f8a7ef1d2e34ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17484, "upload_time": "2019-08-27T02:43:46", "url": "https://files.pythonhosted.org/packages/cd/b7/d1030e4f1957e9a0d463492b6d9f02e742c30ee5c77ceb33e0c0a2b2f6e5/telegram_click-3.1.0.tar.gz" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "d12327f6f030c8029aacfb0a2c08e8c2", "sha256": "c62053a04d6be2bf329a98a5301a44f0781285500f1859070e07aa5a852a14e1" }, "downloads": -1, "filename": "telegram_click-3.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d12327f6f030c8029aacfb0a2c08e8c2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27615, "upload_time": "2019-08-28T23:33:28", "url": "https://files.pythonhosted.org/packages/a7/7c/9894a242c4d6a5501cd53445df78536ce525efaf023c241ece56287e5366/telegram_click-3.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f261777e8678f1661230fb0f6a364af0", "sha256": "5ad6341c97903f2238fdbf4cacc8cf160eb9a6dd7ab36fb5aa3fcdf20a2840e4" }, "downloads": -1, "filename": "telegram_click-3.1.1.tar.gz", "has_sig": false, "md5_digest": "f261777e8678f1661230fb0f6a364af0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17483, "upload_time": "2019-08-28T23:33:30", "url": "https://files.pythonhosted.org/packages/89/96/0c39abb53e5e40062471d11a2f0a55e00100f8f9f49c868dee23c0afa6b8/telegram_click-3.1.1.tar.gz" } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "b13f42dc9cc0e6b16d67cb99279e6455", "sha256": "07298c34132d62275a4b19a28a3cc1b9aec0bb1deefcdea3db4b63a6f9e5fc09" }, "downloads": -1, "filename": "telegram_click-3.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b13f42dc9cc0e6b16d67cb99279e6455", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27617, "upload_time": "2019-08-31T23:49:39", "url": "https://files.pythonhosted.org/packages/c7/e4/f7678bc303b5f7926e1d10d227351e58ba2596da54189fb30a5ab2e7bfdf/telegram_click-3.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8833354b6dcb1cd7c1b8d0d17d9df7e3", "sha256": "d243c3b067eb42bc8264d5135f57188cb916b6a5dfe3cdaf6438cf9ffe842d1d" }, "downloads": -1, "filename": "telegram_click-3.1.2.tar.gz", "has_sig": false, "md5_digest": "8833354b6dcb1cd7c1b8d0d17d9df7e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17477, "upload_time": "2019-08-31T23:49:40", "url": "https://files.pythonhosted.org/packages/6c/34/aebd2240de858ee377098661d5df2785018d112d0d2440fe5d10bd45cb4c/telegram_click-3.1.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b13f42dc9cc0e6b16d67cb99279e6455", "sha256": "07298c34132d62275a4b19a28a3cc1b9aec0bb1deefcdea3db4b63a6f9e5fc09" }, "downloads": -1, "filename": "telegram_click-3.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b13f42dc9cc0e6b16d67cb99279e6455", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27617, "upload_time": "2019-08-31T23:49:39", "url": "https://files.pythonhosted.org/packages/c7/e4/f7678bc303b5f7926e1d10d227351e58ba2596da54189fb30a5ab2e7bfdf/telegram_click-3.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8833354b6dcb1cd7c1b8d0d17d9df7e3", "sha256": "d243c3b067eb42bc8264d5135f57188cb916b6a5dfe3cdaf6438cf9ffe842d1d" }, "downloads": -1, "filename": "telegram_click-3.1.2.tar.gz", "has_sig": false, "md5_digest": "8833354b6dcb1cd7c1b8d0d17d9df7e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17477, "upload_time": "2019-08-31T23:49:40", "url": "https://files.pythonhosted.org/packages/6c/34/aebd2240de858ee377098661d5df2785018d112d0d2440fe5d10bd45cb4c/telegram_click-3.1.2.tar.gz" } ] }