{ "info": { "author": "Ralph Bean", "author_email": "ralph.bean@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License (GPL)", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3" ], "description": "This is a python API for the `taskwarrior `_ command\nline tool.\n\nIt contains two implementations: ``taskw.TaskWarriorShellout`` and\n``taskw.TaskWarriorDirect``. The first implementation is the supported one\nrecommended by the upstream taskwarrior core project. It uses the ``task\nexport`` and ``task import`` commands to manipulate the task database. The\nsecond implementation opens the task db file itself and directly manipulates\nit. It exists for backwards compatibility, but should only be used when\nnecessary.\n\nBuild Status\n------------\n\n.. |master| image:: https://secure.travis-ci.org/ralphbean/taskw.png?branch=master\n :alt: Build Status - master branch\n :target: http://travis-ci.org/#!/ralphbean/taskw\n\n.. |develop| image:: https://secure.travis-ci.org/ralphbean/taskw.png?branch=develop\n :alt: Build Status - develop branch\n :target: http://travis-ci.org/#!/ralphbean/taskw\n\n+----------+-----------+\n| Branch | Status |\n+==========+===========+\n| master | |master| |\n+----------+-----------+\n| develop | |develop| |\n+----------+-----------+\n\nGetting taskw\n-------------\n\nInstalling\n++++++++++\n\nUsing ``taskw`` requires that you first install `taskwarrior\n`_.\n\nInstalling it from http://pypi.python.org/pypi/taskw is easy with ``pip``::\n\n $ pip install taskw\n\nThe Source\n++++++++++\n\nYou can find the source on github at http://github.com/ralphbean/taskw\n\n\nExamples\n--------\n\nLooking at tasks\n++++++++++++++++\n\n >>> from taskw import TaskWarrior\n >>> w = TaskWarrior()\n >>> tasks = w.load_tasks()\n >>> tasks.keys()\n ['completed', 'pending']\n >>> type(tasks['pending'])\n \n >>> type(tasks['pending'][0])\n \n\nAdding tasks\n++++++++++++\n\n >>> from taskw import TaskWarrior\n >>> w = TaskWarrior()\n >>> w.task_add(\"Eat food\")\n >>> w.task_add(\"Take a nap\", priority=\"H\", project=\"life\", due=\"1359090000\")\n\nRetrieving tasks\n++++++++++++++++\n\n >>> from taskw import TaskWarrior\n >>> w = TaskWarrior()\n >>> w.get_task(id=5)\n\nUpdating tasks\n++++++++++++++\n\n >>> from taskw import TaskWarrior\n >>> w = TaskWarrior()\n >>> id, task = w.get_task(id=14)\n >>> task['project'] = 'Updated project name'\n >>> w.task_update(task)\n\nDeleting tasks\n++++++++++++++\n\n >>> from taskw import TaskWarrior\n >>> w = TaskWarrior()\n >>> w.task_delete(id=3)\n\nCompleting tasks\n++++++++++++++++\n\n >>> from taskw import TaskWarrior\n >>> w = TaskWarrior()\n >>> w.task_done(id=46)\n\nBeing Flexible\n++++++++++++++\n\nYou can point ``taskw`` at different taskwarrior databases.\n\n >>> from taskw import TaskWarrior\n >>> w = TaskWarrior(config_filename=\"~/some_project/.taskrc\")\n >>> w.task_add(\"Use 'taskw'.\")\n\n\nLooking at the config\n+++++++++++++++++++++\n\n >>> from taskw import TaskWarrior\n >>> w = TaskWarrior()\n >>> config = w.load_config()\n >>> config['data']['location']\n '/home/threebean/.task'\n >>> config['_forcecolor']\n 'yes'\n\n\nUsing Python-appropriate Types (Dates, UUIDs, etc)\n++++++++++++++++++++++++++++++++++++++++++++++++++\n\n >>> from taskw import TaskWarrior\n >>> w = TaskWarrior(marshal=True)\n >>> w.get_task(id=10)\n (10,\n {\n 'description': 'Hello there!',\n 'entry': datetime.datetime(2014, 3, 14, 14, 18, 40, tzinfo=tzutc())\n 'id': 10,\n 'project': 'Saying Hello',\n 'status': 'pending',\n 'uuid': UUID('4882751a-3966-4439-9675-948b1152895c')\n }\n )", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/ralphbean/taskw", "keywords": "taskwarrior task", "license": "GPLv3+", "maintainer": null, "maintainer_email": null, "name": "taskw", "package_url": "https://pypi.org/project/taskw/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/taskw/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://github.com/ralphbean/taskw" }, "release_url": "https://pypi.org/project/taskw/1.2.0/", "requires_dist": null, "requires_python": null, "summary": "Python bindings for your taskwarrior database", "version": "1.2.0" }, "last_serial": 2428794, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "4aaa753ef0b90a01d9a3c1eada6d7a14", "sha256": "2832b4fbd0d50611c6cba8e45d21146e80469bb2547056ecb82fd4b46189a0d8" }, "downloads": -1, "filename": "taskw-0.1.tar.gz", "has_sig": false, "md5_digest": "4aaa753ef0b90a01d9a3c1eada6d7a14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2053, "upload_time": "2011-12-14T22:19:32", "url": "https://files.pythonhosted.org/packages/46/b8/587af9c3fd557912eb261d9c197fb714a4f9c11c21b9ad1c91526100a3ed/taskw-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "a3c22c6be463d96841647f0a2c137aa8", "sha256": "ee75180ae30e40795e7d8bd23989711ef5b7d628f503c2afa7dd37ac394e3b31" }, "downloads": -1, "filename": "taskw-0.1.1.tar.gz", "has_sig": false, "md5_digest": "a3c22c6be463d96841647f0a2c137aa8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2917, "upload_time": "2011-12-15T02:35:51", "url": "https://files.pythonhosted.org/packages/0e/39/23f8ac6da905798dce080e4e1ff50e1dcf9a4012129cb3f0a16be0d226c5/taskw-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "426de713a66d8b723bbb6f841f636358", "sha256": "e85216158e7b7fd69fd5fee9ed461723b70b6d95db1240ef7659d49a9b344fea" }, "downloads": -1, "filename": "taskw-0.1.2.tar.gz", "has_sig": false, "md5_digest": "426de713a66d8b723bbb6f841f636358", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2988, "upload_time": "2011-12-15T02:39:17", "url": "https://files.pythonhosted.org/packages/ac/77/d17ca08e2919cdee9a48c65bf9310cb6ad532e44ded9c69dc684caeee26d/taskw-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "24f8d297cd10314fd0faf0dc1c841c62", "sha256": "704ec45cf129df7afae6acecbdd99eb0c2d14221052a482f98ef0b19fefd56c2" }, "downloads": -1, "filename": "taskw-0.1.3.tar.gz", "has_sig": false, "md5_digest": "24f8d297cd10314fd0faf0dc1c841c62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16021, "upload_time": "2011-12-15T03:44:09", "url": "https://files.pythonhosted.org/packages/cb/67/c360d8cad92becc675c76c71a3993833f742cd6a3e53126a7679bb45df2c/taskw-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "774ca588edceae6930d224ca0c7efcf8", "sha256": "8f6d7b031b7df70ebecd7d10f3c708c5e917299707bc2bf711cb2e3a427d1439" }, "downloads": -1, "filename": "taskw-0.1.4.tar.gz", "has_sig": false, "md5_digest": "774ca588edceae6930d224ca0c7efcf8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16023, "upload_time": "2011-12-15T06:03:59", "url": "https://files.pythonhosted.org/packages/82/c7/35d4b25cda0acf19918e24b99db581301ef89b42be18a904e945a91c8d73/taskw-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "c281fe66bd4dcd6ba4845f7baa8baf94", "sha256": "3317a060fd3bfcdf898e419542adfe692c3cbe066e33b2a5c087fd6e7b70ec79" }, "downloads": -1, "filename": "taskw-0.1.5.tar.gz", "has_sig": false, "md5_digest": "c281fe66bd4dcd6ba4845f7baa8baf94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16025, "upload_time": "2011-12-16T20:21:41", "url": "https://files.pythonhosted.org/packages/7b/eb/f2a6b76a31fbba563f7d99826da264b62200747fa78df32a4f8ae2d50a1b/taskw-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "63ab0e88b73cae20f67ef8967e346be5", "sha256": "58b2303b7d50a406fb18aa708bb9369f91ded388aeeef0f9cfe2763673a0a118" }, "downloads": -1, "filename": "taskw-0.1.6.tar.gz", "has_sig": false, "md5_digest": "63ab0e88b73cae20f67ef8967e346be5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16132, "upload_time": "2011-12-16T22:23:31", "url": "https://files.pythonhosted.org/packages/05/28/b31f2db1310773a2233d6783ccf2f0446729cd9b3b92d78d4fe9fbd4244e/taskw-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "f67dbfeddecb567ae73ad9f57256f526", "sha256": "ded13b2fd439fc4a5e501f48ddaeb5e0325b3a4694f98796fecc592f736d3af6" }, "downloads": -1, "filename": "taskw-0.1.7.tar.gz", "has_sig": false, "md5_digest": "f67dbfeddecb567ae73ad9f57256f526", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16168, "upload_time": "2011-12-19T16:31:59", "url": "https://files.pythonhosted.org/packages/3f/eb/a12cfd8924ba84fb49d1dde0fc752118ee5de255d2d7528f611a01856fbb/taskw-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "888eab92dbe4a052808ecfe966b9a0f8", "sha256": "c253814b9d1fd2632ffb9028f245460ca1b906bc23982a828c538a5bd87fd064" }, "downloads": -1, "filename": "taskw-0.1.8.tar.gz", "has_sig": false, "md5_digest": "888eab92dbe4a052808ecfe966b9a0f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16187, "upload_time": "2011-12-19T17:15:26", "url": "https://files.pythonhosted.org/packages/17/f6/d8ad2ded590bc40c343c6963419c6bbaf3b7deafe265dba727d9f53c12e0/taskw-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "8fc5ec7e1ac0a8d76dd31d81dc133e69", "sha256": "de0ebf97a980ff0d236be3756b1e4e7ba06cc0b14dd899f7a37d783f0691610a" }, "downloads": -1, "filename": "taskw-0.1.9.tar.gz", "has_sig": false, "md5_digest": "8fc5ec7e1ac0a8d76dd31d81dc133e69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16278, "upload_time": "2011-12-31T05:30:53", "url": "https://files.pythonhosted.org/packages/51/98/a726873bd98112b969f404a8ce6ef42b30a0a59ff7718e65bb2000e480b1/taskw-0.1.9.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "e9c1ad2fed83710c95a501bdd940480d", "sha256": "b61241ed8a3a6cd3f189d908503a406bd6970559472a0c9b345fc1894b225c35" }, "downloads": -1, "filename": "taskw-0.2.0.tar.gz", "has_sig": false, "md5_digest": "e9c1ad2fed83710c95a501bdd940480d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16986, "upload_time": "2012-01-12T04:53:46", "url": "https://files.pythonhosted.org/packages/0f/84/6105a5ad305d09802cf45a3df9a8143ec7ae4b7f893ff811ca3fc799af5a/taskw-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "2d18f483491af013d842f28374fbeb45", "sha256": "0126d20197a2687e84cb9a309e2c0cf24be08a7fb52eca890aa42829a9a3f9c9" }, "downloads": -1, "filename": "taskw-0.3.0.tar.gz", "has_sig": false, "md5_digest": "2d18f483491af013d842f28374fbeb45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17634, "upload_time": "2012-01-23T06:17:45", "url": "https://files.pythonhosted.org/packages/68/7c/04f2976f68a233fdcf6a4855d5ceab1c5c8e121dcd963ece46e7441a9ff9/taskw-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "190bc409a7c279cfb4ab8f2401719b51", "sha256": "312594c9ab8d9538565001d664f7a317d1410bf8928d037c833e624c7309aa91" }, "downloads": -1, "filename": "taskw-0.3.1.tar.gz", "has_sig": false, "md5_digest": "190bc409a7c279cfb4ab8f2401719b51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17614, "upload_time": "2012-01-24T05:51:49", "url": "https://files.pythonhosted.org/packages/d7/de/e09574ce6b57838a8cd6ab17aa5391334bb8d21743ad2d723dd8aa01dbe8/taskw-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "f3f43d0cf045198fe66fbc4e6c80fbcf", "sha256": "0c14a28e8e867f9c2e6667191ccd36f2c62e1b17561ddf842fb74b447398da11" }, "downloads": -1, "filename": "taskw-0.3.2.tar.gz", "has_sig": false, "md5_digest": "f3f43d0cf045198fe66fbc4e6c80fbcf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17819, "upload_time": "2012-02-03T22:50:53", "url": "https://files.pythonhosted.org/packages/71/eb/e809236a0d3cc93141d18f7a73da4a42ab009090d16bafa781cb04234c56/taskw-0.3.2.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "035c7141630656985cbe9d8faef32977", "sha256": "6a1792f647b0de743dc4b92a827f0d5a558b0380beefce5b200a0c3e0037e764" }, "downloads": -1, "filename": "taskw-0.4.0.tar.gz", "has_sig": false, "md5_digest": "035c7141630656985cbe9d8faef32977", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18204, "upload_time": "2012-04-25T19:56:18", "url": "https://files.pythonhosted.org/packages/c1/3c/9c5ceb98c7e70dcf76849ddf373d26696662c87517db7434737465f6144c/taskw-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "56c1754ded5b353065f1c2e0a06ac8f0", "sha256": "a5b7d50860b5aba00b0faac27e9a5edeebf9b349d216e98a000432e5c82f737d" }, "downloads": -1, "filename": "taskw-0.4.1.tar.gz", "has_sig": false, "md5_digest": "56c1754ded5b353065f1c2e0a06ac8f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18928, "upload_time": "2012-05-11T00:37:52", "url": "https://files.pythonhosted.org/packages/75/ec/821d6617088ad0385e7e97fde89eb8d5561b14817cb47033780a724008ae/taskw-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "439a1922a91f7c5436017d47db592945", "sha256": "eed121635dc122c20cb3155786e1dc932f1e26efb087f4384a4d82bd1361fcee" }, "downloads": -1, "filename": "taskw-0.4.2.tar.gz", "has_sig": false, "md5_digest": "439a1922a91f7c5436017d47db592945", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18999, "upload_time": "2012-06-28T03:43:43", "url": "https://files.pythonhosted.org/packages/55/ae/93d608eae5a8e6a9a2cf1f44d544d9941880b2f3403d953d791b8770d9a3/taskw-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "a269d7b26c92858e7cb51236ed45359e", "sha256": "f215de768a2148ebb03fc4bed0ee0da90fc30b38f14178fefea5ee6fbcb2bdc2" }, "downloads": -1, "filename": "taskw-0.4.3.tar.gz", "has_sig": false, "md5_digest": "a269d7b26c92858e7cb51236ed45359e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19271, "upload_time": "2012-08-15T02:23:22", "url": "https://files.pythonhosted.org/packages/24/19/7bd3c720b75e0bc58a0eb4c1acfb90f28f05bb5b9f7e75828d213cb7a0cb/taskw-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "388afa09e9d8d1cf77843bb765a01491", "sha256": "f21eaebc0d91c6fbe1743a4c7fd4af7c1c4a3ad765d84b38ac44f2592c8e3f89" }, "downloads": -1, "filename": "taskw-0.4.4.tar.gz", "has_sig": false, "md5_digest": "388afa09e9d8d1cf77843bb765a01491", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18202, "upload_time": "2012-12-11T13:38:28", "url": "https://files.pythonhosted.org/packages/6d/52/7d44546d95ef5aba556000d8b8c267fa1b8d712a02d811cec63bf8e68273/taskw-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "6e9d0f568e1fdae412904897131435e1", "sha256": "05110c6a050e507cc4ce92de6cdd16c9d5c773650aa7cf6adff8a0fb35260a05" }, "downloads": -1, "filename": "taskw-0.4.5.tar.gz", "has_sig": false, "md5_digest": "6e9d0f568e1fdae412904897131435e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18287, "upload_time": "2013-01-24T18:55:46", "url": "https://files.pythonhosted.org/packages/82/69/241cd8a94d324455ddefcd9e7289d26d3b2300fb40146b61b314bd649b41/taskw-0.4.5.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "3697ff9a3c084f6d2e632a12f38763f0", "sha256": "3c507f603213173c13485952d3b4ebba9b67264de61e67a332bbf024dc9ce3be" }, "downloads": -1, "filename": "taskw-0.5.0.tar.gz", "has_sig": true, "md5_digest": "3697ff9a3c084f6d2e632a12f38763f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20687, "upload_time": "2013-04-08T14:30:46", "url": "https://files.pythonhosted.org/packages/2e/63/325823a80c05b1f2bf47f397132f32e2ae1ba4ebbbee0f72581608f777f5/taskw-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "f0b9b56bbf9b33d0fac164220df727b5", "sha256": "8f5a7de5bc0eb6a5335350a0286839f02ba1f0feb934ec8523cccb13a81b93d8" }, "downloads": -1, "filename": "taskw-0.5.1.tar.gz", "has_sig": true, "md5_digest": "f0b9b56bbf9b33d0fac164220df727b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20674, "upload_time": "2013-04-08T14:34:10", "url": "https://files.pythonhosted.org/packages/ac/e7/73fb8903fae7054941ab7f70621b7eada5358825f117b06767e036b7e3c3/taskw-0.5.1.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "1734cc12938cf8be509c4cefdd834090", "sha256": "233b055dd9538c961b3ae680dae6bd4fbe5711e2b70e67a86b4e18fd8db04f95" }, "downloads": -1, "filename": "taskw-0.6.0.tar.gz", "has_sig": true, "md5_digest": "1734cc12938cf8be509c4cefdd834090", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22996, "upload_time": "2013-06-21T12:52:45", "url": "https://files.pythonhosted.org/packages/76/7e/13b4d5141cfe30fddd792ce92c17af6cf31b80c5ba25498bba508be3b054/taskw-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "996016abe3f8fedac1a18b423321d389", "sha256": "7e3d54250c13ceca353a3b428cfc5b88fa7f455f9562c03ae8b39943c57e905f" }, "downloads": -1, "filename": "taskw-0.6.1.tar.gz", "has_sig": true, "md5_digest": "996016abe3f8fedac1a18b423321d389", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23360, "upload_time": "2013-11-07T14:01:06", "url": "https://files.pythonhosted.org/packages/34/bb/fa8e19f52cafd25cd9ebc995190cfb387db40c5056fdf027308decb31e6f/taskw-0.6.1.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "07ca52cd0d0bd45ab5da49f3ca6ff715", "sha256": "47015733fe4a626efefe11c4be48fa1143723603bdb41915d8a8cb01bbcd049c" }, "downloads": -1, "filename": "taskw-0.7.0.tar.gz", "has_sig": true, "md5_digest": "07ca52cd0d0bd45ab5da49f3ca6ff715", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23768, "upload_time": "2014-01-21T15:24:02", "url": "https://files.pythonhosted.org/packages/74/ec/6834a690a86e3771d52da63a207691234535dc115507485282e9d1670520/taskw-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "66e2ea5827bd64fdd59b2c77c5e77ddc", "sha256": "15401df4e6be90f4c96e63dab0ecc0cee1cdfa7c956a79678f5663505d2a4527" }, "downloads": -1, "filename": "taskw-0.7.1.tar.gz", "has_sig": true, "md5_digest": "66e2ea5827bd64fdd59b2c77c5e77ddc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23775, "upload_time": "2014-01-21T15:25:21", "url": "https://files.pythonhosted.org/packages/f6/ef/7f37b651a087b3f04a499c2da17e49f5ae62ac7fbe038296655f439887b2/taskw-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "c116699cd82a9af1083dd0fe880bdf91", "sha256": "86dcc01fa48148e5c1878f3977c4a91ccbba1abd7915cb6ec5a8ff560a24bf00" }, "downloads": -1, "filename": "taskw-0.7.2.tar.gz", "has_sig": true, "md5_digest": "c116699cd82a9af1083dd0fe880bdf91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23841, "upload_time": "2014-01-22T21:54:38", "url": "https://files.pythonhosted.org/packages/65/a7/69fa537a469371e37149859618786e8746c5ce8aa156ea16276c3fe75bbd/taskw-0.7.2.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "b0a7a1de474952b8794472a85417a1f6", "sha256": "05b4c582202f4da377d4c1c363ab39304012f6e65d98defaeb783c2662953552" }, "downloads": -1, "filename": "taskw-0.8.0.tar.gz", "has_sig": true, "md5_digest": "b0a7a1de474952b8794472a85417a1f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26049, "upload_time": "2014-03-05T18:59:20", "url": "https://files.pythonhosted.org/packages/11/d5/698c92c2e06367ca30b7418078fde3a8697e2c852fad44e22bd5c0c921b9/taskw-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "8b87e616dcfda36c4f537e1bf5ce2a95", "sha256": "3b7420a257088769ef2bafcf053ac83c409b5f3b4f4c0b2f3c705b5d0762e194" }, "downloads": -1, "filename": "taskw-0.8.1.tar.gz", "has_sig": true, "md5_digest": "8b87e616dcfda36c4f537e1bf5ce2a95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26687, "upload_time": "2014-03-08T16:43:50", "url": "https://files.pythonhosted.org/packages/2f/ed/2fa6d8752de8c4f2af3ba1c06ffacced9f2f6df2ca840841016f1a385f82/taskw-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "86b08763719ad67d79145ee12959ae03", "sha256": "6bdaba2790ac76d5b490e09c9f0c1c2bfe9b5fe4f52abfccb1164ae5440f642b" }, "downloads": -1, "filename": "taskw-0.8.2.tar.gz", "has_sig": true, "md5_digest": "86b08763719ad67d79145ee12959ae03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36934, "upload_time": "2014-05-01T16:20:01", "url": "https://files.pythonhosted.org/packages/a1/93/70b55b763a4f9a72e076f46b558347f3c14e99afc01c13227d5b8b27f40c/taskw-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "f73396c4d4295d72c753762ff2833ad2", "sha256": "d35fa42cddf430db4c66186ccc9bffc183845147b0da929205363cd5eb30013a" }, "downloads": -1, "filename": "taskw-0.8.3.tar.gz", "has_sig": true, "md5_digest": "f73396c4d4295d72c753762ff2833ad2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37046, "upload_time": "2014-05-07T19:21:35", "url": "https://files.pythonhosted.org/packages/c6/83/0336fdbd4df3c5b27ec347448270ba82d89eecc91f91607bd56469d46920/taskw-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "41325a41eb8fc2f7d17632b0cc0fba09", "sha256": "4b6e2c6cd83769fd2e3d51d88df2631423a81c75b8b5a17f2780b334252c05da" }, "downloads": -1, "filename": "taskw-0.8.4.tar.gz", "has_sig": true, "md5_digest": "41325a41eb8fc2f7d17632b0cc0fba09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37209, "upload_time": "2014-08-23T01:59:18", "url": "https://files.pythonhosted.org/packages/ef/a3/471410790ea96fb2913b79ccfb6e1dfff8286cc877250c042e921f93dafa/taskw-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "b8914bbe938ec5bb181f1c0a78f8788d", "sha256": "2b32b4b758161373a66678ceddc82e3d8c7dc3d053cd2cc710eee6a77022c517" }, "downloads": -1, "filename": "taskw-0.8.5.tar.gz", "has_sig": true, "md5_digest": "b8914bbe938ec5bb181f1c0a78f8788d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37213, "upload_time": "2014-08-23T02:00:14", "url": "https://files.pythonhosted.org/packages/3b/56/89035761f86fc614313844393e5f1dc69704c6b8fd1a110450d87677ff8c/taskw-0.8.5.tar.gz" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "9f3ce2eaff9a3986d04632547168894d", "sha256": "341a165a1c2ef94fb1c2a49a785357377f04a0d55cabe9563179849497e47146" }, "downloads": -1, "filename": "taskw-0.8.6.tar.gz", "has_sig": true, "md5_digest": "9f3ce2eaff9a3986d04632547168894d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37293, "upload_time": "2014-08-24T01:34:17", "url": "https://files.pythonhosted.org/packages/52/d5/da8fd96a93289591e1875f0f0bfad3e109844ba88a4cfbfa36d45c0922db/taskw-0.8.6.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "6afbc2e907e7ef695eabac7df1815cb3", "sha256": "a4451d727d257d52dbcd9f27a416f3964ca43ea8b4bf6ac70260f3f2c3448f77" }, "downloads": -1, "filename": "taskw-1.0.0.tar.gz", "has_sig": true, "md5_digest": "6afbc2e907e7ef695eabac7df1815cb3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38882, "upload_time": "2015-02-11T15:34:49", "url": "https://files.pythonhosted.org/packages/53/6a/8e0444601285f7a935608cd966fdef838f6fbe3e0c0906cf286f863e4b2a/taskw-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "4692c0fec8210cad7a6c9ee6efbccddf", "sha256": "0dceb7e7cb81b4e7f24637e57af1285d06df52e57120c70c9702c3cbd7e498e7" }, "downloads": -1, "filename": "taskw-1.0.1.tar.gz", "has_sig": true, "md5_digest": "4692c0fec8210cad7a6c9ee6efbccddf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38863, "upload_time": "2015-02-11T15:45:46", "url": "https://files.pythonhosted.org/packages/fe/f0/6c41fc8915dfb44c8fe7e7917a1c7c20554481776f236c009a3da4dac7d8/taskw-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "742e228c4698ed7745795391a14ef83f", "sha256": "79164ed00541ba346539091d84ce6f02d4de759266459ea52959684d2f874271" }, "downloads": -1, "filename": "taskw-1.0.2.tar.gz", "has_sig": true, "md5_digest": "742e228c4698ed7745795391a14ef83f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38849, "upload_time": "2015-02-11T15:46:35", "url": "https://files.pythonhosted.org/packages/93/5d/8bf8cd1e49f4a0058da9dbb0afb75df455cae0ec8c1874c03d25b4bea2e5/taskw-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "09010ce19e0be86422516a3e784cb5d3", "sha256": "b640ec70fc0bbb4862589953488751b99509a9bd5480edf372f79a94ca5e47b9" }, "downloads": -1, "filename": "taskw-1.0.3.tar.gz", "has_sig": true, "md5_digest": "09010ce19e0be86422516a3e784cb5d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38953, "upload_time": "2015-02-17T00:59:49", "url": "https://files.pythonhosted.org/packages/79/7e/847ea63c3f108e7d1e1c9e6a2e5bbcd04c3b415579fe2fdae924ec5db304/taskw-1.0.3.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "e5d3eedbbbf00b50bd2f797839888791", "sha256": "c81b2d83e6ad46f634171369a7f7d2f0d910f9a899faf789f1dd2ea7b27afa5c" }, "downloads": -1, "filename": "taskw-1.1.0.tar.gz", "has_sig": true, "md5_digest": "e5d3eedbbbf00b50bd2f797839888791", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39998, "upload_time": "2015-09-10T17:35:51", "url": "https://files.pythonhosted.org/packages/af/40/513f8323d2864566f5530a8052371a06c6510229d955a1f69248889a9be4/taskw-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "860b454eaa7d7380642c67b7b622c73b", "sha256": "fadd8afc12df026c3c2d39b633c55d3337f7dca95602fce2239455a048bc85fe" }, "downloads": -1, "filename": "taskw-1.2.0.tar.gz", "has_sig": true, "md5_digest": "860b454eaa7d7380642c67b7b622c73b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41059, "upload_time": "2016-10-28T14:27:12", "url": "https://files.pythonhosted.org/packages/30/1f/610321b369698278f7586e557387c8f27515097fb5511b30294eb6463e98/taskw-1.2.0.tar.gz" } ], "ralphbean": [ { "comment_text": "", "digests": { "md5": "86d0e1d54f4b720ebb481705df260de1", "sha256": "413bc90d5448792082df611ebd74ecd557656d98dca6ca00b852da7680cece6a" }, "downloads": -1, "filename": "taskw-ralphbean.tar.gz", "has_sig": true, "md5_digest": "86d0e1d54f4b720ebb481705df260de1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37191, "upload_time": "2014-08-23T01:58:24", "url": "https://files.pythonhosted.org/packages/e5/b6/354cd7176f2f831caa1283128fdbcf30343f97c1ab1f7c880c61fc8b9064/taskw-ralphbean.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "860b454eaa7d7380642c67b7b622c73b", "sha256": "fadd8afc12df026c3c2d39b633c55d3337f7dca95602fce2239455a048bc85fe" }, "downloads": -1, "filename": "taskw-1.2.0.tar.gz", "has_sig": true, "md5_digest": "860b454eaa7d7380642c67b7b622c73b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41059, "upload_time": "2016-10-28T14:27:12", "url": "https://files.pythonhosted.org/packages/30/1f/610321b369698278f7586e557387c8f27515097fb5511b30294eb6463e98/taskw-1.2.0.tar.gz" } ] }