{ "info": { "author": "Rahiel Kasim", "author_email": "rahielkasim@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: Python :: 3", "Topic :: Communications :: Chat", "Topic :: Utilities" ], "description": "telegram-send\n=============\n\n`Version `__\n`pyversions `__\n`Downloads `__\n`License `__\n\nTelegram-send is a command-line tool to send messages and files over\nTelegram to your account, to a group or to a channel. It provides a\nsimple interface that can be easily called from other programs.\n\n**Table of Contents**\n\n- `Usage <#usage>`__\n- `Installation <#installation>`__\n- `Examples <#examples>`__\n\n - `Alert on completion of shell\n commands <#alert-on-completion-of-shell-commands>`__\n - `Periodic messages with cron <#periodic-messages-with-cron>`__\n - `Supervisor process state\n notifications <#supervisor-process-state-notifications>`__\n - `Usage from Python <#usage-from-python>`__\n - `Cron job output <#cron-job-output>`__\n - `ASCII pictures <#ascii-pictures>`__\n\n- `Questions & Answers <#questions--answers>`__\n\n - `How to use a proxy? <#how-to-use-a-proxy>`__\n - `How to send the same message to multiple\n users? <#how-to-send-the-same-message-to-multiple-users>`__\n\n- `Uninstallation <#uninstallation>`__\n\nUsage\n=====\n\nTo send a message:\n\n.. code:: shell\n\n telegram-send \"Hello, World!\"\n\nThere is a maximum message length of 4096 characters, larger messages\nwill be automatically split up into smaller ones and sent separately.\n\nTo send a message using Markdown or HTML formatting:\n\n.. code:: shell\n\n telegram-send --format markdown \"Only the *bold* use _italics_\"\n telegram-send --format html \"
fixed-width messages
are also supported\"\n\nNote that not all Markdown syntax or all HTML tags are supported. For\nmore information on supported formatting, see the `formatting\noptions `__.\n\nThe ``--pre`` flag formats messages as fixed-width text:\n\n.. code:: shell\n\n telegram-send --pre \"monospace\"\n\nTo send a message without link previews:\n\n.. code:: shell\n\n telegram-send --disable-web-page-preview \"https://github.com/rahiel/telegram-send\"\n\nTo send a message from stdin:\n\n.. code:: shell\n\n printf 'With\\nmultiple\\nlines' | telegram-send --stdin\n\nWith this option you can send the output of any program.\n\nTo send a file (maximum file size of 50 MB) with an optional caption:\n\n.. code:: shell\n\n telegram-send --file quran.pdf --caption \"The Noble Qur'an\"\n\nTo send an image (maximum file size of 10 MB) with an optional caption:\n\n.. code:: shell\n\n telegram-send --image moon.jpg --caption \"The Moon at Night\"\n\nTo send a sticker:\n\n.. code:: shell\n\n telegram-send --sticker sticker.webp\n\nTo send a GIF or a soundless MP4 video (encoded as H.264/MPEG-4 AVC with\na maximum file size of 50 MB) with an optional caption:\n\n.. code:: shell\n\n telegram-send --animation kitty.gif --caption \"\ud83d\udc31\"\n\nTo send an MP4 video (maximum file size of 50 MB) with an optional\ncaption:\n\n.. code:: shell\n\n telegram-send --video birds.mp4 --caption \"Singing Birds\"\n\nTo send an audio file with an optional caption:\n\n.. code:: shell\n\n telegram-send --audio \"Pachelbel's Canon.mp3\" --caption \"Johann Pachelbel - Canon in D\"\n\nTo send a location via latitude and longitude:\n\n.. code:: shell\n\n telegram-send --location 35.5398033 -79.7488965\n\nTelegram-send integrates into your file manager (Thunar, Nautilus and\nNemo):\n\n|image0|\n\nInstallation\n============\n\nInstall telegram-send system-wide with pip:\n\n.. code:: shell\n\n sudo pip3 install telegram-send\n\nOr if you want to install it for a single user without root permissions:\n\n.. code:: shell\n\n pip3 install telegram-send\n\nIf installed for a single user you need to add ``~/.local/bin`` to their\npath, refer to this\n`guide `__\nfor instructions.\n\nAnd finally configure it with ``telegram-send --configure`` if you want\nto send to your account, ``telegram-send --configure-group`` to send to\na group or with ``telegram-send --configure-channel`` to send to a\nchannel.\n\nUse the ``--config`` option to use multiple configurations. For example\nto set up sending to a channel in a non-default configuration:\n``telegram-send --config channel.conf --configure-channel``. Then always\nspecify the config file to use it:\n``telegram-send --config channel.conf \"Bismillah\"``.\n\nThe ``-g`` option uses the global configuration at\n``/etc/telegram-send.conf``. Configure it once:\n``sudo telegram-send -g --configure`` and all users on the system can\nsend messages with this config: ``telegram-send -g \"GNU\"`` (provided\nyou\u2019ve installed it system-wide.)\n\nExamples\n========\n\nHere are some examples to get a taste of what is possible with\ntelegram-send.\n\nAlert on completion of shell commands\n-------------------------------------\n\nReceive an alert when long-running commands finish with the ``tg``\nalias, based on Ubuntu\u2019s built-in ``alert``. Put the following in your\n``~/.bashrc``:\n\n.. code:: shell\n\n alias tg='telegram-send \"$([ $? = 0 ] && echo \"\" || echo \"error: \") $(history|tail -n1|sed -e '\\''s/^\\s*[0-9]\\+\\s*//;s/[;&|]\\s*tg$//'\\'')\"'\n\nAnd then use it like ``sleep 10; tg``. This will send you a message with\nthe completed command, in this case ``sleep 10``.\n\nWhat if you started a program and forgot to set the alert? Suspend the\nprogram with Ctrl+Z and then enter\n``fg; telegram-send \"your message here\"``.\n\nTo automatically receive notifications for long running commands, use\n`ntfy `__ with the Telegram backend.\n\nPeriodic messages with cron\n---------------------------\n\nWe can combine telegram-send with\n`cron `__ to periodically send\nmessages. Here we will set up a cron job to send the `Astronomy Picture\nof the Day `__ to the\n`astropod `__ channel.\n\nCreate a bot by talking to the\n`BotFather `__, create a public channel\nand add your bot as administrator to the channel. You will need to\nexplicitly search for your bot\u2019s username when adding it. Then run\n``telegram-send --configure-channel --config astropod.conf``. We will\nuse the\n`apod.py `__\nscript that gets the daily picture and calls telegram-send to post it to\nthe channel.\n\nWe create a cron job ``/etc/cron.d/astropod`` (as root) with the\ncontent:\n\n.. code:: shell\n\n SHELL=/bin/sh\n PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin\n\n # m h dom mon dow user command\n 0 1 * * * telegram ~/apod.py --config ~/astropod.conf\n\nMake sure the file ends with a newline. Cron will then execute the\nscript every day at 1:00 as the user ``telegram``. Join the\n`astropod `__ channel to see the result.\n\nSupervisor process state notifications\n--------------------------------------\n\n`Supervisor `__ controls and monitors processes.\nIt can start processes at boot, restart them if they fail and also\nreport on their status.\n`Supervisor-alert `__ is a\nsimple plugin for Supervisor that sends messages on process state\nupdates to an arbitrary program. Using it with telegram-send (by using\nthe ``--telegram`` option), you can receive notifications whenever one\nof your processes exits.\n\nUsage from Python\n-----------------\n\nBecause telegram-send is written in Python, you can use its\nfunctionality directly from other Python programs:\n``import telegram_send``. Look at the\n`documentation `__.\n\nCron job output\n---------------\n\nCron has a built-in feature to send the output of jobs via mail. In this\nexample we\u2019ll send cron output over Telegram. Here is the example cron\njob:\n\n.. code:: shell\n\n SHELL=/bin/sh\n PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin\n\n # m h dom mon dow user command\n 0 * * * * rahiel chronic ~/script.bash 2>&1 | telegram-send -g --stdin\n\nThe command is\n``chronic ~/script.bash 2>&1 | telegram-send -g --stdin``. We run the\ncron job with ``chronic``, a tool from\n`moreutils `__. Chronic makes sure\nthat a command produces no output unless it fails. No news is good news!\nIf our script fails, chronic passes the output through the pipe (``|``)\nto telegram-send. We also send the output of stderr by redirecting\nstderr to stdout (``2>&1``).\n\nHere we\u2019ve installed telegram-send system-wide with ``sudo`` and use the\nglobal configuration (``-g``) so ``telegram-send`` is usable in the cron\njob. Place the cron job in ``/etc/cron.d/`` and make sure the file ends\nwith a newline. The filename can\u2019t contain a ``.`` either.\n\nASCII pictures\n--------------\n\nCombining ``--stdin`` and ``--pre``, we can send ASCII pictures:\n\n.. code:: shell\n\n ncal -bh | telegram-send --pre --stdin\n apt-get moo | telegram-send --pre --stdin\n\nQuestions & Answers\n===================\n\nHow to use a proxy?\n-------------------\n\nYou can set a proxy with an environment variable:\n\n.. code:: shell\n\n https_proxy=https://ip:port telegram-send \"hello\"\n\nWithin Python you can set the environment variable with:\n\n.. code:: python\n\n os.environ[\"https_proxy\"] = \"https://ip:port\"\n\nIf you have a SOCKS proxy, you need to install support for it:\n\n.. code:: python\n\n pip3 install pysocks\n\nIf you installed ``telegram-send`` with ``sudo``, you also need to\ninstall ``pysocks`` with ``sudo``.\n\nHow to send the same message to multiple users?\n-----------------------------------------------\n\nFirst you configure telegram-send for every recipient you want to send\nmessages to:\n\n.. code:: shell\n\n telegram-send --config user1.conf --configure\n telegram-send --config group1.conf --configure-group\n telegram-send --config group2.conf --configure-group\n telegram-send --config channel1.conf --configure-channel\n\nYou will need all of the above config files. Now to send a message to\nall of the above configured recipients:\n\n.. code:: shell\n\n telegram-send --config user1.conf \\\n --config group1.conf \\\n --config group2.conf \\\n --config channel1.conf \\\n \"Multicasting!\"\n\nHow to get sticker files?\n-------------------------\n\nIn Telegram Desktop you right click a sticker and choose \u201cSave Image\nAs\u2026\u201d. You can then send the saved ``webp`` file with\n``telegram-send --sticker sticker.webp``.\n\nUninstallation\n==============\n\n.. code:: shell\n\n sudo telegram-send --clean\n sudo pip3 uninstall telegram-send\n\nOr if you installed it for a single user:\n\n.. code:: shell\n\n telegram-send --clean\n pip3 uninstall telegram-send\n\n.. |image0| image:: https://cloud.githubusercontent.com/assets/6839756/16735957/51c41cf4-478b-11e6-874a-282f559fb9d3.png\n\n\n\n", "description_content_type": "", "docs_url": "https://pythonhosted.org/telegram-send/", "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/rahiel/telegram-send", "keywords": "telegram send message file", "license": "GPLv3+", "maintainer": "", "maintainer_email": "", "name": "telegram-send", "package_url": "https://pypi.org/project/telegram-send/", "platform": "", "project_url": "https://pypi.org/project/telegram-send/", "project_urls": { "Homepage": "https://github.com/rahiel/telegram-send" }, "release_url": "https://pypi.org/project/telegram-send/0.24/", "requires_dist": [ "python-telegram-bot (>=12.1.1)", "colorama", "appdirs" ], "requires_python": ">=3.5", "summary": "Send messages and files over Telegram from the command-line.", "version": "0.24" }, "last_serial": 5966731, "releases": { "0.10": [ { "comment_text": "", "digests": { "md5": "11c1570deaaba71869906a12719b1556", "sha256": "cfdc9130ccf9921396fda2a6648dfc085ccefa4e33a7c44c26c6192fc5352f2d" }, "downloads": -1, "filename": "telegram_send-0.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "11c1570deaaba71869906a12719b1556", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13463, "upload_time": "2017-07-28T15:29:45", "url": "https://files.pythonhosted.org/packages/24/e8/4762ff7fc9f7c4a814c004fa67b2a1c430a2a37c7a82c36e838f0de621de/telegram_send-0.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2f2ff62c1d49eb1457cbdc85a9642f63", "sha256": "d1432cc97530eaf55e7a8cb59145ac55fb46bade320348d1631f011e4f3dee62" }, "downloads": -1, "filename": "telegram-send-0.10.tar.gz", "has_sig": false, "md5_digest": "2f2ff62c1d49eb1457cbdc85a9642f63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9014, "upload_time": "2017-07-28T15:29:47", "url": "https://files.pythonhosted.org/packages/1f/bf/218a4ad3637451555f783e58b3ddc33d741668ac96a6b91c4e5fc2d701e1/telegram-send-0.10.tar.gz" } ], "0.11": [ { "comment_text": "", "digests": { "md5": "edee94fcdd54ba080611f0ccd1c23f28", "sha256": "c3c83a9a2a79768dd671598a34dd0038e971313f0580be25281a30549c861142" }, "downloads": -1, "filename": "telegram_send-0.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "edee94fcdd54ba080611f0ccd1c23f28", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13494, "upload_time": "2017-08-14T12:19:22", "url": "https://files.pythonhosted.org/packages/00/6d/45b4680dd74469a09244cb900614162538d6c9a6b4061fd580bee62028f4/telegram_send-0.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cfc72f3cbf31670ebc67c36dda1cd6a6", "sha256": "7dc7e7006c989ce4dc08158567f2eb5e2cabcfdfa92cbc4ab4c760056ae25432" }, "downloads": -1, "filename": "telegram-send-0.11.tar.gz", "has_sig": false, "md5_digest": "cfc72f3cbf31670ebc67c36dda1cd6a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9043, "upload_time": "2017-08-14T12:19:24", "url": "https://files.pythonhosted.org/packages/20/bb/c4bbc1c2a4227ea40226fc42f0e65d6bb1709e20f924049d217cdad2d542/telegram-send-0.11.tar.gz" } ], "0.12": [ { "comment_text": "", "digests": { "md5": "8e74c31254e026a4d73920b3a907af33", "sha256": "942a91093b6decc428a725a5221f826bc09d31ab1ea57d3063ca825acf017a46" }, "downloads": -1, "filename": "telegram_send-0.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8e74c31254e026a4d73920b3a907af33", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13740, "upload_time": "2017-08-14T14:23:53", "url": "https://files.pythonhosted.org/packages/db/c2/e089a98a96170771749153e28e6eb88cbbac91bd1e1432187c251b8d6811/telegram_send-0.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ef4bcc31611aaf39ed10bc984aebee9", "sha256": "8fe0d9e143e8598e901ea8a87a811ccb1fdf976322f6d90f51f8c20c395d61f8" }, "downloads": -1, "filename": "telegram-send-0.12.tar.gz", "has_sig": false, "md5_digest": "2ef4bcc31611aaf39ed10bc984aebee9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9287, "upload_time": "2017-08-14T14:23:54", "url": "https://files.pythonhosted.org/packages/0c/b2/7cf357aa5759f1386276f7899b0db96417dbd492d28d97ad0469a02501cc/telegram-send-0.12.tar.gz" } ], "0.13": [ { "comment_text": "", "digests": { "md5": "273efaaa20b869ff2626c0f30f302671", "sha256": "16fabddb8073c1b1cb22417201bf3bcf0e9961fbebe9e84c27302b1fd13383f4" }, "downloads": -1, "filename": "telegram_send-0.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "273efaaa20b869ff2626c0f30f302671", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13924, "upload_time": "2017-08-14T20:39:22", "url": "https://files.pythonhosted.org/packages/45/4e/3f6df8641a384bac1ba75afefd875aae1203eca2ecef4a8bc08eae400875/telegram_send-0.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eb81487b6b9630e19372f28f8a99f077", "sha256": "26c87b3d740022995124c0ce117d8372df73ac3af84ff521384364173aed3d4d" }, "downloads": -1, "filename": "telegram-send-0.13.tar.gz", "has_sig": false, "md5_digest": "eb81487b6b9630e19372f28f8a99f077", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9467, "upload_time": "2017-08-14T20:39:24", "url": "https://files.pythonhosted.org/packages/dd/4f/a1ec16d4d9d94cb4f8708ec79d13fed54079508ee9559997cd2d5bc7f9b2/telegram-send-0.13.tar.gz" } ], "0.14": [ { "comment_text": "", "digests": { "md5": "4811a85c70c88a05399c6bfe6a6c9d6b", "sha256": "838a6595d6fea0e06710a5bf0c4fb58cad3fa25117365d0216e528979c643930" }, "downloads": -1, "filename": "telegram_send-0.14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4811a85c70c88a05399c6bfe6a6c9d6b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13944, "upload_time": "2017-08-22T07:42:10", "url": "https://files.pythonhosted.org/packages/be/ab/d9d643057fbe931b671212f1f55c095a0b450d700b4d60c48a5ab1fea32c/telegram_send-0.14-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6b9b8af7b21890c03d44b54fad1d7bd3", "sha256": "77be98d320c4ff2416db3174d2c33148c68b2110d10e6dab336282247276984c" }, "downloads": -1, "filename": "telegram-send-0.14.tar.gz", "has_sig": false, "md5_digest": "6b9b8af7b21890c03d44b54fad1d7bd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9480, "upload_time": "2017-08-22T07:42:12", "url": "https://files.pythonhosted.org/packages/9f/57/31d02373f5b313353b58642a4ab71a4c8a647502f3351421886f0339687a/telegram-send-0.14.tar.gz" } ], "0.15": [ { "comment_text": "", "digests": { "md5": "3a4140c40e8160a8674f40d5fdf9c3fc", "sha256": "7487a49b1fef25b19fd891c459bc1e8065a5a236bcae31f27f11288021c7e1ad" }, "downloads": -1, "filename": "telegram_send-0.15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3a4140c40e8160a8674f40d5fdf9c3fc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14265, "upload_time": "2017-09-21T14:55:33", "url": "https://files.pythonhosted.org/packages/b8/7e/b428dc014252588b86e91b5aee6c13ae05d2598596d2b1f0396300f173ae/telegram_send-0.15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "228c904e636832f0cc3dd7042f238d21", "sha256": "ce22e1204d99576e964541593e1017e641e95843533a2f1b8c421104ee949d03" }, "downloads": -1, "filename": "telegram-send-0.15.tar.gz", "has_sig": false, "md5_digest": "228c904e636832f0cc3dd7042f238d21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9671, "upload_time": "2017-09-21T14:55:34", "url": "https://files.pythonhosted.org/packages/37/7a/4bf8295ed801a6363b8aa86df16061239c78adf246a7ed8502d5d2ca7126/telegram-send-0.15.tar.gz" } ], "0.16": [ { "comment_text": "", "digests": { "md5": "31a5971001c455bb86452e5489f0fba3", "sha256": "6e8b5874163a09becc97e8b1047725fab4628b63d1d3f948dcccac3142a0bbbe" }, "downloads": -1, "filename": "telegram_send-0.16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "31a5971001c455bb86452e5489f0fba3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14295, "upload_time": "2017-09-29T10:17:10", "url": "https://files.pythonhosted.org/packages/dd/67/2882b634487f0704be55be7dc88028829f8980db0b52d9ac527dbdfc58dc/telegram_send-0.16-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "949e76da7df6db867e68369af147d96e", "sha256": "01d7c1d70ebf9f1c63edcd1daf39898247ff0e05e6ce39f5ecd8d2142f7acd10" }, "downloads": -1, "filename": "telegram-send-0.16.tar.gz", "has_sig": false, "md5_digest": "949e76da7df6db867e68369af147d96e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9699, "upload_time": "2017-09-29T10:17:13", "url": "https://files.pythonhosted.org/packages/77/7a/97b67d1ba7c1689c9847e1845e6fb7471ecec20125a743d378f90ea73adb/telegram-send-0.16.tar.gz" } ], "0.17": [ { "comment_text": "", "digests": { "md5": "663221a55fc53ea5fa2e88dd0585827d", "sha256": "5d4ec17df46abec5a07e4256f867dc77f01ac702061e4769b39b973aff6f4d7f" }, "downloads": -1, "filename": "telegram_send-0.17-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "663221a55fc53ea5fa2e88dd0585827d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14297, "upload_time": "2017-10-03T15:10:41", "url": "https://files.pythonhosted.org/packages/44/6d/f11eac645b9f925f5c903d906178ec3fe42016b401cb7f59b98b5fd3657d/telegram_send-0.17-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9d6e7f739bf08cff657ade6e4e96d024", "sha256": "b87765426de5c431f169dbd11a4f08f03cd5d0405403b77a7b81a3265123dc6b" }, "downloads": -1, "filename": "telegram-send-0.17.tar.gz", "has_sig": false, "md5_digest": "9d6e7f739bf08cff657ade6e4e96d024", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9703, "upload_time": "2017-10-03T15:10:44", "url": "https://files.pythonhosted.org/packages/da/e5/346cfdfc36cd009d04111381badebf344355ef944ac6176a22d211c4fd2a/telegram-send-0.17.tar.gz" } ], "0.18": [ { "comment_text": "", "digests": { "md5": "9ff93a47dda1e98306cca151f3a6c52d", "sha256": "cef6051fba2ca132daa82653066c6f9263d9d6a9c18dcfa5efe6e53d002bb1be" }, "downloads": -1, "filename": "telegram_send-0.18-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9ff93a47dda1e98306cca151f3a6c52d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15048, "upload_time": "2017-10-04T12:55:06", "url": "https://files.pythonhosted.org/packages/95/b1/2ce055de98035302744fbbc858f47a540313eba55e8edd62905b856f4306/telegram_send-0.18-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "264dd89b9613df81ada405c7ab30e456", "sha256": "1d39c6f8959977babd617242d0bd36f200a0c0719d52da0f2afd3ca4e60224fc" }, "downloads": -1, "filename": "telegram-send-0.18.tar.gz", "has_sig": false, "md5_digest": "264dd89b9613df81ada405c7ab30e456", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13181, "upload_time": "2017-10-04T12:55:09", "url": "https://files.pythonhosted.org/packages/93/ad/87a023b2c6cd7457b336d9e1d0c85e2f2042df3a4e5e377ef72f61804085/telegram-send-0.18.tar.gz" } ], "0.18.1": [ { "comment_text": "", "digests": { "md5": "07a888e3726fc33d1170c872efe4c982", "sha256": "029be89f8f27b5a4de731889c536ee7de1a819084e9b735787e293ecb0132a50" }, "downloads": -1, "filename": "telegram_send-0.18.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "07a888e3726fc33d1170c872efe4c982", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15109, "upload_time": "2018-01-13T13:59:12", "url": "https://files.pythonhosted.org/packages/a6/09/fd5300ee24ae7ab9d90edf148707442de9e6b1496c43e01bc6dbb8f4ecd8/telegram_send-0.18.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9bfcbd3ffa339813e83957bbefaebdef", "sha256": "9a133231e0a730e9c8db5d13e87822ae58486ddc59c520d83c38592502ef7812" }, "downloads": -1, "filename": "telegram-send-0.18.1.tar.gz", "has_sig": false, "md5_digest": "9bfcbd3ffa339813e83957bbefaebdef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14065, "upload_time": "2018-01-13T13:59:13", "url": "https://files.pythonhosted.org/packages/9b/ed/5beb3f6ca29417221c38cb4852027d4f517062dd235421c0b5e704b09ee8/telegram-send-0.18.1.tar.gz" } ], "0.19": [ { "comment_text": "", "digests": { "md5": "6c76d888a8c7cd63c18665f0bce1ec90", "sha256": "cbce31bfc0ade2edec5f394ee05232bad850a34e2e597171fc1aaea69797fa93" }, "downloads": -1, "filename": "telegram_send-0.19-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6c76d888a8c7cd63c18665f0bce1ec90", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15247, "upload_time": "2018-03-19T16:15:09", "url": "https://files.pythonhosted.org/packages/d9/02/c262df13b2ae16414d4a68d15ac071bf0179f121b47bd20142d7d1fc1598/telegram_send-0.19-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c535b4216f3dc1cb71fed20e5c00bf0", "sha256": "c686edec28bc542bba771e8448a8bcf977552c64beb941dd63c00fda8a47608e" }, "downloads": -1, "filename": "telegram-send-0.19.tar.gz", "has_sig": false, "md5_digest": "0c535b4216f3dc1cb71fed20e5c00bf0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14834, "upload_time": "2018-03-19T16:15:12", "url": "https://files.pythonhosted.org/packages/e1/62/9053bcf39defc100d065f81acc6dee9ce63c32c3aee4e27392cdddf78a49/telegram-send-0.19.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "8612dd4e777d5abb65be3b70300298c9", "sha256": "02465039f27414765fe512e4429b72e3831197a98c63f05746dafb8878f0952d" }, "downloads": -1, "filename": "telegram_send-0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "8612dd4e777d5abb65be3b70300298c9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5713, "upload_time": "2016-04-26T09:29:53", "url": "https://files.pythonhosted.org/packages/87/3e/7f235871a7193ae5b9ff76763739fe0a0f85c1a5ace4fab7ffa76dd3fc5c/telegram_send-0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "262d769454bc031ffa63c845ebe019b5", "sha256": "b2fcbd8d172313f69a0770c9f358e41903e96b9f66ed6825f694093aff2e5506" }, "downloads": -1, "filename": "telegram-send-0.2.tar.gz", "has_sig": false, "md5_digest": "262d769454bc031ffa63c845ebe019b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3705, "upload_time": "2016-04-26T09:34:53", "url": "https://files.pythonhosted.org/packages/c3/21/e95e869843473ad2601f5d1ca62b2ce1b71bc13a4d93eb84ef8539dc9344/telegram-send-0.2.tar.gz" } ], "0.20": [ { "comment_text": "", "digests": { "md5": "6a2368b4ea4384ba59bcc2a1c7f8c2f3", "sha256": "e3d3367c340003b334def9d502063d2d304a2e78a837c35228f53278a107365c" }, "downloads": -1, "filename": "telegram_send-0.20-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a2368b4ea4384ba59bcc2a1c7f8c2f3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15601, "upload_time": "2018-03-25T19:56:04", "url": "https://files.pythonhosted.org/packages/3c/d8/03c1e644fd5e7cb4d12506178fbf27cbfc3f0449c839a41f7cf349b05d6b/telegram_send-0.20-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "568b5796659ea3fa2ff85f3ad55e220a", "sha256": "ce4372ed2809ab4a6521972322461cb72c1186d5d6cc91e983ffee84d14e10ea" }, "downloads": -1, "filename": "telegram-send-0.20.tar.gz", "has_sig": false, "md5_digest": "568b5796659ea3fa2ff85f3ad55e220a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15148, "upload_time": "2018-03-25T19:56:06", "url": "https://files.pythonhosted.org/packages/88/04/218c71cab345b58c319109af1936ccedf5e0450f2c07faac405ccd111b2d/telegram-send-0.20.tar.gz" } ], "0.21": [ { "comment_text": "", "digests": { "md5": "0485c042ebb84344d595e07919ceb36a", "sha256": "3aa5ad0768e991bfba4dcd26bb6242d1928eb34399efa0f0a55c47f9f9942629" }, "downloads": -1, "filename": "telegram_send-0.21-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0485c042ebb84344d595e07919ceb36a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 23828, "upload_time": "2019-10-07T08:20:24", "url": "https://files.pythonhosted.org/packages/21/47/1c57602e1c6bf0c089159fb4347d6e1a45b212c50886658f5d73c49767df/telegram_send-0.21-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "27f21df07e15b5cd32af5674c20b1a79", "sha256": "3e6738c9bb8b0b2b7bcec2603058edc1c383165fee1aba4fcafece9fec38b4d1" }, "downloads": -1, "filename": "telegram-send-0.21.tar.gz", "has_sig": false, "md5_digest": "27f21df07e15b5cd32af5674c20b1a79", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 12629, "upload_time": "2019-10-07T08:20:26", "url": "https://files.pythonhosted.org/packages/97/3c/056b289102d932e6244db253780c67bc1b263c591e6ddfcac3fe30c7e803/telegram-send-0.21.tar.gz" } ], "0.21.1": [ { "comment_text": "", "digests": { "md5": "0825834889e2d6e7085825370d8c7c39", "sha256": "a782300359d22a5793c139ccf69c5e6f20cf0b0c69837984ab0d7a2af002e423" }, "downloads": -1, "filename": "telegram_send-0.21.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0825834889e2d6e7085825370d8c7c39", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 24027, "upload_time": "2019-10-09T21:13:54", "url": "https://files.pythonhosted.org/packages/df/a6/f35d83ec86a3272587642d001d5771619780a85d273f815f70d88d87de57/telegram_send-0.21.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "31fa25ab3e049c77caa3d8455c6aacf2", "sha256": "2284e664fbcab94dd8716193e5fe5e5499c6d37392456d680e8b083b8c65d514" }, "downloads": -1, "filename": "telegram-send-0.21.1.tar.gz", "has_sig": false, "md5_digest": "31fa25ab3e049c77caa3d8455c6aacf2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 12681, "upload_time": "2019-10-09T21:13:57", "url": "https://files.pythonhosted.org/packages/3e/46/27b2edc7916b160e374550d6aeffc653e67529f2f917d20de53448c3724e/telegram-send-0.21.1.tar.gz" } ], "0.22": [ { "comment_text": "", "digests": { "md5": "133f6d300b6687b9553040806ce230e5", "sha256": "e3747e13f93c75b6276b22075de582822b483709e1d4e85af5f5f8fe363a4e85" }, "downloads": -1, "filename": "telegram_send-0.22-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "133f6d300b6687b9553040806ce230e5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 23997, "upload_time": "2019-10-10T05:32:28", "url": "https://files.pythonhosted.org/packages/55/91/b80a7d667ffbbd09625a2cf49d5f9d64d82e63d52456bc91e59cae3b52aa/telegram_send-0.22-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ae9a0d80fab6366954c203abf05f5e66", "sha256": "0940f14d377ec4848128aa9cef9bcb483874959bae55324c7d3c9db8d63d4c2a" }, "downloads": -1, "filename": "telegram-send-0.22.tar.gz", "has_sig": false, "md5_digest": "ae9a0d80fab6366954c203abf05f5e66", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 12684, "upload_time": "2019-10-10T05:32:31", "url": "https://files.pythonhosted.org/packages/3e/0a/55f79ee10605e6e39ac1d02e219a1f9d1fa1baf238d75d312b4d9c824610/telegram-send-0.22.tar.gz" } ], "0.23": [ { "comment_text": "", "digests": { "md5": "37538c06e044cc28b2d78afff59f8f62", "sha256": "a2678e6a1341b5ec0ab34f7254981bb4c10561da0302c2b0e711ad5dd7dc2b2e" }, "downloads": -1, "filename": "telegram_send-0.23-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "37538c06e044cc28b2d78afff59f8f62", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 23998, "upload_time": "2019-10-10T14:45:28", "url": "https://files.pythonhosted.org/packages/cd/db/c47cef93575d7809e27271026507e8620a6e04b98b5a103966a44e79114c/telegram_send-0.23-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e696bd123111f3e6883dd328e9022519", "sha256": "d36dbfcb0f7a0fe9b095d0165c3e39b6f12df01393f54feb5bed572114457659" }, "downloads": -1, "filename": "telegram-send-0.23.tar.gz", "has_sig": false, "md5_digest": "e696bd123111f3e6883dd328e9022519", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 12677, "upload_time": "2019-10-10T14:45:31", "url": "https://files.pythonhosted.org/packages/b8/22/c91f61b8837a62e9401cf8c49a7dd8307541cae1c7dd0ac5b163752522ea/telegram-send-0.23.tar.gz" } ], "0.24": [ { "comment_text": "", "digests": { "md5": "783c44b43bd0dbc20c0187529bddf0cf", "sha256": "d92b98dc66db04afce7fba54a1e24c66cf59367c1ebbc93da777ee2b5c2fb9a0" }, "downloads": -1, "filename": "telegram_send-0.24-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "783c44b43bd0dbc20c0187529bddf0cf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 24169, "upload_time": "2019-10-13T08:14:27", "url": "https://files.pythonhosted.org/packages/c6/3d/cd2753a5aa8d9c043258b82c57c0a180a021e024406cfe8db421363093ff/telegram_send-0.24-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c79c535edc5183621c7394815ef2b270", "sha256": "c0946b52e6089008010e9787c5661dc1297473fc6e83c151061b55d084a9759b" }, "downloads": -1, "filename": "telegram-send-0.24.tar.gz", "has_sig": false, "md5_digest": "c79c535edc5183621c7394815ef2b270", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 12894, "upload_time": "2019-10-13T08:14:30", "url": "https://files.pythonhosted.org/packages/ed/04/68b0e9e5f24dde4f7b2501db679b6a59d5e6e6818608f26789de0ee616ec/telegram-send-0.24.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "41d106f9fa6434aa8e0085ccac147c0b", "sha256": "c804edd4fc395a9ba82a3acaff2389a44d4ef3e1abbcea3df29263b8af6fbb40" }, "downloads": -1, "filename": "telegram_send-0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "41d106f9fa6434aa8e0085ccac147c0b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5975, "upload_time": "2016-05-12T19:07:39", "url": "https://files.pythonhosted.org/packages/9a/2a/9a90ea639bee70da7566663e51da17af2a31151ab2831fa83fe066e40ee7/telegram_send-0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f7ebbddbe563d1db704196581281d79e", "sha256": "8b17dab3895559029d9705dcaf28860cea787a6efb9cc001e5dba82184271f30" }, "downloads": -1, "filename": "telegram-send-0.3.tar.gz", "has_sig": false, "md5_digest": "f7ebbddbe563d1db704196581281d79e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3923, "upload_time": "2016-05-12T19:07:53", "url": "https://files.pythonhosted.org/packages/21/5b/3c0d09ec7652a81733a7448ec45aa4c3d0abdcb2ffdfccea816c2d4f65be/telegram-send-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "d29879314ae9eefed72c977693f3d604", "sha256": "84d463095e8015d072cdb94eade2497c357a9d145bbb782a24e9f21aa8f115a8" }, "downloads": -1, "filename": "telegram_send-0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "d29879314ae9eefed72c977693f3d604", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6280, "upload_time": "2016-05-14T15:45:25", "url": "https://files.pythonhosted.org/packages/a4/e4/a19eef9852b50773cbac2d32963a54509b54cd090afa8f71c135cc467909/telegram_send-0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9cfaa3e4cbc57f95736a2f9653d93884", "sha256": "a89b87feb4f01d038762c80d359e175fc4427cd8ff3b0051694aba288a9a1d96" }, "downloads": -1, "filename": "telegram-send-0.4.tar.gz", "has_sig": false, "md5_digest": "9cfaa3e4cbc57f95736a2f9653d93884", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4207, "upload_time": "2016-05-14T15:45:32", "url": "https://files.pythonhosted.org/packages/64/2c/a4dc4ae69389fb2656b9548badec9390a4903651865169896f11f4fb5117/telegram-send-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "904a7ec5a27f4f4a2dd8e519a86f6317", "sha256": "51a29f3bbd76757aa6236393dee0533a32c34583e5272e703540be6e8f26f078" }, "downloads": -1, "filename": "telegram_send-0.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "904a7ec5a27f4f4a2dd8e519a86f6317", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8618, "upload_time": "2016-05-15T22:03:44", "url": "https://files.pythonhosted.org/packages/77/67/0882f869edc2e4742da4b18469e8563587641305899a7e0eade33c07693d/telegram_send-0.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f063610dd4a03c1daa92f2d30db920c3", "sha256": "11ce80000579ce7444cd6f671bae784c5f7b3aa40b1e51168036e0d85d46aa26" }, "downloads": -1, "filename": "telegram-send-0.4.1.tar.gz", "has_sig": false, "md5_digest": "f063610dd4a03c1daa92f2d30db920c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5434, "upload_time": "2016-05-15T22:03:50", "url": "https://files.pythonhosted.org/packages/8f/92/6db911a23b3349af605aebe0ce50af34c52098ca6eceb9d043a01a71dcdb/telegram-send-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "2cb870af61907e1361add955f0ca5e4d", "sha256": "9309971e24d6571b5ee173943ea5e248ec114533abf94fd370f1c578df986abf" }, "downloads": -1, "filename": "telegram_send-0.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "2cb870af61907e1361add955f0ca5e4d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8446, "upload_time": "2016-05-15T22:49:19", "url": "https://files.pythonhosted.org/packages/df/31/4676d6604b04079d0447fb0f0cec7ab96529f397f3b80b6ba853574858a1/telegram_send-0.4.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ef9ceb24d319108dd61e869e3bc54b5c", "sha256": "6296158e2d00dfb381788f1b2194947102eea1f46dede0f1adf880412da3e89a" }, "downloads": -1, "filename": "telegram-send-0.4.2.tar.gz", "has_sig": false, "md5_digest": "ef9ceb24d319108dd61e869e3bc54b5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5391, "upload_time": "2016-05-15T22:49:25", "url": "https://files.pythonhosted.org/packages/e7/4c/a1ca404511a1565432bdc3c19a703abc70feb192f660bfceef1957a0071d/telegram-send-0.4.2.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "1ea3c0ca6566fd67b5a3d45aa2a6f60b", "sha256": "d4fce8f777100ddfc87d473f5fd6df334bc430d083d5d5fc5dc18e8b21a89fd8" }, "downloads": -1, "filename": "telegram_send-0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "1ea3c0ca6566fd67b5a3d45aa2a6f60b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8616, "upload_time": "2016-05-18T15:53:23", "url": "https://files.pythonhosted.org/packages/22/6e/2537328e65e9a84f123231f4a5eefddcf5a19852700b32060a2e5550bf86/telegram_send-0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "42074fe070fac8315b0795bb8e1bdf04", "sha256": "c76978ae8c57fc85a53cde00167ea51a4d8d1c889b3c034ca1d88ef45b7ef135" }, "downloads": -1, "filename": "telegram-send-0.5.tar.gz", "has_sig": false, "md5_digest": "42074fe070fac8315b0795bb8e1bdf04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5622, "upload_time": "2016-05-18T15:53:35", "url": "https://files.pythonhosted.org/packages/f1/e3/165b10d9d696e84b45de5598f54558868fe9c0611c1b7bb89b2dcd26fcaf/telegram-send-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "ac7d6ec7ff9c8171463bdf869c2d41d8", "sha256": "337d8e64b3172dd8b75541b14d603a068c8f9e38dc53cc299ffdaa4d65702ce6" }, "downloads": -1, "filename": "telegram_send-0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ac7d6ec7ff9c8171463bdf869c2d41d8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9795, "upload_time": "2016-07-09T12:12:44", "url": "https://files.pythonhosted.org/packages/17/31/82fa44528ce8274dd24b8e45be974f7a7dfe1f8ebad3679ef327a75605e8/telegram_send-0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "422e43a510d6c9ea813d9b611f1069d2", "sha256": "82c291f118335f287a9737da0c06cffcfcf00ee00b40450c9d35085fab79f57f" }, "downloads": -1, "filename": "telegram_send-0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "422e43a510d6c9ea813d9b611f1069d2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9791, "upload_time": "2016-07-09T12:06:53", "url": "https://files.pythonhosted.org/packages/1c/10/07ab01bd67c1c35064fddf8d84bbb080e337c7eb0cc0102cccc2dcc9de1e/telegram_send-0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "598168087b20f2c76c4e35cee2c21cb3", "sha256": "2d36297647982e6250a8a7d7e835e56fd80fafe29389614ee0d5554a426f9462" }, "downloads": -1, "filename": "telegram-send-0.6.tar.gz", "has_sig": false, "md5_digest": "598168087b20f2c76c4e35cee2c21cb3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6517, "upload_time": "2016-07-09T12:06:57", "url": "https://files.pythonhosted.org/packages/98/0f/5f4c9c016cfa52074b875878996c26365fde8bce1e49a7c2d1bca3773145/telegram-send-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "8cfc8b1665a4a8d9150aab4e9986ad19", "sha256": "8d4437c723ab729815ec6003587274432db1708d28558eb1e5a47fbdb1571df2" }, "downloads": -1, "filename": "telegram_send-0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8cfc8b1665a4a8d9150aab4e9986ad19", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10197, "upload_time": "2016-07-11T15:24:56", "url": "https://files.pythonhosted.org/packages/ca/82/0db74258e9fed15a6080d30f17ad819aacfc297126dee04c8d4bfcc2a2f8/telegram_send-0.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7af9f7cfa1602d9cda0f3ef9adcd6a15", "sha256": "82a96711c1904d226ce00b27bba9907396b4ee2000d4f442e409440de40f01ee" }, "downloads": -1, "filename": "telegram-send-0.7.tar.gz", "has_sig": false, "md5_digest": "7af9f7cfa1602d9cda0f3ef9adcd6a15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6812, "upload_time": "2016-07-11T15:25:04", "url": "https://files.pythonhosted.org/packages/b6/b5/22d9b717ed976ead9f289ab8d434dceff61f410868349b1444d95276f11c/telegram-send-0.7.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "d333f3e7c9ef7d9c8c8bc77d4ff82d59", "sha256": "41448c73edc10346f902cf725b8e3ed9a95254e5780fce3b956800bfcc4a9f17" }, "downloads": -1, "filename": "telegram_send-0.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d333f3e7c9ef7d9c8c8bc77d4ff82d59", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10430, "upload_time": "2016-07-11T16:55:52", "url": "https://files.pythonhosted.org/packages/78/60/6a83253d4072cec18795588e3ca26cfaca02c67d6715dda1bb015da4d5ad/telegram_send-0.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ba54b5202d6e89c55d7a66ad685ab17", "sha256": "ec45f1055b759b8e65198587bf909419e1b4f715e90f7e3a1bde3bd6ed742820" }, "downloads": -1, "filename": "telegram-send-0.7.1.tar.gz", "has_sig": false, "md5_digest": "2ba54b5202d6e89c55d7a66ad685ab17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6908, "upload_time": "2016-07-11T16:56:13", "url": "https://files.pythonhosted.org/packages/57/41/87bf222fa529928f6887fd019b01c4e600ccaf15050dc28cb67361260514/telegram-send-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "f3d30cea97b44d68d2aef024a6b6cc8b", "sha256": "92c7ca1ac23bb907fe9d1f7e6065590af66da17104acd9aa619231003dc2b49e" }, "downloads": -1, "filename": "telegram_send-0.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f3d30cea97b44d68d2aef024a6b6cc8b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10500, "upload_time": "2016-08-29T13:07:19", "url": "https://files.pythonhosted.org/packages/92/67/10c0900caad9c8d2bc9e6622dcaa7ac4dd83a2adeb734cadf5f5aa96f2fc/telegram_send-0.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6c352ed3e11f091cc91e3e15d415272b", "sha256": "060d0ce86f23cacc28b16e3f6d6a1f9981c96d1126d7266b2fda2ddd6b29120f" }, "downloads": -1, "filename": "telegram-send-0.7.2.tar.gz", "has_sig": false, "md5_digest": "6c352ed3e11f091cc91e3e15d415272b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6979, "upload_time": "2016-08-29T13:07:22", "url": "https://files.pythonhosted.org/packages/df/d7/628b3df979306e112b652ce933d9d1b485f39b5ca6ca1ea956690c25215c/telegram-send-0.7.2.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "e4af10103ab388046715ba236f75420f", "sha256": "4e6c7258491e04f56c84d44f8c31e6ddbf62b7c13fdb45ce43c30ce1ac218d8b" }, "downloads": -1, "filename": "telegram_send-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e4af10103ab388046715ba236f75420f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10482, "upload_time": "2016-09-02T08:59:19", "url": "https://files.pythonhosted.org/packages/bb/af/1ff19a75fc3161153ab1e9661934ce27664db064d6cdb0c5127687b9d4a5/telegram_send-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7443b746d3628d3151fe9637bbd1e25b", "sha256": "769847f4796d3702444c55b38fa90f7cb599cc43584aaed79fcecbaacfa4c441" }, "downloads": -1, "filename": "telegram-send-0.8.0.tar.gz", "has_sig": false, "md5_digest": "7443b746d3628d3151fe9637bbd1e25b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6963, "upload_time": "2016-09-02T08:59:22", "url": "https://files.pythonhosted.org/packages/9c/24/215d8aef2468e9de70673507a05d630385bbf8de020d64b40ac92185b61a/telegram-send-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "508377bd1dee53a14919fddc973fbece", "sha256": "8db99adeb00a550a055aecc09f4645c3e21463e15b2744c516eb4af9fe1c41f3" }, "downloads": -1, "filename": "telegram_send-0.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "508377bd1dee53a14919fddc973fbece", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10520, "upload_time": "2016-09-02T09:03:12", "url": "https://files.pythonhosted.org/packages/49/23/33070219cb759e8932aacb1b87e600133442577d25176cced5a0e12bac4e/telegram_send-0.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7dc2d57eec134d16a5262acc533ba839", "sha256": "ee78be7eb98f73020fed366d4c1269146d03ebcb5a7c096eb5e9512a85b7f3f5" }, "downloads": -1, "filename": "telegram-send-0.8.1.tar.gz", "has_sig": false, "md5_digest": "7dc2d57eec134d16a5262acc533ba839", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6979, "upload_time": "2016-09-02T09:03:15", "url": "https://files.pythonhosted.org/packages/34/50/ace2d6573a0a4f6f699606ccb2ec34a9cb655207aa0fd08d64ce54c6b9b7/telegram-send-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "f301cd575519d7aee64c514674f03d61", "sha256": "9dd415f3b7e0a54216b7843dd25df537665a5a838658196d039dee561599a648" }, "downloads": -1, "filename": "telegram_send-0.8.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f301cd575519d7aee64c514674f03d61", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10552, "upload_time": "2016-09-28T08:42:55", "url": "https://files.pythonhosted.org/packages/00/59/2b45e580812c3decaa8d8bc3d7e178aa8aa50a3dae121d97b15b183339c0/telegram_send-0.8.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f872d99668f3f5e5163ab79ec67df065", "sha256": "75b77e69495a644937d4e71aee74988db6c8faeddb11d4ab3209f2d2c1cb26c6" }, "downloads": -1, "filename": "telegram-send-0.8.2.tar.gz", "has_sig": false, "md5_digest": "f872d99668f3f5e5163ab79ec67df065", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7029, "upload_time": "2016-09-28T08:42:58", "url": "https://files.pythonhosted.org/packages/75/26/94118bab258b7a41615ae47714501628e29a7badb157149211e27f57b16a/telegram-send-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "6d2a6d17c6e235585dcab16580be23ca", "sha256": "d80a3782192341b80aad437b9785253c127a5e3edbb4eda22c2666e9182cee6a" }, "downloads": -1, "filename": "telegram_send-0.8.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6d2a6d17c6e235585dcab16580be23ca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11125, "upload_time": "2016-12-28T21:42:39", "url": "https://files.pythonhosted.org/packages/de/d9/9f4761bcb6b18fc7568430f849acf4af3cb79d145a7e3ea44d580eb9b599/telegram_send-0.8.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8128b46603a448b7be3dee720068541f", "sha256": "d238a15115331fba62a78c83f8603a4daec253ec2d4c307dffcff06a7420aab2" }, "downloads": -1, "filename": "telegram-send-0.8.3.tar.gz", "has_sig": false, "md5_digest": "8128b46603a448b7be3dee720068541f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7413, "upload_time": "2016-12-28T21:42:41", "url": "https://files.pythonhosted.org/packages/95/75/49a90f51469dbaf3113700d85972e505ace9ec73adf85ef8d910f1d7b1d8/telegram-send-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "aa3d4e2a97d8493e6fa6e4d6c1499fac", "sha256": "225411651cd705b6aaef6d6eb69f207a7223d675c0f8064600845aa7aa412504" }, "downloads": -1, "filename": "telegram_send-0.8.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aa3d4e2a97d8493e6fa6e4d6c1499fac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11117, "upload_time": "2016-12-28T21:46:16", "url": "https://files.pythonhosted.org/packages/24/73/b190acfd8add442340be1ac4b4fb3e69f8b2ba971bec0d6181b78aae181b/telegram_send-0.8.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8bb6dd91973304dba5b169f191e4eb56", "sha256": "71c3726a6e4459197d58303f53b47f6ea32de54cf93e4586f872a9381f0b32ee" }, "downloads": -1, "filename": "telegram-send-0.8.4.tar.gz", "has_sig": false, "md5_digest": "8bb6dd91973304dba5b169f191e4eb56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7413, "upload_time": "2016-12-28T21:46:20", "url": "https://files.pythonhosted.org/packages/2d/6f/3080be3b230d3b949e790126d4f557869e7aa1bcaed5c0af87ec0484a498/telegram-send-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "af265116c419f4311ea7742f384cd590", "sha256": "c38e550cafd60aa5685bf89751c9fcc9b9177771da64b0bf75800a1e43856ec4" }, "downloads": -1, "filename": "telegram_send-0.8.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "af265116c419f4311ea7742f384cd590", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11164, "upload_time": "2017-01-30T16:10:47", "url": "https://files.pythonhosted.org/packages/ef/16/8bb57d50257d0503b1ad817c43fc1be572334bf9a2bef8d3c481cf3b6473/telegram_send-0.8.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c2a7f3b2f600070cb6ab521e5330c94d", "sha256": "3adb38e204440900b5d5bcd382ac215e3bca06d460cb808a5b0415b9e45f0439" }, "downloads": -1, "filename": "telegram-send-0.8.5.tar.gz", "has_sig": false, "md5_digest": "c2a7f3b2f600070cb6ab521e5330c94d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7454, "upload_time": "2017-01-30T16:10:49", "url": "https://files.pythonhosted.org/packages/16/fc/7454bb072bb1db4725c51eabba44c756e712bf0404eec8808e1bbfead9c5/telegram-send-0.8.5.tar.gz" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "1ddb4acd562864c23226f1fefcf20ca7", "sha256": "a7d3ff116eec6f33599bb9df22be6c71b612bccb672d625e40525c54287e7880" }, "downloads": -1, "filename": "telegram_send-0.8.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1ddb4acd562864c23226f1fefcf20ca7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11230, "upload_time": "2017-05-11T10:54:04", "url": "https://files.pythonhosted.org/packages/53/fe/42c31f40af4ea3345458b4f1c59e89d5f24c8f52d2032b4ccdf618eeccc0/telegram_send-0.8.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "73a405c85e096fe07bf3835e95dc7fc9", "sha256": "fde59907d423ffc87c5607ced5701ca7d280b73a7fd4157c32aad3a14c0dc4d3" }, "downloads": -1, "filename": "telegram-send-0.8.6.tar.gz", "has_sig": false, "md5_digest": "73a405c85e096fe07bf3835e95dc7fc9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7489, "upload_time": "2017-05-11T10:54:06", "url": "https://files.pythonhosted.org/packages/99/63/5e388d77f7ac8159eae506112971c98551eb165ec56a28bb8204c886309e/telegram-send-0.8.6.tar.gz" } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "410c16044b33595ba17078bd99ad58c9", "sha256": "b958e00094ca6b704fdeed728736fc6225533624a342fa79fafb518f391db201" }, "downloads": -1, "filename": "telegram_send-0.8.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "410c16044b33595ba17078bd99ad58c9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11261, "upload_time": "2017-05-11T11:17:33", "url": "https://files.pythonhosted.org/packages/84/95/eb370ff6e4532976a3a33df2bd2753a73800d9be052d76bc5aecba1781a6/telegram_send-0.8.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "528ce984d633e5ff4b9d042576b6b43c", "sha256": "90ae62259979ecbf606275c6e0ed4b551e3316198ccbed284712711260f9b84a" }, "downloads": -1, "filename": "telegram-send-0.8.7.tar.gz", "has_sig": false, "md5_digest": "528ce984d633e5ff4b9d042576b6b43c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7517, "upload_time": "2017-05-11T11:17:34", "url": "https://files.pythonhosted.org/packages/db/0a/db9c04935c9f725e7a715cddb3d6e363615161de910395c46ef4f344783f/telegram-send-0.8.7.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "6c5e2d2d804e33db414c9a6a8d294822", "sha256": "26e34fc2caee863ab4f2e724b60c6262a31e27aed8a4735ffed42a856a01e9a2" }, "downloads": -1, "filename": "telegram_send-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6c5e2d2d804e33db414c9a6a8d294822", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11604, "upload_time": "2017-05-22T11:05:32", "url": "https://files.pythonhosted.org/packages/f1/e6/b79093fbb36e8f8242f8fa2c060ccbc3558fbb8a94b3a02d465ba5acce94/telegram_send-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7f73c6e5a97e49d842fde61d8c4876c9", "sha256": "e0d24348ef84515b867ff2b2acd649552eaf01d1d99478925d13edda60c5cabe" }, "downloads": -1, "filename": "telegram-send-0.9.0.tar.gz", "has_sig": false, "md5_digest": "7f73c6e5a97e49d842fde61d8c4876c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7791, "upload_time": "2017-05-22T11:05:35", "url": "https://files.pythonhosted.org/packages/93/80/510b24d20a9bc88157eefa1efc34869d308fc82e41027d09e1cc85daa9dc/telegram-send-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "2a7e00ce3f2cfca2fd19438f67d6d237", "sha256": "d35aeb569708bf42be56d7ed71045ac80f0cd2202603df1b0b3939a3c1aa3795" }, "downloads": -1, "filename": "telegram_send-0.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2a7e00ce3f2cfca2fd19438f67d6d237", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11611, "upload_time": "2017-05-22T20:07:48", "url": "https://files.pythonhosted.org/packages/53/e7/acdd6dc773a9af43a411d0ce012b01a9ef5f043f6b3d8063852dde5adf62/telegram_send-0.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "22a7e827c1a809b5989db2b4112b110b", "sha256": "f1fbd5ddc6cb8d528fcdb82d79c1b0869f8133f5d2e6eb8b04784fcbf3403976" }, "downloads": -1, "filename": "telegram-send-0.9.1.tar.gz", "has_sig": false, "md5_digest": "22a7e827c1a809b5989db2b4112b110b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7792, "upload_time": "2017-05-22T20:07:50", "url": "https://files.pythonhosted.org/packages/61/4e/72e685bcbaebd7fbc5795d87cab80629e94aa56c7c9b6d58793f8834ca5d/telegram-send-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "61e38c2ab965cd6b52d51d4b807f7343", "sha256": "8cc40554d72ee64548cab62282bd3f89aa184cbde63909c38322571c18d66203" }, "downloads": -1, "filename": "telegram_send-0.9.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "61e38c2ab965cd6b52d51d4b807f7343", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11963, "upload_time": "2017-05-31T16:50:23", "url": "https://files.pythonhosted.org/packages/2c/86/2bd0f4d58350c0da43085d06570541789800e1c53f85efe03fcece52409b/telegram_send-0.9.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f2b0052c118a9bf0369b4156812d773", "sha256": "0d566b55ed76aed0d75d731f2467d2577d1753366c495ebab2892f7d3ad847a8" }, "downloads": -1, "filename": "telegram-send-0.9.2.tar.gz", "has_sig": false, "md5_digest": "4f2b0052c118a9bf0369b4156812d773", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8076, "upload_time": "2017-05-31T16:50:24", "url": "https://files.pythonhosted.org/packages/77/5f/98a177d2cfef090ec44b804135cf248eab74cdade74fb0098640b22229d2/telegram-send-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "c788f313ee4dad37fc4e49bf4598363e", "sha256": "c376dabd5fde9116ec6ad252303ee2aa6b7c76b09761f221feb7a5941cd1d703" }, "downloads": -1, "filename": "telegram_send-0.9.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c788f313ee4dad37fc4e49bf4598363e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12682, "upload_time": "2017-06-06T18:26:05", "url": "https://files.pythonhosted.org/packages/d2/6c/95bf78028c655311509a275a31197c6e52a6f02aef930f66820ea7e84645/telegram_send-0.9.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "05b7dded3e9be2a59d76b5075d99fd97", "sha256": "c52319e5292630c0af738ba8d606a12397708e474257522ccf6d611e890a5e93" }, "downloads": -1, "filename": "telegram-send-0.9.3.tar.gz", "has_sig": false, "md5_digest": "05b7dded3e9be2a59d76b5075d99fd97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8475, "upload_time": "2017-06-06T18:26:07", "url": "https://files.pythonhosted.org/packages/48/1c/274096c8e0ac37dae8e548f54188d8b246a9cc399dc79cfeddce9589a94c/telegram-send-0.9.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "783c44b43bd0dbc20c0187529bddf0cf", "sha256": "d92b98dc66db04afce7fba54a1e24c66cf59367c1ebbc93da777ee2b5c2fb9a0" }, "downloads": -1, "filename": "telegram_send-0.24-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "783c44b43bd0dbc20c0187529bddf0cf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 24169, "upload_time": "2019-10-13T08:14:27", "url": "https://files.pythonhosted.org/packages/c6/3d/cd2753a5aa8d9c043258b82c57c0a180a021e024406cfe8db421363093ff/telegram_send-0.24-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c79c535edc5183621c7394815ef2b270", "sha256": "c0946b52e6089008010e9787c5661dc1297473fc6e83c151061b55d084a9759b" }, "downloads": -1, "filename": "telegram-send-0.24.tar.gz", "has_sig": false, "md5_digest": "c79c535edc5183621c7394815ef2b270", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 12894, "upload_time": "2019-10-13T08:14:30", "url": "https://files.pythonhosted.org/packages/ed/04/68b0e9e5f24dde4f7b2501db679b6a59d5e6e6818608f26789de0ee616ec/telegram-send-0.24.tar.gz" } ] }