{
"info": {
"author": "Ryan Patterson",
"author_email": "ryan.patterson.2015@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
"description": "ToDonePY - A basic command-line tast manager\n============================================\n\n.. image:: https://www.repostatus.org/badges/latest/active.svg\n :alt: Project Status: Active - The project has reached a stable, usable state and is being actively developed\n :target: https://www.repostatus.org/#active\n\n.. image:: https://img.shields.io/badge/License-GPLv3-blue.svg\n :target: https://www.gnu.org/licenses/gpl-3.0\n :alt: GPLv3 License\n\n.. image:: https://img.shields.io/pypi/v/todonepy\n :target: https://pypi.org/project/todonepy\n :alt: PyPI\n\n.. image:: https://img.shields.io/pypi/pyversions/todonepy\n :target: https://pypi.org/project/todonepy\n :alt: PyPI - Python Versions\n\n.. image:: https://travis-ci.org/rbpatt2019/ToDonePy.svg?branch=master\n :target: https://travis-ci.org/rbpatt2019/ToDonePy\n :alt: Build Status\n\n.. image:: https://readthedocs.org/projects/todonepy/badge/?version=latest\n :target: https://todonepy.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://codecov.io/gh/rbpatt2019/ToDonePy/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/rbpatt2019/ToDonePy\n :alt: Code Coverage\n\n.. image:: https://pyup.io/repos/github/rbpatt2019/ToDonePy/shield.svg\n :target: https://pyup.io/repos/github/rbpatt2019/ToDonePy/\n :alt: Updates\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n :target: https://github.com/ambv/black\n :alt: Codestyle: Black\n\nIntroduction\n------------\n\nMove your ToDo's to ToDone's!\n\n.. Note:: This project has only been tested on a Unix OS. I welcome collaborations to test it for MacOS and Windows!\n\n`ToDonePy `_ is a command-line interface for managing your to do list. It provides a root command, `to`_, and three subcommands:\n\n- `to do`_ adds a new task to your list at different priorities.\n- `to doing`_ shows you what you should be doing.\n- `to done`_ removes a completed tast from your list.\n\nDocs and Code\n-------------\n\nThe documentation lives at https://ToDonePy.readthedocs.io/ .\n\nThe code lives at https://github.com/rbpatt2019/ToDonePy/ .\n\nInstallation\n------------\n\nThis project has been released on `PyPI `_, so it can be installed with `pip`:\n\n.. code:: sh\n\n pip install -U ToDonePy\n\nAlternatively, you can install the project manually by cloning the `repo `_, and using the included Makefile.\n\n.. code:: sh\n\n git clone https://github.com/rbpatt2019/ToDonePy/\n make install\n\nIf you would like to contribute to development, the install instructions are slightly different. Please see the section on `contributing `_.\n\nUsage\n-----\n\n.. _to:\n\nThe base command ``to``\n~~~~~~~~~~~~~~~~~~~~~~~\n\nThe base command ``to`` has a few useful features of its own. To see what version of the command you are using, call:\n\n.. code:: sh\n\n to --version\n\nAs with any good command-line tool, you can get some basic help by calling:\n\n.. code:: sh\n\n to --help\n\nYou can get help on any subcommand by calling ``--help`` after that subcommand. For example, to get help with ``to doing``, call:\n\n.. code:: sh\n\n to doing --help\n\nUnder the hood, ``to`` creates the context object that holds the information on the file you use for tracking you're TODOs. If you don't specify a file to use, it will default to ``$HOME/TODO.tsv``. If you would like to specify a different file to use, than call the command with the ``--file/-f`` flag like so:\n\n.. code:: sh\n\n to --file /path/to/your/TODO.tsv subcommand\n\n.. note:: If you plan to use a file other than the default, I recommend setting it by creating the environmental variable, ``TODO_LIST``. \n\nRegardless of whether you use the default or not, calling ``to`` with any of the subcommands - ``do``, ``doing``, or ``done`` - will check to see if the file exists. If it does exist, ``to`` then pass the path on to the subcommand. If it doesn't exist, then ``to`` creates an empty file which it then passes on to the subcommand.\n\nAs a final note, it is worth emphasising that the contex object is only created when ``to`` is invoked with a subcommand. So, after a clean install, calling ``to --help`` or ``to --version`` will NOT create your ``TODO.tsv`` file, even if you pass the ``--file/-f`` flag. However, call ``to do``, and it will pop into existence.\n\n.. _to do:\n\nAdding new tasks with ``to do``\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nTo begin tracking your TODOs, call the command as follows:\n\n.. code:: sh\n\n to do rank tasks\n\n``to`` is the base command. It must be invoked to use any part of the tool. The ``do`` subcommand is how you add tasks to your ``TODO.tsv``. After ``to do``, there are two mandatory arguments: ``rank`` and ``tasks``. The first argument is ``rank``. ``rank`` should be a number indicating how important this task is. 1 is very important, 2 less so, etc. Though nothing explicitly bans you from using as many ranks as you want, I'd reccomed using 3 for high, medium, and low priority. \n\nThe second argument is ``tasks``. Here, specify what it is you need to do. If your task takes more than one word to describe, then you need to include it in quotes. ``tasks`` supports an indefinite number of arguments, from 1 to as many as you want. \n\n.. note:: All tasks specified will be added at the same rank, so only combine tasks you want to give the same priority.\n\nSo, if you wanted to remind yourself to write an abstract for that paper you've been delaying and to email your boss, call:\n\n.. code:: sh\n\n to do 1 'Write my abstract' 'Email boss'\n\nThis will create ``TODO.tsv`` if it doesn't already exist, and add 'Write my abstract' and 'Email boss', both with a rank of one, to ``TODO.tsv``. ``to do`` also logs the date and time the task was added, so that you always know how old a task is.\n\n``to do`` also has one option: ``--sort/-s``. This specifies how to sort your list after a new task is added. It must be one of: ``[rank, date, both, none]``. ``both`` sorts by name and then date, and ``none`` does not sort, simply appending tasks to the end of your list. It defaults to ``both``, so that your highest priority tasks are first, and, among those, the oldest are first. If you just wanted to sort by date after adding a new task, then you could call:\n\n.. code:: sh\n\n to do --sort date 1 'Important work'\n\n\n.. _to doing:\n\nKeeping track of tasks with ``to doing``\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nOnce you've added some TODOs to your list, you need to make sure you stay on top of them. To see what needs to be done, call:\n\n.. code:: sh\n\n to doing\n\nThis should echo the 5 tasks at the top of your ``TODO.tsv`` to the terminal.\n\nYou can specify how to sort your tasks by passing the ``--sort/-s`` flag with one of: ``[rank, date, both, none]``. It defaults to ``none``, thus preserving the order in your ``TODO.tsv``. Any call to sort will also change the order currently in your ``TODO.tsv``, not just the order they are echoed.\n\nAlso, specifying the ``--number/-n`` flag will let you change how many tasks are returned, and it defaults to 5. So, if you want to return 3 tasks sorted by rank, call:\n\n.. code:: sh\n\n to doing -s rank -n 3\n\nIf you have fewer tasks than ``number``, the command prints a friendly reminder of that fact!\n\nMaybe you prefer a graphic notifier instead of echoing in the terminal. ``ToDonePy`` has that covered, too! Just call:\n\n.. code:: sh\n\n to doing --graphic\n\nto trigger a notification window. By default, it stays up for 5 seconds. Currently, you can't set the time, though that's in the works!\n\n.. Note:: The graphic flag makes a system call to ``notify-send``. If you don't have that installed, the command will fail. It should be installed on most Linux systems, though.\n\nSometimes, you might want to correct an error, change a priority, or in some way edit yout ``TODO.tsv``. In these cases, you can call ``to doing`` in editor mode:\n\n.. code:: sh\n\n to doing --edit\n\nThis will open ``TODO.tsv`` in your system editor. Where you would see something like below, if you've been following along:\n\n.. code:: sh\n\n 1 YYYY-MM-DD HH:MM:SS Write my abstract\n 1 YYYY-MM-DD HH:MM:SS Email boss\n 1 YYYY-MM-DD HH:MM:SS Important work\n\nNothing fancy, just a plain tsv with ``rank`` in the first column, the date/time of addition in the second, and ```task`` in the third. Now, you can make all the changes you want, then save and close the file to return to the command line.\n\nCalling ``--edit`` will trump any calls to ``sort`` or ``number`` made in the same command. \n\nThis call opens the default editor on your system, usually defined by the environmental variable EDITOR for Linux systems. Currently, there is not support to specify a specific editor beside the default.\n\n\n.. _to done:\n\nCompleting your tasks with ``to done``\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nAfter the end of a productive work session, you've completed a task from your list. Boom! Time well spent. To remove it from your ``TODO.tsv``, call:\n\n.. code:: sh\n\n to done tasks\n\nAs with `to do`_, `to done` suports an indefinite number of tasks, as long as all multi-word tasks are enclosed in quotes. For example, if you emailed your boss that finished abstract, then you can remove those tasks like so:\n\n.. code:: sh\n\n to done 'Write my abstract' 'Email boss'\n\nIf ``to done`` finds these tasks in your ``TODO.tsv``, it'll remove them! If it can't find the tasks, it will print a message saying which ones couldn't be removed.\n\nUnder the hood, ``to done`` creates a temp file, then performs a string match to each line of your ``TODO.tsv``. If a perfect match to ''task'' is not in a line, that line is written to the temp file. If ''task'' is in a line, that line is skipped. This way, the temp file ends up containing only those tasks that aren't completed. Once every line is checked, the temp file replaces ``TODO.tsv`` with its contents. Task deleted!\n\n.. Warning:: If two different tasks contain the same text, they will both be deleted!\n\nKnown Bugs\n----------\n- Test fails when called with ``--edit`` as ``result.output == 1``, likely the result of a hung editor.\n\nRecent Changes\n--------------\n\nPlease see the `CHANGELOG `_\n\nNext Steps\n----------\n\n- Addition of TODOs from file parsing\n- Support removal of tasks by task ID number\n- Continue to expand README and doumentation.\n\nThank Yous\n----------\n\n- `Click `_ for making an excellent package with absolutely stellar documentation.\n\n\n",
"description_content_type": "text/x-rst",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/rbpatt2019/ToDonePy",
"keywords": "",
"license": "",
"maintainer": "",
"maintainer_email": "",
"name": "ToDonePy",
"package_url": "https://pypi.org/project/ToDonePy/",
"platform": "",
"project_url": "https://pypi.org/project/ToDonePy/",
"project_urls": {
"Homepage": "https://github.com/rbpatt2019/ToDonePy"
},
"release_url": "https://pypi.org/project/ToDonePy/2.3.1/",
"requires_dist": [
"click"
],
"requires_python": ">=3.6",
"summary": "A developed command line task manager",
"version": "2.3.1"
},
"last_serial": 5962325,
"releases": {
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "2bc251558bc3b71abbf51f9a9594f0e2",
"sha256": "6ba591703d661de2bbea8add1931e858ce2fcd560b0eb810a6318a1ff47b46e1"
},
"downloads": -1,
"filename": "ToDonePy-1.0.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "2bc251558bc3b71abbf51f9a9594f0e2",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 18842,
"upload_time": "2019-09-20T00:32:20",
"url": "https://files.pythonhosted.org/packages/6e/33/47ae204cdfa15c0edc13a01396f30f97a5093350030e6e637ac4276a1750/ToDonePy-1.0.1-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "731c92ad53d99e4771daefc3ed3b6f96",
"sha256": "8acd6265e9289f77919c146949b42a7e9fa04bba13473fccd40d9a8c65c9adea"
},
"downloads": -1,
"filename": "ToDonePy-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "731c92ad53d99e4771daefc3ed3b6f96",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 6298,
"upload_time": "2019-09-20T00:32:24",
"url": "https://files.pythonhosted.org/packages/f1/a2/6ecafa172892ee8445b4b05aff07136c2bd1f26859f2cd9a3fb66deeb4ca/ToDonePy-1.0.1.tar.gz"
}
],
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "5c01f8ea19d591b1c655430c6a1879cf",
"sha256": "e93782b38add72ca2c8f714a90de5e16db44b8a41fd49cad4c12f0b2d5ab0f03"
},
"downloads": -1,
"filename": "ToDonePy-1.0.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "5c01f8ea19d591b1c655430c6a1879cf",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 18845,
"upload_time": "2019-09-20T01:06:11",
"url": "https://files.pythonhosted.org/packages/f1/2c/a5395b9b571db531f454615b4449b25a868b65b34186f3a10c361b6fa2d6/ToDonePy-1.0.2-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "61da04d3d1b1982216e27b865dc14eac",
"sha256": "8ddd69d6e42fef259de63ba784ee897430c6a76c9f750d4a4081d7f2dbb70d12"
},
"downloads": -1,
"filename": "ToDonePy-1.0.2.tar.gz",
"has_sig": false,
"md5_digest": "61da04d3d1b1982216e27b865dc14eac",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 6302,
"upload_time": "2019-09-20T01:06:12",
"url": "https://files.pythonhosted.org/packages/98/df/e8b4f75b2643b703482e2f1e2837e53b37614957e8bbb62343fb4d9eec36/ToDonePy-1.0.2.tar.gz"
}
],
"1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "81651db30fff3dcfffcf0cf9b3e6b264",
"sha256": "4b11cf533cd26cc1c7b100921b6e004df8cc0d181c508d44175233235d2e2cd7"
},
"downloads": -1,
"filename": "ToDonePy-1.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "81651db30fff3dcfffcf0cf9b3e6b264",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 18965,
"upload_time": "2019-09-21T13:51:35",
"url": "https://files.pythonhosted.org/packages/50/1d/ba83804d7beaf0f036cadf2ab70e0d680eaf306fd662e7ac5ea2281f8961/ToDonePy-1.1.0-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e049ca8ede162deda3f6fd112954d877",
"sha256": "1d222ef82f7d67cdfe6583158e015bb593acd9b88e95cd78ab9d4b80ded1adb5"
},
"downloads": -1,
"filename": "ToDonePy-1.1.0.tar.gz",
"has_sig": false,
"md5_digest": "e049ca8ede162deda3f6fd112954d877",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 6404,
"upload_time": "2019-09-21T13:51:37",
"url": "https://files.pythonhosted.org/packages/70/da/2d51788b3f900c5a08fa0c403b7238cc8e55c7a0389ba703a8137b1607ce/ToDonePy-1.1.0.tar.gz"
}
],
"1.2.0": [
{
"comment_text": "",
"digests": {
"md5": "88bbce8457136ca844f536a48c43f308",
"sha256": "b430fdd5d401150a992c997153f896e1ba73091673e5c1b76929c13088ea342d"
},
"downloads": -1,
"filename": "ToDonePy-1.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "88bbce8457136ca844f536a48c43f308",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 19106,
"upload_time": "2019-09-21T17:25:34",
"url": "https://files.pythonhosted.org/packages/69/fc/9e1d701fbff6f45a44643759e130683b19e4a2ff9bf4fb6d90ca5d0b6bbb/ToDonePy-1.2.0-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "a993c54d9f8a13d7278137fd33d58c51",
"sha256": "310e503d540033354d7eee7e0dbcb7760dcc465ccd46cef79e2f128defac961f"
},
"downloads": -1,
"filename": "ToDonePy-1.2.0.tar.gz",
"has_sig": false,
"md5_digest": "a993c54d9f8a13d7278137fd33d58c51",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 6529,
"upload_time": "2019-09-21T17:25:36",
"url": "https://files.pythonhosted.org/packages/8c/d3/03101dae991a8a71ce9037e9fa9a5e9dd3d836a3d8d4cd6405c29f8063e5/ToDonePy-1.2.0.tar.gz"
}
],
"1.2.1": [
{
"comment_text": "",
"digests": {
"md5": "e1dbfd7dca8396806c1d146e67c52a27",
"sha256": "b8913ab8fa375bb9976b1cccaaf15e7c012debd14b40cbc14de5cf83472dcb4b"
},
"downloads": -1,
"filename": "ToDonePy-1.2.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "e1dbfd7dca8396806c1d146e67c52a27",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 19258,
"upload_time": "2019-09-22T15:49:59",
"url": "https://files.pythonhosted.org/packages/21/64/04ff2c650d783878faecebf24aebb05e2f9802b6dc25fbbdc58d99e9b3e7/ToDonePy-1.2.1-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6568ba1824570d67a51609f4014f151f",
"sha256": "e611b7aafc80095ee4806051f433aa67cfb8fb7cc8eb37ed110c21a40fa2d636"
},
"downloads": -1,
"filename": "ToDonePy-1.2.1.tar.gz",
"has_sig": false,
"md5_digest": "6568ba1824570d67a51609f4014f151f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 6760,
"upload_time": "2019-09-22T15:50:01",
"url": "https://files.pythonhosted.org/packages/cd/e5/359cbd333d3de73518303855d7cff2c4046ede933038a10bab3c77dfe9bf/ToDonePy-1.2.1.tar.gz"
}
],
"1.3.1": [
{
"comment_text": "",
"digests": {
"md5": "713769f8d06e5ddfdf7fe436d1c7247d",
"sha256": "ee9805ff9a604b0eeb793c207bba11f94a263f8b4639876e37ab2f5a3ea6a7c2"
},
"downloads": -1,
"filename": "ToDonePy-1.3.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "713769f8d06e5ddfdf7fe436d1c7247d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 20217,
"upload_time": "2019-09-24T17:45:28",
"url": "https://files.pythonhosted.org/packages/0d/98/a107ab0ae4228636b678eb4c8a191db2c5b35d137c8bc9107078b8d084b8/ToDonePy-1.3.1-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "465e84644a4134e9db297dc294cf6a22",
"sha256": "66f1cd3a2a32d9f8016da32f8467bf714538fd23ed8aea094bce0ed0d00cfc60"
},
"downloads": -1,
"filename": "ToDonePy-1.3.1.tar.gz",
"has_sig": false,
"md5_digest": "465e84644a4134e9db297dc294cf6a22",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 7513,
"upload_time": "2019-09-24T17:45:30",
"url": "https://files.pythonhosted.org/packages/c2/94/3bcc4e6f97d192f7b9b69f1dcf36066c5e5dbf88565914fa6c4345a7ed91/ToDonePy-1.3.1.tar.gz"
}
],
"1.3.2": [
{
"comment_text": "",
"digests": {
"md5": "79d6dd32b2d1c943d6f97d55363674a3",
"sha256": "c1991be26ef4e12e480faba3887bcb33b0d3867214e72417ff472fe2d9059fc0"
},
"downloads": -1,
"filename": "ToDonePy-1.3.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "79d6dd32b2d1c943d6f97d55363674a3",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 20223,
"upload_time": "2019-09-24T18:57:27",
"url": "https://files.pythonhosted.org/packages/d4/e7/d2b31f2e514f4f4cbb110555be2f21214d72b14ed4b9917e99be59ba75c1/ToDonePy-1.3.2-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "2dfd4516cc5a7e33495d846deaa31c2d",
"sha256": "8e90ed1024c493cd0f2e2988630cbadf325ed10f0cb31f2375ac943b34054b8e"
},
"downloads": -1,
"filename": "ToDonePy-1.3.2.tar.gz",
"has_sig": false,
"md5_digest": "2dfd4516cc5a7e33495d846deaa31c2d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 7520,
"upload_time": "2019-09-24T18:57:29",
"url": "https://files.pythonhosted.org/packages/fb/ba/d0994858adcf4f31008e8b8f7e6bba733db44188aed0e0f3cb16b04b7ef9/ToDonePy-1.3.2.tar.gz"
}
],
"2.0.0": [
{
"comment_text": "",
"digests": {
"md5": "c094b615702e9dd1ce1c91e2857fc3b2",
"sha256": "f7cad39b89f2ae33d73d99d347e03dfce96f74d131af609fe8707d1459724b88"
},
"downloads": -1,
"filename": "ToDonePy-2.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c094b615702e9dd1ce1c91e2857fc3b2",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 20732,
"upload_time": "2019-09-28T14:57:44",
"url": "https://files.pythonhosted.org/packages/e5/4c/2d7bfda080419899ee4a16f7c571a866f82fb860791ca9d257964a4af94b/ToDonePy-2.0.0-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "aa7b106c907914571927431fd422bc6b",
"sha256": "75b20309c2acb17883099d36c5ba6c91f9a10b63a72a557574a624396597c512"
},
"downloads": -1,
"filename": "ToDonePy-2.0.0.tar.gz",
"has_sig": false,
"md5_digest": "aa7b106c907914571927431fd422bc6b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 8690,
"upload_time": "2019-09-28T14:57:46",
"url": "https://files.pythonhosted.org/packages/98/de/db443f11e97a1ddcfcc87a486b73ebe84d084b827aa97b76f5441bec80db/ToDonePy-2.0.0.tar.gz"
}
],
"2.1.0": [
{
"comment_text": "",
"digests": {
"md5": "c1df5e876a15dae90d7c0749c9ed77e3",
"sha256": "597ec19a475e41d5724c781ec33769783822c143ad547c59625eaf08510b39ca"
},
"downloads": -1,
"filename": "ToDonePy-2.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c1df5e876a15dae90d7c0749c9ed77e3",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 21028,
"upload_time": "2019-09-30T15:17:04",
"url": "https://files.pythonhosted.org/packages/5b/76/76c88f60fb261223374b23d9d6e7650e98c7ac3c85b3daf0e65d8fe8327c/ToDonePy-2.1.0-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "a4ba673246f46e2e1b0f973fd20498a8",
"sha256": "abe508084a87cb763ce4c9e931a0cf29c2585e0382ad8cae33de4922dcf21994"
},
"downloads": -1,
"filename": "ToDonePy-2.1.0.tar.gz",
"has_sig": false,
"md5_digest": "a4ba673246f46e2e1b0f973fd20498a8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 9023,
"upload_time": "2019-09-30T15:17:10",
"url": "https://files.pythonhosted.org/packages/71/db/f02434dbe85c647718160f421cac69e85e38e55a1a0dda1cfd567467838d/ToDonePy-2.1.0.tar.gz"
}
],
"2.1.1": [
{
"comment_text": "",
"digests": {
"md5": "dcd868f1ad09abd2cf7fe49ffff09eda",
"sha256": "996affb53c60a011851107835cd27953b502f68c7d816f2d762ccab80305eeb3"
},
"downloads": -1,
"filename": "ToDonePy-2.1.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "dcd868f1ad09abd2cf7fe49ffff09eda",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 21021,
"upload_time": "2019-09-30T15:21:12",
"url": "https://files.pythonhosted.org/packages/03/b8/23c86732802c0ceba002e5502029ffd10cd8d514367eff5353a1cd2c20e8/ToDonePy-2.1.1-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "340fe6673da8304abe83d1460aca96d0",
"sha256": "3f6aa382462b2cc721f7b387559d1a967a186184955e0a7c8f6eacd655083ed4"
},
"downloads": -1,
"filename": "ToDonePy-2.1.1.tar.gz",
"has_sig": false,
"md5_digest": "340fe6673da8304abe83d1460aca96d0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 9006,
"upload_time": "2019-09-30T15:21:26",
"url": "https://files.pythonhosted.org/packages/6d/1c/ab1c2bbd3a7b963e487488746c984f6bcc33856208f2d558e4ff621ca5d5/ToDonePy-2.1.1.tar.gz"
}
],
"2.2.0": [
{
"comment_text": "",
"digests": {
"md5": "0b1d1f81eba05f9ec90be6a09d5157df",
"sha256": "b7cdf1d61c1983d591a1f0eae151475524540daf158d90aa5660629399300109"
},
"downloads": -1,
"filename": "ToDonePy-2.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "0b1d1f81eba05f9ec90be6a09d5157df",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 21631,
"upload_time": "2019-09-30T17:19:08",
"url": "https://files.pythonhosted.org/packages/ac/8b/4ff53783f7a8a79ae60115558514067c98ff502711bbce6171ebc61e9e19/ToDonePy-2.2.0-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "634b5cfe80591006a14e4d4dddf3c950",
"sha256": "f1a0906ead3d3e384b04b56215856aba43af63be633b9202a5a09e98987a0f43"
},
"downloads": -1,
"filename": "ToDonePy-2.2.0.tar.gz",
"has_sig": false,
"md5_digest": "634b5cfe80591006a14e4d4dddf3c950",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 9470,
"upload_time": "2019-09-30T17:19:10",
"url": "https://files.pythonhosted.org/packages/e3/9f/5d9ffaf177fb42c7e6b58e746fac46ae57ed73a8e528645d88756e998ba7/ToDonePy-2.2.0.tar.gz"
}
],
"2.2.1": [
{
"comment_text": "",
"digests": {
"md5": "b6caf1210ee8c3caa07da257eefee489",
"sha256": "f280eddcb76f768e1368a573652276235940007e85783a711d39ef2a64e86f1f"
},
"downloads": -1,
"filename": "ToDonePy-2.2.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b6caf1210ee8c3caa07da257eefee489",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 21630,
"upload_time": "2019-10-06T16:07:41",
"url": "https://files.pythonhosted.org/packages/a1/bd/942da48bf855729374a762d267858a5ee38ec2b016f80397d41690ba1907/ToDonePy-2.2.1-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b7154a0b48022491a59362c07ed312bc",
"sha256": "386937fd166fc335564b9852f1c4d47024a0e375e1897f4b4e81aa9f99a3d93d"
},
"downloads": -1,
"filename": "ToDonePy-2.2.1.tar.gz",
"has_sig": false,
"md5_digest": "b7154a0b48022491a59362c07ed312bc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 9465,
"upload_time": "2019-10-06T16:07:42",
"url": "https://files.pythonhosted.org/packages/0e/30/9780c2b2de051d3915bb8c877b810000b6dba9bdde8656ac1fa46c25eec2/ToDonePy-2.2.1.tar.gz"
}
],
"2.3.0": [
{
"comment_text": "",
"digests": {
"md5": "3f276ee9522637900b820d3750e50c8c",
"sha256": "dcf00e7e80255eb87fa0e83dd4ec6b9c417fed1d6f2c407e1062b3a5feb4a16f"
},
"downloads": -1,
"filename": "ToDonePy-2.3.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3f276ee9522637900b820d3750e50c8c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 22436,
"upload_time": "2019-10-11T20:17:59",
"url": "https://files.pythonhosted.org/packages/aa/89/f65bd5bc01596e9fd12f0f38d1970f000924dae0a8c18d77682d2b6f4af3/ToDonePy-2.3.0-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0f90edbe3e2c2dae2529ecbe21b60bcc",
"sha256": "cc3cf2d2927deab9ea02691dd22f7d2d842555e6179be2dfb44911cc75762e2a"
},
"downloads": -1,
"filename": "ToDonePy-2.3.0.tar.gz",
"has_sig": false,
"md5_digest": "0f90edbe3e2c2dae2529ecbe21b60bcc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 10056,
"upload_time": "2019-10-11T20:18:01",
"url": "https://files.pythonhosted.org/packages/70/02/0a66ea2fb6b892f798aa90ee128553013c2084c7faab6fb2896c5eb92646/ToDonePy-2.3.0.tar.gz"
}
],
"2.3.1": [
{
"comment_text": "",
"digests": {
"md5": "9acf55df240c18acf00531324fcbe4d4",
"sha256": "33b3e735cc129d5b8c23bc12d2b9132447b45905a6d824780d6046b25d4ace8d"
},
"downloads": -1,
"filename": "ToDonePy-2.3.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "9acf55df240c18acf00531324fcbe4d4",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 22435,
"upload_time": "2019-10-11T23:44:28",
"url": "https://files.pythonhosted.org/packages/60/a9/b6c81c3cb56ef7866cf5a103116c96321a882f85c613ee25309ea72c1caa/ToDonePy-2.3.1-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "f4efa6500f523132a8f5758c3c1d1511",
"sha256": "3834120f50d8040b814d078d20d4ab038aec1325aaa7e450e3bd83f5c6ecf3cc"
},
"downloads": -1,
"filename": "ToDonePy-2.3.1.tar.gz",
"has_sig": false,
"md5_digest": "f4efa6500f523132a8f5758c3c1d1511",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 10054,
"upload_time": "2019-10-11T23:44:30",
"url": "https://files.pythonhosted.org/packages/97/64/1e13894e34f3525e68f0ce3ec6820b9d005eb351163d68818d8cf311523a/ToDonePy-2.3.1.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "9acf55df240c18acf00531324fcbe4d4",
"sha256": "33b3e735cc129d5b8c23bc12d2b9132447b45905a6d824780d6046b25d4ace8d"
},
"downloads": -1,
"filename": "ToDonePy-2.3.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "9acf55df240c18acf00531324fcbe4d4",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 22435,
"upload_time": "2019-10-11T23:44:28",
"url": "https://files.pythonhosted.org/packages/60/a9/b6c81c3cb56ef7866cf5a103116c96321a882f85c613ee25309ea72c1caa/ToDonePy-2.3.1-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "f4efa6500f523132a8f5758c3c1d1511",
"sha256": "3834120f50d8040b814d078d20d4ab038aec1325aaa7e450e3bd83f5c6ecf3cc"
},
"downloads": -1,
"filename": "ToDonePy-2.3.1.tar.gz",
"has_sig": false,
"md5_digest": "f4efa6500f523132a8f5758c3c1d1511",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 10054,
"upload_time": "2019-10-11T23:44:30",
"url": "https://files.pythonhosted.org/packages/97/64/1e13894e34f3525e68f0ce3ec6820b9d005eb351163d68818d8cf311523a/ToDonePy-2.3.1.tar.gz"
}
]
}