{ "info": { "author": "Anthony DiGirolamo", "author_email": "anthony.digirolamo@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console :: Curses", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Natural Language :: English", "Operating System :: MacOS", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Topic :: Office/Business :: Scheduling" ], "description": "todotxt-machine\n===============\n\ntodotxt-machine is an interactive terminal based\n`todo.txt `__ file editor with an interface similar\nto `mutt `__. It follows `the todo.txt\nformat `__\nand stores todo items in plain text.\n\nIn Action\n---------\n\n.. image:: https://raw.githubusercontent.com/AnthonyDiGirolamo/todotxt-machine/master/screenshots/animation1.gif\n :target: https://raw.githubusercontent.com/AnthonyDiGirolamo/todotxt-machine/master/screenshots/animation1.gif\n\nFeatures\n--------\n\n- View your todos in a list with helpful syntax highlighting\n- Archive completed todos\n- Define your own colorschemes\n- Tab completion of contexts and projects\n- Filter contexts and projects\n- Search for the todos you want with fuzzy matching\n- Sort in ascending or descending order, or keep things unsorted\n- Clickable UI elements\n\nRequirements\n------------\n\nPython 2.7 or Python 3.4 on Linux or Mac OS X.\n\ntodotxt-machine 1.1.8 and earlier drew its user interface using only raw\nterminal escape sequences. While this was very educational it was\ndifficult to extend with new features. Version 2 and up uses\n`urwid `__ to draw its interface and is much\nmore easily extendable.\n\nInstallation\n------------\n\nUsing `pip `__\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n::\n\n pip install todotxt-machine\n\nManually\n~~~~~~~~\n\nDownload or clone this repo and run the ``todotxt-machine.py`` script.\n\n::\n\n git clone https://github.com/AnthonyDiGirolamo/todotxt-machine.git\n cd todotxt-machine\n ./todotxt-machine.py\n\nCommand Line Options\n--------------------\n\n::\n\n todotxt-machine\n\n Usage:\n todotxt-machine\n todotxt-machine TODOFILE [DONEFILE]\n todotxt-machine [--config FILE]\n todotxt-machine (-h | --help)\n todotxt-machine --version\n todotxt-machine --show-default-bindings\n\n Options:\n -c FILE --config=FILE Path to your todotxt-machine configuraton file [default: ~/.todotxt-machinerc]\n -h --help Show this screen.\n --version Show version.\n --show-default-bindings Show default keybindings in config parser format\n Add this to your config file and edit to customize\n\nConfig File\n-----------\n\nYou can tell todotxt-machine to use the same todo.txt file whenever it\nstarts up by adding a ``file`` entry to the ``~/.todotxt-machinerc``\nfile. If you want to archive completed tasks, you can specify a done.txt\nfile using an ``archive`` entry. You can also set you preferred\ncolorscheme or even define new themes. Here is a short example:\n\n::\n\n [settings]\n file = ~/todo.txt\n archive = ~/done.txt\n colorscheme = myawesometheme\n\nColor Schemes\n-------------\n\ntodotxt-machine currently supports\n`solarized `__ and\n`base16 `__ colors.\n\n.. image:: https://raw.githubusercontent.com/AnthonyDiGirolamo/todotxt-machine/master/screenshots/todo_colors.png\n :target: https://raw.githubusercontent.com/AnthonyDiGirolamo/todotxt-machine/master/screenshots/todo_colors.png\n\nPictured above are the following themes from left to right:\n\n- ``base16-light``\n- ``base16-dark``\n- ``solarized-light``\n- ``solarized-dark``\n\nHere is a config file with a complete colorscheme definition:\n\n::\n\n [settings]\n file = ~/todo.txt\n colorscheme = myawesometheme\n\n [colorscheme-myawesometheme]\n plain=h250\n selected=,h238\n header=h250,h235\n header_todo_count=h39,h235\n header_todo_pending_count=h228,h235\n header_todo_done_count=h156,h235\n header_file=h48,h235\n dialog_background=,h248\n dialog_color=,h240\n dialog_shadow=,h238\n footer=h39,h235\n search_match=h222,h235\n completed=h59\n context=h39\n project=h214\n creation_date=h135\n due_date=h161\n priority_a=h167\n priority_b=h173\n priority_c=h185\n priority_d=h77\n priority_e=h80\n priority_f=h62\n\nYou can add colorschemes by adding sections with names that start with\n``colorscheme-``. Then under the ``[settings]`` section you can say\nwhich colorscheme you want to use.\n\nThe format for a color definitions is:\n\n::\n\n name=foreground,background\n\nForeground and background colors are follow the 256 color formats\n`defined by\nurwid `__.\nHere is an excerpt from that link:\n\n High colors may be specified by their index ``h0``, ..., ``h255`` or\n with the shortcuts for the color cube ``#000``, ``#006``, ``#008``,\n ..., ``#fff`` or gray scale entries ``g0`` (black from color cube) ,\n ``g3``, ``g7``, ... ``g100`` (white from color cube).\n\nYou can see all the colors defined\n`here `__.\n\nI recommend you leave the foreground out of the following definitions by\nadding a comma immediately after the ``=``\n\n::\n\n selected=,h238\n dialog_background=,h248\n dialog_color=,h240\n dialog_shadow=,h238\n\nIf you want to use your terminal's default foreground and background\ncolor use blank strings and keep the comma:\n\n::\n\n dialog_background=,\n\nLet me know if you make any good colorschemes and I'll add it to the\ndefault collection.\n\nKey Bindings\n------------\n\nYou can customize any key binding by adding a setting to the ``[keys]``\nsection of your config file ``~/.todotxt-machinerc``.\n\nFor a list of the default key bindings run:\n\n::\n\n todotxt-machine --show-default-bindings\n\nYou can easily append this to your config file by running:\n\n::\n\n todotxt-machine --show-default-bindings >> ~/.todotxt-machinerc\n\nWhen you edit a key binding the in app help will reflect it. Hit ``h``\nor ``?`` to view the help.\n\nKnown Issues\n------------\n\nOSX\n~~~\n\n- On Mac OS hitting ``ctrl-y`` suspends the application. Run\n ``stty dsusp undef`` to fix.\n- Mouse interaction doesn't seem to work properly in the Apple\n Terminal. I would recommend using `iTerm2 `__ or\n rxvt / xterm in `XQuartz `__.\n\nTmux\n~~~~\n\n- With tmux the background color in todotxt-machine can sometimes be\n lost at the end of a line. If this is happening to you set your\n ``$TERM`` variable to ``screen`` or ``screen-256color``\n\n export TERM=screen-256color\n\nPlanned Features\n----------------\n\n- [STRIKEOUT:User defined color themes]\n- [STRIKEOUT:Manual reordering of todo items]\n- [STRIKEOUT:Config file for setting colors and todo.txt file location]\n- [STRIKEOUT:Support for archiving todos in done.txt]\n- [STRIKEOUT:Custom keybindings]\n- Add vi readline keybindings. urwid doesn't support readline\n currently. The emacs style bindings currently available are emulated.\n\nUpdates\n-------\n\nSee the `log\nhere `__", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/AnthonyDiGirolamo/todotxt-machine", "keywords": "todotxt,todo.txt,todo,terminal,urwid,curses,console", "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "todotxt-machine", "package_url": "https://pypi.org/project/todotxt-machine/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/todotxt-machine/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/AnthonyDiGirolamo/todotxt-machine" }, "release_url": "https://pypi.org/project/todotxt-machine/2.2.2/", "requires_dist": null, "requires_python": null, "summary": "An interactive terminal based todo.txt file editor with an interface similar to mutt", "version": "2.2.2" }, "last_serial": 1700637, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "3085a62a3859b7c000993f7e05d2451e", "sha256": "58a33a4606884a6013b0a04766bc9198b21e1e1d636b71a18daf8fd93cd84496" }, "downloads": -1, "filename": "todotxt_machine-1.0.0-py2.7.egg", "has_sig": false, "md5_digest": "3085a62a3859b7c000993f7e05d2451e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 68119, "upload_time": "2013-10-31T20:08:25", "url": "https://files.pythonhosted.org/packages/19/96/796f58b79e2c54bfac1ef0acd5161502b8c8a225bb7ead156a6858fff6f1/todotxt_machine-1.0.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "ed09ea43304ff5cd4dad584b3ebd2de4", "sha256": "9ed5672444c293a703b4f87409580913487c72f39f9d4f1ec9552f66d7fbf970" }, "downloads": -1, "filename": "todotxt-machine-1.0.0.tar.gz", "has_sig": false, "md5_digest": "ed09ea43304ff5cd4dad584b3ebd2de4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25517, "upload_time": "2013-10-31T20:08:22", "url": "https://files.pythonhosted.org/packages/84/c2/de8b2c145e06088f02498b01ddf81aff1c6e463f8f70746c2ea61bd6ca4c/todotxt-machine-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "aced277d8d021c4e7f1e3c6aebc218a0", "sha256": "1a0c195cca0e9e2c8bfc64d1940bf6d2257c10829400f22a922bdf780007d4ab" }, "downloads": -1, "filename": "todotxt_machine-1.0.1-py2.7.egg", "has_sig": false, "md5_digest": "aced277d8d021c4e7f1e3c6aebc218a0", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 68192, "upload_time": "2013-10-31T20:18:12", "url": "https://files.pythonhosted.org/packages/7b/5b/49ca6bbde1904665e0e167dfc863b9418d38336d40f48d98ce731f7059b6/todotxt_machine-1.0.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "f29d55c856c9ec89d531f9d13c5fdbec", "sha256": "04a99f4c47b7da14fe390d90c6a2961b3ca1ff78f3f184c0a337fb05ecef8200" }, "downloads": -1, "filename": "todotxt-machine-1.0.1.tar.gz", "has_sig": false, "md5_digest": "f29d55c856c9ec89d531f9d13c5fdbec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25984, "upload_time": "2013-10-31T20:18:08", "url": "https://files.pythonhosted.org/packages/06/0d/a0e048d5d1af65235ab8d7c4004a744ceff62ec613b16c468a68850348b8/todotxt-machine-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "0ce654da60f1c9cc558d0c0bccadb627", "sha256": "4938bc588b3ea8d9c1f073759b0ddc28de59b8f1fda966dc3f9ef3d187f20eaa" }, "downloads": -1, "filename": "todotxt_machine-1.0.2-py2.7.egg", "has_sig": false, "md5_digest": "0ce654da60f1c9cc558d0c0bccadb627", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 68153, "upload_time": "2013-10-31T20:27:32", "url": "https://files.pythonhosted.org/packages/92/fe/04f02c577752b91d5f44b8b56d92b30596362be0d3a3e54aca54c0194264/todotxt_machine-1.0.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "390191a5d642d515619724286bd40639", "sha256": "35201ca73d8ad363dfa7b70b109ac60512abaa3e0e0fb76f8725ea9ba8997d47" }, "downloads": -1, "filename": "todotxt-machine-1.0.2.tar.gz", "has_sig": false, "md5_digest": "390191a5d642d515619724286bd40639", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25896, "upload_time": "2013-10-31T20:27:29", "url": "https://files.pythonhosted.org/packages/88/5b/3e0cd8d806f994d673c58ac52e3e850c960bd7a05c8df712c79fe8d9b7f3/todotxt-machine-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "50eb06669a7a14fbb9242759e107cbd4", "sha256": "62b27bd9752f94954f2c1569c3ed25219c101007cef2e89a042117eda23410eb" }, "downloads": -1, "filename": "todotxt_machine-1.0.3-py2.7.egg", "has_sig": false, "md5_digest": "50eb06669a7a14fbb9242759e107cbd4", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 56581, "upload_time": "2013-11-01T13:17:27", "url": "https://files.pythonhosted.org/packages/e0/13/a579db1b1ff0ad13a326a438ef31bb8f81bc516399edd1c5104512f1ac8f/todotxt_machine-1.0.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "7a6c60a9e0f796f65df71a8983c7c3d3", "sha256": "9724d4dbb41b24a322e588e71005b1d2caa8236b44bfd838c65c1bc4da86fccd" }, "downloads": -1, "filename": "todotxt_machine-1.0.3-py3.3.egg", "has_sig": false, "md5_digest": "7a6c60a9e0f796f65df71a8983c7c3d3", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 58925, "upload_time": "2013-11-01T13:16:55", "url": "https://files.pythonhosted.org/packages/07/c1/35560e00747b3d9ed587a69b9bc35294e7162185a2739d653113ba1e6ac6/todotxt_machine-1.0.3-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "8192a39b062138b4b0d7075985262471", "sha256": "1e8db1f0c30e9a24a1170c57671b8408f15a007f1a73e6458f5e466679fc196a" }, "downloads": -1, "filename": "todotxt-machine-1.0.3.tar.gz", "has_sig": false, "md5_digest": "8192a39b062138b4b0d7075985262471", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26219, "upload_time": "2013-11-01T13:16:52", "url": "https://files.pythonhosted.org/packages/73/d3/e1a1110cf7a88cfd5374fb8adc6568b89d8dfafabe9ff0d1a74d3588e13e/todotxt-machine-1.0.3.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "717bcc1a3735d0b44db8b7921331757c", "sha256": "ba04d1b1580cad0a6b58f21b4eceb904bcc0b566eb26f72d5f701b577c6933d8" }, "downloads": -1, "filename": "todotxt_machine-1.1.0-py2.7.egg", "has_sig": false, "md5_digest": "717bcc1a3735d0b44db8b7921331757c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 59117, "upload_time": "2013-11-02T19:47:05", "url": "https://files.pythonhosted.org/packages/04/bf/959bb25a9348cbb8fdcdaac5202ecb7692b1b5cfb7a317381087eb3291a2/todotxt_machine-1.1.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "687379b9f0fe23f219e5b5e2f2ab659b", "sha256": "d522cbdf5a170dcf14bf5dd02171946529c242d01251319ea72068dc58f3f6a0" }, "downloads": -1, "filename": "todotxt_machine-1.1.0-py3.3.egg", "has_sig": false, "md5_digest": "687379b9f0fe23f219e5b5e2f2ab659b", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 61592, "upload_time": "2013-11-02T19:47:21", "url": "https://files.pythonhosted.org/packages/58/1d/669e66a5a8ceb514c653835d8bcc588b1247cfb33f7d17a1189b50ffcdcb/todotxt_machine-1.1.0-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "5206fe9b9799e490486c5af64198b47d", "sha256": "f34bfafd5f8221e72dfa8240d66130fd9217160768dd2229890fe4423e5e2613" }, "downloads": -1, "filename": "todotxt-machine-1.1.0.tar.gz", "has_sig": false, "md5_digest": "5206fe9b9799e490486c5af64198b47d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27384, "upload_time": "2013-11-02T19:47:03", "url": "https://files.pythonhosted.org/packages/da/f5/eec54257f69d3914f1cac4b40e5112cc3fcd32234071f3cf0ee6a704b9bc/todotxt-machine-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "2b32e29a37592d327836b84eefb1cbd5", "sha256": "c87fc8b89d8ba3b2b0a6dfa54ed4675214a8905a506da8a2c790bea85bf7a243" }, "downloads": -1, "filename": "todotxt_machine-1.1.1-py2.7.egg", "has_sig": false, "md5_digest": "2b32e29a37592d327836b84eefb1cbd5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 59372, "upload_time": "2013-11-05T08:25:14", "url": "https://files.pythonhosted.org/packages/79/fa/50ee3e8febf0ce91a02b80ebf4de11c8bb70b5ba6a0b852359051f53bce2/todotxt_machine-1.1.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "f89a6e4afbcec26f066871c0e2c702d0", "sha256": "b624e23aaadf95f195f7529c9d472e9fc2938eca45b1d0fa83e2cb8b641b083a" }, "downloads": -1, "filename": "todotxt_machine-1.1.1-py3.3.egg", "has_sig": false, "md5_digest": "f89a6e4afbcec26f066871c0e2c702d0", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 61848, "upload_time": "2013-11-05T08:25:22", "url": "https://files.pythonhosted.org/packages/00/16/f42f80d69dd6e742435e4a0857e5b6293a6a31e3e589925e4452038e4113/todotxt_machine-1.1.1-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "ba9b12b588546b0bf1576b4d2397d704", "sha256": "f000806a73aa3cab9f21c672f524d654309468e5344eb1d29e4d4fb08a4e6e29" }, "downloads": -1, "filename": "todotxt-machine-1.1.1.tar.gz", "has_sig": false, "md5_digest": "ba9b12b588546b0bf1576b4d2397d704", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27507, "upload_time": "2013-11-05T08:25:11", "url": "https://files.pythonhosted.org/packages/a7/1d/7ef15faf83849efbcb24f0258d246354f124f7d0f40f463e374cc1e49546/todotxt-machine-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "b7faa048d98f4a45b8d21d89cb3742c3", "sha256": "a4bbc0bd31544f79c3574bbca1f9a20b00bb38ea36505370bf8a6b1b4767fb81" }, "downloads": -1, "filename": "todotxt_machine-1.1.2-py2.7.egg", "has_sig": false, "md5_digest": "b7faa048d98f4a45b8d21d89cb3742c3", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 59419, "upload_time": "2013-11-05T08:31:36", "url": "https://files.pythonhosted.org/packages/bb/56/7b0fef2553f186e836febf845e23f1e7e502b01ddbfdbe4093043f44f1c2/todotxt_machine-1.1.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "de70b0ad77d77a23e5f8ec4d3535846c", "sha256": "f7300badb038c4382c67dd3f3f6415a6060fc9946300a9ede9fe719be6a51f4a" }, "downloads": -1, "filename": "todotxt_machine-1.1.2-py3.3.egg", "has_sig": false, "md5_digest": "de70b0ad77d77a23e5f8ec4d3535846c", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 61894, "upload_time": "2013-11-05T08:31:00", "url": "https://files.pythonhosted.org/packages/9a/24/6ecb519ce1bacaa7d1d207aba479e804b5b61bf6f427b969974bb87f92b7/todotxt_machine-1.1.2-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "e8bfd16d92b68480b08daaaaf0c2f59d", "sha256": "e7cbcac9b9d08a735bd083b3e4eb7dc6952de2ae6798bbf093416d44a4cf2c03" }, "downloads": -1, "filename": "todotxt-machine-1.1.2.tar.gz", "has_sig": false, "md5_digest": "e8bfd16d92b68480b08daaaaf0c2f59d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27593, "upload_time": "2013-11-05T08:30:57", "url": "https://files.pythonhosted.org/packages/c4/b8/0fde40e4019e3b89c2c915db3b8c9905bc6ce7df7eb43c6037fdbbb6cf6a/todotxt-machine-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "09710fa302bdee2c56c25f9a6b1feb38", "sha256": "8b4a4342d8b4dfd2ce1359f3890fbe2c6b26d3ad2f225b071cf17d996e3188ad" }, "downloads": -1, "filename": "todotxt_machine-1.1.3-py2.7.egg", "has_sig": false, "md5_digest": "09710fa302bdee2c56c25f9a6b1feb38", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 59408, "upload_time": "2013-11-05T08:41:00", "url": "https://files.pythonhosted.org/packages/aa/94/b011271178855b2a738517e9964e3e18b4b43fe5e01d79a39a5ba0aba7ad/todotxt_machine-1.1.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c4af121f79ac087538b0bf6e460e7d11", "sha256": "86709fdb892046778e1a8150ea53f607ee507a407d08d815d93fa3631260d84f" }, "downloads": -1, "filename": "todotxt_machine-1.1.3-py3.3.egg", "has_sig": false, "md5_digest": "c4af121f79ac087538b0bf6e460e7d11", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 61891, "upload_time": "2013-11-05T08:40:47", "url": "https://files.pythonhosted.org/packages/38/61/a896b06e38f29ae32eae52f917d153e62ffa86441c4193bdaeb1217776fd/todotxt_machine-1.1.3-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "8138f596ba95217d0c9213b98c07a5a5", "sha256": "5a4a666a7f5d5ff3d75d1934b88578e867783305f93becbb35a0afc0074c4527" }, "downloads": -1, "filename": "todotxt-machine-1.1.3.tar.gz", "has_sig": false, "md5_digest": "8138f596ba95217d0c9213b98c07a5a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27579, "upload_time": "2013-11-05T08:40:45", "url": "https://files.pythonhosted.org/packages/8d/42/157babe28d1e6aa11f6da70594b972a645d879128e0d76c92b78bfd9ab9b/todotxt-machine-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "1893a955feef1d3d77f90122e5fc07ad", "sha256": "5e313623d5229d7763567601865e5db6bcfbbeccc97ae9f1c911ca30661fd15f" }, "downloads": -1, "filename": "todotxt_machine-1.1.4-py2.7.egg", "has_sig": false, "md5_digest": "1893a955feef1d3d77f90122e5fc07ad", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 59436, "upload_time": "2013-11-05T08:47:58", "url": "https://files.pythonhosted.org/packages/fd/0c/e4830aa94f0174dad014f77b2cc5435833a8ecd1365f0d56b454be57aa75/todotxt_machine-1.1.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "303e255b7cc91a73375bf4c8a7251103", "sha256": "9c8c0d64946d3f0694741b7744f866878cda050d36063a903905037b370c131c" }, "downloads": -1, "filename": "todotxt_machine-1.1.4-py3.3.egg", "has_sig": false, "md5_digest": "303e255b7cc91a73375bf4c8a7251103", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 61917, "upload_time": "2013-11-05T08:48:08", "url": "https://files.pythonhosted.org/packages/1c/bb/ccedbbcb224f40d7fa49f43590fc91e7b93b6a357a225bc851b1351fc512/todotxt_machine-1.1.4-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "0f3234f59626ca0ea02d8dfdaec3d932", "sha256": "c49b489963a61b480e8b9a8fe5eb2cc00f8da84225963473736d4c0ab64b3c6c" }, "downloads": -1, "filename": "todotxt-machine-1.1.4.tar.gz", "has_sig": false, "md5_digest": "0f3234f59626ca0ea02d8dfdaec3d932", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27638, "upload_time": "2013-11-05T08:47:56", "url": "https://files.pythonhosted.org/packages/6a/7c/6b921d901f71f28362d4b679e09d0b4291b3a09df6421ee7e5a0b8a1855d/todotxt-machine-1.1.4.tar.gz" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "67ac7504cf2b09aa0577ea91c00f2a28", "sha256": "4df91130d893656b8b445d52847ba5b35a248fc5ab9ea59ef2d669d62ef1bd89" }, "downloads": -1, "filename": "todotxt_machine-1.1.5-py2.7.egg", "has_sig": false, "md5_digest": "67ac7504cf2b09aa0577ea91c00f2a28", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 59573, "upload_time": "2013-11-05T08:56:57", "url": "https://files.pythonhosted.org/packages/47/c1/4459586e1945f14347367c4b6535893f1cdb4e214e5a19adf01190ee274c/todotxt_machine-1.1.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "5c848000b00be93a8d3f18fc5899e424", "sha256": "bfbb48d32047c028509a9baf4b48db37fcb51942047ae7da396132d8c2659914" }, "downloads": -1, "filename": "todotxt_machine-1.1.5-py3.3.egg", "has_sig": false, "md5_digest": "5c848000b00be93a8d3f18fc5899e424", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 62054, "upload_time": "2013-11-05T08:57:08", "url": "https://files.pythonhosted.org/packages/ec/63/d82e5d77f1b406214c6ae331468e9a6a8f7cb0f0e15586ff628c2885513e/todotxt_machine-1.1.5-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "f9fe95256ef6307f3ca1a08a348eec08", "sha256": "284d325ed90dba601318803361ae439c8bc180112e937457d3536ccc880b868a" }, "downloads": -1, "filename": "todotxt-machine-1.1.5.tar.gz", "has_sig": false, "md5_digest": "f9fe95256ef6307f3ca1a08a348eec08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27676, "upload_time": "2013-11-05T08:56:54", "url": "https://files.pythonhosted.org/packages/39/14/fc689ebdb5fd8d82077ff6032259c94c70b4f8580c3d6c30468ca06e6d6b/todotxt-machine-1.1.5.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "230f1499572478b0a665e51dd88734a0", "sha256": "2973f15c3b168cda197e0d43e871af82ba8900f07a491e97b11da6cf4a6401b0" }, "downloads": -1, "filename": "todotxt_machine-1.1.6-py2.7.egg", "has_sig": false, "md5_digest": "230f1499572478b0a665e51dd88734a0", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 59833, "upload_time": "2013-11-08T16:06:13", "url": "https://files.pythonhosted.org/packages/d7/2a/e52603505f1f26e49d513a8277bcfee85bcc97d905aeda1aea9c990a1362/todotxt_machine-1.1.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "ef2cc4945803c8d93477865c88c3b2fa", "sha256": "0ee6f41d2f494146fc1093b85a890725cd9d6c793dd76c6a4928399c7a276286" }, "downloads": -1, "filename": "todotxt_machine-1.1.6-py3.3.egg", "has_sig": false, "md5_digest": "ef2cc4945803c8d93477865c88c3b2fa", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 62313, "upload_time": "2013-11-08T16:05:58", "url": "https://files.pythonhosted.org/packages/4e/5e/ebe3ec3a2fd881d4713cf4cfcb483153bc1d63e0c29ad477e6568c936d0a/todotxt_machine-1.1.6-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "137803008127ad8dcd5ddaae04c1d73c", "sha256": "9a62d65e7dbf5c39fc5ae59fa0083739ed75996f1b308e973bf0e1e2cba8cf2c" }, "downloads": -1, "filename": "todotxt-machine-1.1.6.tar.gz", "has_sig": false, "md5_digest": "137803008127ad8dcd5ddaae04c1d73c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27763, "upload_time": "2013-11-08T16:05:55", "url": "https://files.pythonhosted.org/packages/32/63/e4d1f8bc194dce754f620c41b3b98fd58a5d65c867f1c4ee5f017a360395/todotxt-machine-1.1.6.tar.gz" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "a9dec7160eb6f1d28031e8ec6447c2b1", "sha256": "de0d1b1e4d107b9eba1c8da0664420d5dfdabeba5420f0fd2f8033b567764475" }, "downloads": -1, "filename": "todotxt_machine-1.1.7-py2.7.egg", "has_sig": false, "md5_digest": "a9dec7160eb6f1d28031e8ec6447c2b1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 59993, "upload_time": "2014-07-26T16:32:19", "url": "https://files.pythonhosted.org/packages/b5/ef/82e90de48e2414bd12988d028cb70abf12762d8d9745dcad78e6ec0799af/todotxt_machine-1.1.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e51917fa7d1c39f314dad771d67a47b7", "sha256": "fd59eba4a6556e36abefe3dd27f38a9307baffa5715ee3ab1c6cf552c57f637d" }, "downloads": -1, "filename": "todotxt_machine-1.1.7-py3.4.egg", "has_sig": false, "md5_digest": "e51917fa7d1c39f314dad771d67a47b7", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 61653, "upload_time": "2014-07-26T16:31:32", "url": "https://files.pythonhosted.org/packages/4d/d2/4a4fd5207d78f307446a0b078c6f44d80063f729ece1f2ebd478724a1f5c/todotxt_machine-1.1.7-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "4619cc9583c50f55a2cf9725e23cd9fc", "sha256": "afdc745f6d183c9abd7be637f5970daf2be483b3a3a8a65d14d2df5c9b274a3b" }, "downloads": -1, "filename": "todotxt-machine-1.1.7.tar.gz", "has_sig": false, "md5_digest": "4619cc9583c50f55a2cf9725e23cd9fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27922, "upload_time": "2014-07-26T16:31:29", "url": "https://files.pythonhosted.org/packages/44/aa/930b9c8740312c74b685216dde038b283b3716a59c266344da0bb842914d/todotxt-machine-1.1.7.tar.gz" } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "78a23b7178872eb972f723ebe9e79607", "sha256": "1a73e1324ad5c7e3c555f9b0ca37b1f9de56e724749b05f7bedd9e278cc17227" }, "downloads": -1, "filename": "todotxt_machine-1.1.8-py2.7.egg", "has_sig": false, "md5_digest": "78a23b7178872eb972f723ebe9e79607", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 60261, "upload_time": "2014-08-01T02:02:05", "url": "https://files.pythonhosted.org/packages/20/3d/561332b47332b47cb3024390dcebfd8b1bd5c20a2c4780b2bde96fe812a8/todotxt_machine-1.1.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "f7abf1d61e0ff2c6c95f3ede6e2f6ad6", "sha256": "fa321fa5ba62a2a4cddf637bd4285bf70e453ed65736585e2a1dc731d3a03089" }, "downloads": -1, "filename": "todotxt_machine-1.1.8-py3.4.egg", "has_sig": false, "md5_digest": "f7abf1d61e0ff2c6c95f3ede6e2f6ad6", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 61924, "upload_time": "2014-08-01T01:59:50", "url": "https://files.pythonhosted.org/packages/6c/71/dabd73ac9c546208e04ba1c1916a9c629b4a52b336c1d53cbe96e436ded0/todotxt_machine-1.1.8-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "2c38fc493f027b3c77a628e14a686cd8", "sha256": "9633ccc54772dccc3a3a1f0857de8e5ed62096dd56317e7cc90a85ff08efdc3d" }, "downloads": -1, "filename": "todotxt-machine-1.1.8.tar.gz", "has_sig": false, "md5_digest": "2c38fc493f027b3c77a628e14a686cd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28085, "upload_time": "2014-08-01T01:59:47", "url": "https://files.pythonhosted.org/packages/b3/8e/b2503df5a6e4bda35891721e94e6430d32753c3e50539c98d9ead4006bb0/todotxt-machine-1.1.8.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "fa242fab0c66a5554ddf0f88c340dae7", "sha256": "448b710692fcc81df5c3bdcec79ec1641e3d74f749852d412a15002782e1f21d" }, "downloads": -1, "filename": "todotxt_machine-2.0.0-py2.7.egg", "has_sig": false, "md5_digest": "fa242fab0c66a5554ddf0f88c340dae7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 83388, "upload_time": "2014-08-27T02:36:24", "url": "https://files.pythonhosted.org/packages/5d/93/d015a20e0f4777f579878890fe0dee21d2e8068e67c3976a776b1a1cd3f6/todotxt_machine-2.0.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "f975a5d32cf7d34dc9c11d81974874b6", "sha256": "0bc677a6fa0834b160cc1cac5804650e18bbdc0f6a0b16d24afe07f9c8d6a2bd" }, "downloads": -1, "filename": "todotxt_machine-2.0.0-py3.4.egg", "has_sig": false, "md5_digest": "f975a5d32cf7d34dc9c11d81974874b6", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 85661, "upload_time": "2014-08-27T02:36:13", "url": "https://files.pythonhosted.org/packages/55/93/5c0f6aabd95f102157e1573291d7b87d31614577431e6861963e389b7230/todotxt_machine-2.0.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "97d2da1951fa4649dd17877314f5802a", "sha256": "e2543990bf10d71b955f54bb0d7933d022c1c568c24b8c83cb6b529bc7c6b62a" }, "downloads": -1, "filename": "todotxt-machine-2.0.0.tar.gz", "has_sig": false, "md5_digest": "97d2da1951fa4649dd17877314f5802a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34648, "upload_time": "2014-08-27T02:36:11", "url": "https://files.pythonhosted.org/packages/60/53/b3b89d722bc58818e49156c1638fe4cfef1c2a9b7ec8f3e48fe61e970388/todotxt-machine-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "6ddfa701105cfb6b6244b35b2d2b1071", "sha256": "358103f21248a4a9b6c733c5069a01a9bc67df7e5c8d671161c177bef23de54e" }, "downloads": -1, "filename": "todotxt_machine-2.0.1-py2.7.egg", "has_sig": false, "md5_digest": "6ddfa701105cfb6b6244b35b2d2b1071", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 83480, "upload_time": "2014-08-27T02:44:44", "url": "https://files.pythonhosted.org/packages/64/f8/79ab7ee200e93e50b086a29efc083e6609d962a1a795ebc28528625b3d54/todotxt_machine-2.0.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8120bddb5176de8b87c8b930121d04e2", "sha256": "6d20eacff58549bb35beefd47a49dfd4b97ba67d20782d58268b15f0b78c9c15" }, "downloads": -1, "filename": "todotxt_machine-2.0.1-py3.4.egg", "has_sig": false, "md5_digest": "8120bddb5176de8b87c8b930121d04e2", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 85757, "upload_time": "2014-08-27T02:44:56", "url": "https://files.pythonhosted.org/packages/bf/7a/5e8064e2407b2bcd02faf562a1a509f321045024849ac879dfa3938ba82c/todotxt_machine-2.0.1-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "986f5d0fa3827546709ef8bbf5c3858b", "sha256": "0d1e96ca9c8d8f126c0daf0654e157c564059da5daa116b70df3fb0e2b9fe5c4" }, "downloads": -1, "filename": "todotxt-machine-2.0.1.tar.gz", "has_sig": false, "md5_digest": "986f5d0fa3827546709ef8bbf5c3858b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34844, "upload_time": "2014-08-27T02:44:41", "url": "https://files.pythonhosted.org/packages/9c/7e/91d2c5c557fed1197b08e4cdc8a56c519ad186bc87e690378231bca3314f/todotxt-machine-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "3a7289020ef75f067a2b28b1619638aa", "sha256": "bfa30077dab47a635db47839e1e8d59f6550db0041bb3deacf72b952e00acff1" }, "downloads": -1, "filename": "todotxt_machine-2.0.2-py2.7.egg", "has_sig": false, "md5_digest": "3a7289020ef75f067a2b28b1619638aa", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 83513, "upload_time": "2014-08-27T13:55:34", "url": "https://files.pythonhosted.org/packages/fa/9c/39edd7df22c2c29c4cb233ae54d7f26dbd701727b24d67de6a831b87b57e/todotxt_machine-2.0.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e7ca48298813f3d4acfe5e248e889850", "sha256": "c0b6c3c620228ee04e0d24241aa0f8705e46a7ae58e425b779032c88e2f4f5c9" }, "downloads": -1, "filename": "todotxt_machine-2.0.2-py3.4.egg", "has_sig": false, "md5_digest": "e7ca48298813f3d4acfe5e248e889850", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 85788, "upload_time": "2014-08-27T13:55:18", "url": "https://files.pythonhosted.org/packages/6d/58/c8e24c580840b462f588227198805985f39d507711d039ae163e55cc152c/todotxt_machine-2.0.2-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "5bdba374fffeb1ea419ece9bd4306274", "sha256": "0839a14d3a04dfafa1ef38f486213fb835f21c9568a429062bdf521a770354bb" }, "downloads": -1, "filename": "todotxt-machine-2.0.2.tar.gz", "has_sig": false, "md5_digest": "5bdba374fffeb1ea419ece9bd4306274", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34875, "upload_time": "2014-08-27T13:55:16", "url": "https://files.pythonhosted.org/packages/c8/79/5113a415fdd61195c62dd1ab0d4a97eee4901ee60daae2d9dfae9dee3c8b/todotxt-machine-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "896423c8d4d7777b06c336f1beea9e6f", "sha256": "d8998dc312cee2d6a89fd464c83ae551e9f656cc4b3007989098a4f5db528c61" }, "downloads": -1, "filename": "todotxt_machine-2.0.3-py2.7.egg", "has_sig": false, "md5_digest": "896423c8d4d7777b06c336f1beea9e6f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 84431, "upload_time": "2014-08-28T01:53:09", "url": "https://files.pythonhosted.org/packages/c4/b4/25b186cf5894df012ad483bd895ca7fc3ae33cb1594361538b505f287c00/todotxt_machine-2.0.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e79fa240907bff9daed6995fc43e6e08", "sha256": "5993c2c5e0370437c461f0696986948328c364cd8993442f3c80c647723f4681" }, "downloads": -1, "filename": "todotxt_machine-2.0.3-py3.4.egg", "has_sig": false, "md5_digest": "e79fa240907bff9daed6995fc43e6e08", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 86746, "upload_time": "2014-08-28T01:52:57", "url": "https://files.pythonhosted.org/packages/dc/b2/f75d882d31a59030bfa12aaf7f269a9353ba91c4f5fd280ec3a1ca8c1650/todotxt_machine-2.0.3-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "537ba088cc449153633239665fe2ca7a", "sha256": "5fd66be498fef9c9d052fefe83c9afa56533269dc72cf7242cfc7b3b0da329c5" }, "downloads": -1, "filename": "todotxt-machine-2.0.3.tar.gz", "has_sig": false, "md5_digest": "537ba088cc449153633239665fe2ca7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35219, "upload_time": "2014-08-28T01:52:54", "url": "https://files.pythonhosted.org/packages/78/f8/df42f088815af9a174e21f32b62d338d342fef43e58dd8555af418f6e58c/todotxt-machine-2.0.3.tar.gz" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "97577b46c7087701ef565f640a1f4d74", "sha256": "5c732dd60e58806eb249699c5f8493e68ab5492f6a31d68b160ef916aedcd825" }, "downloads": -1, "filename": "todotxt_machine-2.0.4-py2.7.egg", "has_sig": false, "md5_digest": "97577b46c7087701ef565f640a1f4d74", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 84381, "upload_time": "2014-08-28T02:05:26", "url": "https://files.pythonhosted.org/packages/63/21/03e5cf899bafbadff55c42221264120e78db00cbd410844fc51f72016f84/todotxt_machine-2.0.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d26dde480db25409b15e5c865df76930", "sha256": "ec3522fbc20be5050299d5524d05dddd5269663067346c4b1af205a1d104a9d0" }, "downloads": -1, "filename": "todotxt_machine-2.0.4-py3.4.egg", "has_sig": false, "md5_digest": "d26dde480db25409b15e5c865df76930", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 86691, "upload_time": "2014-08-28T02:05:42", "url": "https://files.pythonhosted.org/packages/9e/39/ac850dbb6eb4bcc273def6583b4d49da62903b26f7fbebf6faeb81adeaed/todotxt_machine-2.0.4-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "36334cc70f9a249b8e084209808fdae0", "sha256": "ee09585648bd43f65eabe74429185e157804444b028520602a9884aecbc711c5" }, "downloads": -1, "filename": "todotxt-machine-2.0.4.tar.gz", "has_sig": false, "md5_digest": "36334cc70f9a249b8e084209808fdae0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35188, "upload_time": "2014-08-28T02:05:23", "url": "https://files.pythonhosted.org/packages/5d/44/1f727c5305c19f9496ce1a179261d8eb70e6634f27f244e00082e3f91dd1/todotxt-machine-2.0.4.tar.gz" } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "1c4574c020ef33634b9feb00ccdb4b11", "sha256": "54d3833ed920d714e858f5be2a76ba79dd06f17d61bd63148bf0d8080aa98808" }, "downloads": -1, "filename": "todotxt_machine-2.0.5-py2.7.egg", "has_sig": false, "md5_digest": "1c4574c020ef33634b9feb00ccdb4b11", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 86548, "upload_time": "2014-08-29T13:29:28", "url": "https://files.pythonhosted.org/packages/58/ce/25b3fb57b92b8fad69f0e00b788240954e206ed95d54bcad05cc7c7dcd07/todotxt_machine-2.0.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0bd29566edc6175455a8a35b65ad30df", "sha256": "72816e5ae9e99fa224ebc6f5b847dd0783c9d35efb2a9a0519c29ff05c549e17" }, "downloads": -1, "filename": "todotxt_machine-2.0.5-py3.4.egg", "has_sig": false, "md5_digest": "0bd29566edc6175455a8a35b65ad30df", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 88857, "upload_time": "2014-08-29T13:29:48", "url": "https://files.pythonhosted.org/packages/ee/e2/8b69aa89233b2c59dda4492e0306a46a01d0bb219bff3a9f5aa9ee362e57/todotxt_machine-2.0.5-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "15f5e82f49c311369bb4657f7499459d", "sha256": "61b4f1730545bb64d0f9a4418732213d4589e5f26c6ccf8731c5f11d494403c7" }, "downloads": -1, "filename": "todotxt-machine-2.0.5.tar.gz", "has_sig": false, "md5_digest": "15f5e82f49c311369bb4657f7499459d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36004, "upload_time": "2014-08-29T13:29:25", "url": "https://files.pythonhosted.org/packages/a5/d1/03d1085057634b7f51922fbaf0d5d64c842efee178331f625d7de535a766/todotxt-machine-2.0.5.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "7591b974a8bb6db2698396ce2543c7bf", "sha256": "3ed67b75b20c8f66ffef3b4ec06638278663795af0138f870653081c1b5daf14" }, "downloads": -1, "filename": "todotxt_machine-2.1.0-py2.7.egg", "has_sig": false, "md5_digest": "7591b974a8bb6db2698396ce2543c7bf", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 87409, "upload_time": "2015-04-27T15:00:49", "url": "https://files.pythonhosted.org/packages/7b/23/55e977532020e8830b262e1db7c4cb2fae9110d4b6591d6f0852d0665fd3/todotxt_machine-2.1.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a007c7d7d9bde1e4b6b3d54d265f2bff", "sha256": "97afe4e38423f7be9f54bf793708565a70a640e3d1ddcc4ef674cce687a63a9d" }, "downloads": -1, "filename": "todotxt_machine-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a007c7d7d9bde1e4b6b3d54d265f2bff", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 41221, "upload_time": "2015-08-28T21:49:15", "url": "https://files.pythonhosted.org/packages/65/85/972cbd40cdef2539e632f0ce6c5595026b8a8d7fd2609b1401cf4b4a5bb6/todotxt_machine-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "04b44a9790e4d6b7f61d4f35bc49f22f", "sha256": "01f34067a0687f0235aa03159b4b6fabe87acc6dee1e89b32eab6ceb4c5dbacd" }, "downloads": -1, "filename": "todotxt_machine-2.1.0-py3.4.egg", "has_sig": false, "md5_digest": "04b44a9790e4d6b7f61d4f35bc49f22f", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 89705, "upload_time": "2015-04-27T15:08:34", "url": "https://files.pythonhosted.org/packages/2e/e7/97f1c436b827902917d40ed4b93e0d8eca739241cdcfdaf76a3a960ba081/todotxt_machine-2.1.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "42d3acc59e7803f463c644d1d10784b5", "sha256": "46bcfb27219f81c853a679512aa0024e17da459916538ca615ee7c25eefb2542" }, "downloads": -1, "filename": "todotxt-machine-2.1.0.tar.gz", "has_sig": false, "md5_digest": "42d3acc59e7803f463c644d1d10784b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36445, "upload_time": "2015-04-27T15:00:46", "url": "https://files.pythonhosted.org/packages/1c/33/528aa26da3873ece15519ad3fd9e0cb53c4c9a25720daaf7aac944257ad7/todotxt-machine-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "ffa55eb07f84af6c892a3ae6f1028e53", "sha256": "6b73a51976415eb3068628d9e529fb32ab72b3f9e582fac7a8bbb4e7c15d1a00" }, "downloads": -1, "filename": "todotxt_machine-2.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ffa55eb07f84af6c892a3ae6f1028e53", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 41221, "upload_time": "2015-08-28T22:09:19", "url": "https://files.pythonhosted.org/packages/56/97/2fae93c0ce9afd51e0edde11a07c8a956afa52c3f0b6236470a4efa70ef8/todotxt_machine-2.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "478f44d96ddf366ad90eec3a9161c130", "sha256": "d8f071e345079e8f627aada68db4264e70d69970e29f1c2f78f75b39e76c1cf7" }, "downloads": -1, "filename": "todotxt-machine-2.1.1.tar.gz", "has_sig": false, "md5_digest": "478f44d96ddf366ad90eec3a9161c130", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36406, "upload_time": "2015-08-28T22:09:23", "url": "https://files.pythonhosted.org/packages/97/81/0bd6192be90d9c6e13fd918994b7bfff662e2958f36a5bcaa3f75b40c0a5/todotxt-machine-2.1.1.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "25734f7f6682df6b19ee5ccf6930f886", "sha256": "91e953eefe0a38f253ade529fb5c08826c95362f0a435e086b3798b79d4949a1" }, "downloads": -1, "filename": "todotxt_machine-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "25734f7f6682df6b19ee5ccf6930f886", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 47130, "upload_time": "2015-08-30T17:17:22", "url": "https://files.pythonhosted.org/packages/16/83/9cd82a69aa21eb006644f384df98c0967a39746512e3e037266a5950e62f/todotxt_machine-2.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7cdf323d51857c6b8175abb34d081ac7", "sha256": "3c34cca8ad371b55935a5f9ffb51b21946a46325b1a25fdd8effd8d5e89a252d" }, "downloads": -1, "filename": "todotxt-machine-2.2.0.tar.gz", "has_sig": false, "md5_digest": "7cdf323d51857c6b8175abb34d081ac7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36922, "upload_time": "2015-08-30T17:17:26", "url": "https://files.pythonhosted.org/packages/89/cd/517e8faa2736f1cc7f513dbd692c5e72df7aa5b2dafba4170ef4a0448408/todotxt-machine-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "2afc61dbbe27069333d4be8fd25b07b0", "sha256": "2338daeebd0e96a1cd35c1f44e0181f2c55e0abfdda0a341326b9628db5f661a" }, "downloads": -1, "filename": "todotxt_machine-2.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2afc61dbbe27069333d4be8fd25b07b0", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 47200, "upload_time": "2015-08-30T19:29:38", "url": "https://files.pythonhosted.org/packages/27/f0/2b675ded8b2a10ed2b854e1c16bdc025f0d4cce458807dea0a5144506046/todotxt_machine-2.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "002f4f648cbdd9226b0e1f0fb013e32d", "sha256": "cdfeae2c986576d5416b3ca533c6b12f15a63d1cdb848e2819ce8f178fc3c5b4" }, "downloads": -1, "filename": "todotxt-machine-2.2.1.tar.gz", "has_sig": false, "md5_digest": "002f4f648cbdd9226b0e1f0fb013e32d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36978, "upload_time": "2015-08-30T19:29:50", "url": "https://files.pythonhosted.org/packages/ec/2c/1bce046003e6f087e46f75cad1391e9f44e13a2e6ab4172e104b715f4fec/todotxt-machine-2.2.1.tar.gz" } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "51a3f12ff3b74b4650b37807fe15727a", "sha256": "6ff9baf949b0ca17dec2d6d6d926d141aba56c02f5324481d44340e94d1d963a" }, "downloads": -1, "filename": "todotxt_machine-2.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "51a3f12ff3b74b4650b37807fe15727a", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 47193, "upload_time": "2015-08-30T19:52:38", "url": "https://files.pythonhosted.org/packages/ba/60/ece425e2e50e918318aea5edb765623059c17350176b4cac83ac0dd2c9da/todotxt_machine-2.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c65aa5913feae9e237c0f722555bffb", "sha256": "4ff284fc36db8e5c64ccdb9d74bba2dcffd161594f42ff992bf36df04c2fae16" }, "downloads": -1, "filename": "todotxt-machine-2.2.2.tar.gz", "has_sig": false, "md5_digest": "0c65aa5913feae9e237c0f722555bffb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36975, "upload_time": "2015-08-30T19:52:42", "url": "https://files.pythonhosted.org/packages/1e/27/39e65c58adf2ca0534bb62f12d3867c8fd4a443bb4d8bf5809ad91f86ddf/todotxt-machine-2.2.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "51a3f12ff3b74b4650b37807fe15727a", "sha256": "6ff9baf949b0ca17dec2d6d6d926d141aba56c02f5324481d44340e94d1d963a" }, "downloads": -1, "filename": "todotxt_machine-2.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "51a3f12ff3b74b4650b37807fe15727a", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 47193, "upload_time": "2015-08-30T19:52:38", "url": "https://files.pythonhosted.org/packages/ba/60/ece425e2e50e918318aea5edb765623059c17350176b4cac83ac0dd2c9da/todotxt_machine-2.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c65aa5913feae9e237c0f722555bffb", "sha256": "4ff284fc36db8e5c64ccdb9d74bba2dcffd161594f42ff992bf36df04c2fae16" }, "downloads": -1, "filename": "todotxt-machine-2.2.2.tar.gz", "has_sig": false, "md5_digest": "0c65aa5913feae9e237c0f722555bffb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36975, "upload_time": "2015-08-30T19:52:42", "url": "https://files.pythonhosted.org/packages/1e/27/39e65c58adf2ca0534bb62f12d3867c8fd4a443bb4d8bf5809ad91f86ddf/todotxt-machine-2.2.2.tar.gz" } ] }