{ "info": { "author": "Darri Steinn Konn Konradsson", "author_email": "darrikonn@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9" ], "description": "

\n \"Icon\"/\n

\n\n

\n \n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n

\n  

td-cli is a command line todo manager,
where you can organize and manage your todos across multiple projects

\n

\"gif\"/

\n

\n
\n\n\n## Installation\n[**td-cli**](https://pypi.org/project/td-cli/) only works for `python 3`, so it needs to be installed with `pip3`\n```bash\npip3 install td-cli\n```\n\n## Getting started\nRun `td --help` to see possible commands.\n\nHere are some to get you started:\n- Run `td` to list all your todos.\n\n- Run `td add \"my new awesome todo\"` to add a new todo.\n\n- Run `td complete` to complete your todo. You don't have to specify the whole `id`, a substring will do. It'll fetch the first one that it finds in the same order as when you list your todos.\n\nNote that `global` is a preserved group name where you can list all your global groups. You can always set it as the default with:\n```bash\ntd group global preset\n```\n\n\n## API\nCheck out the [`api`](https://github.com/darrikonn/td-cli/blob/master/API.md).\n\n## Configuring\nThe location of your todos and your configuration will depend on these environment variables (in this order):\n1. **TD_CLI_HOME**: determines where your `todo.db` and `todo.cfg` file will live\n2. **XDG_CONFIG_HOME**: a fallback if `$TD_CLI_HOME` is not set\n3. **HOME**: a fallback if `$XDG_CONFIG_HOME` is not set. If `$HOME` is used; all files will be transformed to a dotfile, i.e.`~/.todo.db` and `~/.todo.cfg`.\n\n### Database name\nYour database instance will be located in in the before-mentioned configuration directory.\nBy default the database will be named `todo`.\n\nYou can change your database name by specifying `database_name` in your `$TD_CLI_HOME/.todo.cfg` file:\n```cfg\n[settings]\ndatabase_name: something_else\n```\nThis results in a database instance at `$TD_CLI_HOME/.something_else.db`\n\n### Format\nYou can specify your preferred format of your todo's details via the format config keyword:\n```cfg\nformat: md\n```\nThis would result in the `.md` (Markdown) file extension when editing a todo. This allows you to use the power of your editor to e.g. syntax highlight the details, and etc.\n\n### Editor\nWhen editing a todo, `td edit`, you can both specify the todo's `name` and the todo's `details` via options (see `td edit --help`). If no option is specified, your todo will be opened in `vi` by default (your `environement EDITOR` will override this) where you can edit the todo's details. You can change the default editor by updating your config:\n```cfg\n[settings]\neditor: nvim\n```\n\n### Group\nWhen listing todos, you have the option of specifying what group to list from:\n```bash\ntd -g my-group\n# or\ntd g my-group\n```\nIf no group is provided, `td` will list from the current default group. You can globally set the default group with:\n```bash\ntd g my-group preset\n```\n\nHowever, there's an option to set the default group per git project (this is not possible from the root config `$TD_CLI_HOME/.todo.cfg`).\nIn any root of your projects, you can create a `.td.cfg` config file to specify what group to default on (this will override the global default group):\n```cfg\n[settings]\ngroup: my-group\n```\nIf you run `td` within your git project, td will default to *my-group*.\n\nI recommend globally ignoring `.td.cfg` in `~/.gitignore`.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/darrikonn/td-cli", "keywords": "todo commandline td-cli", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "td-cli", "package_url": "https://pypi.org/project/td-cli/", "platform": "", "project_url": "https://pypi.org/project/td-cli/", "project_urls": { "Homepage": "https://github.com/darrikonn/td-cli", "Source": "https://github.com/darrikonn/td-cli" }, "release_url": "https://pypi.org/project/td-cli/2.0.3/", "requires_dist": null, "requires_python": ">=3.6.*, <4", "summary": "A todo command line manager", "version": "2.0.3", "yanked": false, "yanked_reason": null }, "last_serial": 10072491, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "bb4b2aadaa4fcb5be1c43189f7a02a07", "sha256": "cf688a32f61784bff029959e13f5dd3d9f2da5a6aaf9bcd99f86565da71b3552" }, "downloads": -1, "filename": "td_cli-0.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bb4b2aadaa4fcb5be1c43189f7a02a07", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 8957, "upload_time": "2018-06-13T10:02:20", "upload_time_iso_8601": "2018-06-13T10:02:20.186070Z", "url": "https://files.pythonhosted.org/packages/bc/d9/5ac0ec9dd9487c20053ee4f4cfcc2b6c4818edc25e788a49c62a76ddef5b/td_cli-0.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "229a4279053d6378cfeeb467222d4b10", "sha256": "f453214ef8cfa4b77b0c34357be0dbaf28385db8895326e0ad89e3a1774f19f2" }, "downloads": -1, "filename": "td-cli-0.0.1.tar.gz", "has_sig": false, "md5_digest": "229a4279053d6378cfeeb467222d4b10", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 4604, "upload_time": "2018-06-13T10:02:21", "upload_time_iso_8601": "2018-06-13T10:02:21.269300Z", "url": "https://files.pythonhosted.org/packages/eb/d0/969bedbb926e70f8f1b9b455240fc39fb3961664ed3b028eedcbfebf8d22/td-cli-0.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "528de1fc3fc3bba66c152c0e2aac8765", "sha256": "b9242a5c42847b24d2e02b762ecf58d68549552262c884a405105305ccc246a3" }, "downloads": -1, "filename": "td_cli-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "528de1fc3fc3bba66c152c0e2aac8765", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 31270, "upload_time": "2018-09-27T14:38:58", "upload_time_iso_8601": "2018-09-27T14:38:58.491913Z", "url": "https://files.pythonhosted.org/packages/60/83/f9a442feedb7eb0989bbca8b8bf63f61056749fd8207d64ed5abcbf8e994/td_cli-0.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00a30fafdab551ff55cf8a9aec10f10a", "sha256": "190605490c9a52944852c13b9d4356a37c7f2ea63bd5514a5313de605d3744df" }, "downloads": -1, "filename": "td-cli-0.1.0.tar.gz", "has_sig": false, "md5_digest": "00a30fafdab551ff55cf8a9aec10f10a", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 14077, "upload_time": "2018-09-27T14:39:00", "upload_time_iso_8601": "2018-09-27T14:39:00.223426Z", "url": "https://files.pythonhosted.org/packages/d0/b1/dcfc6c98bfc5cfb666ed71b3b2ebec22c78419c2cbbffdd26d24c0821e2e/td-cli-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "879a72c5e04221c876e5b14d9281bd73", "sha256": "ba8c8c707f68bc6642b0fe671aae48825fa051b47df13ebed229794150e57aca" }, "downloads": -1, "filename": "td_cli-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "879a72c5e04221c876e5b14d9281bd73", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 28563, "upload_time": "2018-09-28T10:32:22", "upload_time_iso_8601": "2018-09-28T10:32:22.840021Z", "url": "https://files.pythonhosted.org/packages/11/02/16d3058fe39ab9c10881b1fe2cd7e03852171509d09bf5782a5dce47bc29/td_cli-0.1.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3eb32a0d63dacba19d235dcb34fc8c04", "sha256": "14aac292c6aa22bca77e39c4bec870932a7ef42bcaf8531f588f3e74afc8ce24" }, "downloads": -1, "filename": "td-cli-0.1.1.tar.gz", "has_sig": false, "md5_digest": "3eb32a0d63dacba19d235dcb34fc8c04", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 14116, "upload_time": "2018-09-28T10:32:24", "upload_time_iso_8601": "2018-09-28T10:32:24.136969Z", "url": "https://files.pythonhosted.org/packages/64/95/0f780e27a53611d972b2b43f83e49d8a5ed67133ff8791b605d09f82c989/td-cli-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "e1ab50146b951d74eb9fdac8e731bde6", "sha256": "e7a511105698500d4ccaa8f77081d681a36f3852bc8b54239abe1dbdbc37cd92" }, "downloads": -1, "filename": "td_cli-0.1.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e1ab50146b951d74eb9fdac8e731bde6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 29703, "upload_time": "2018-10-01T15:34:07", "upload_time_iso_8601": "2018-10-01T15:34:07.351515Z", "url": "https://files.pythonhosted.org/packages/ff/e3/110b500f42ead87deda96d71983ccd4be5fd1f40839962f2fa95604502ca/td_cli-0.1.10-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4f0000464d90aaa0919e4359668081a", "sha256": "75766960ffbc7c65e98a098a24720d8fdd4b459d40cb831bfb96006e03925826" }, "downloads": -1, "filename": "td-cli-0.1.10.tar.gz", "has_sig": false, "md5_digest": "a4f0000464d90aaa0919e4359668081a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 16023, "upload_time": "2018-10-01T15:34:08", "upload_time_iso_8601": "2018-10-01T15:34:08.815871Z", "url": "https://files.pythonhosted.org/packages/81/de/d091a45af61140eeef09345b373a986b59642443b3b066cdce141fc70e0b/td-cli-0.1.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "d721e0b48f5da3ae08589e1140505b3a", "sha256": "b47cb42531951ed475f22747def74e0daa8486aaf0274b51971caef1a4ec78e6" }, "downloads": -1, "filename": "td_cli-0.1.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d721e0b48f5da3ae08589e1140505b3a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 29702, "upload_time": "2018-10-01T15:35:10", "upload_time_iso_8601": "2018-10-01T15:35:10.912544Z", "url": "https://files.pythonhosted.org/packages/dd/ae/5748f1de31e57b0a395f773a56b254f4e5c4b20db5f2ba9762902885f058/td_cli-0.1.11-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8fa36efd17cc0fc1c6cc1fa110322fa3", "sha256": "9bbeb9403a095ba809749dd3e903516eecd9b54d1728911da1ccb874715a5761" }, "downloads": -1, "filename": "td-cli-0.1.11.tar.gz", "has_sig": false, "md5_digest": "8fa36efd17cc0fc1c6cc1fa110322fa3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 16024, "upload_time": "2018-10-01T15:35:12", "upload_time_iso_8601": "2018-10-01T15:35:12.204803Z", "url": "https://files.pythonhosted.org/packages/a1/4a/61c2a2fd066faf9d9451760ce49f60055334360311ac8a0680ace6f17ff6/td-cli-0.1.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "b539c2d3629fa89f0e4ab114a19dfd16", "sha256": "6f047b305a7b0b1dfc68c48efb2dc970baceab132e6f4bf51340f26073de2a42" }, "downloads": -1, "filename": "td_cli-0.1.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b539c2d3629fa89f0e4ab114a19dfd16", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 29780, "upload_time": "2018-10-02T10:45:15", "upload_time_iso_8601": "2018-10-02T10:45:15.010364Z", "url": "https://files.pythonhosted.org/packages/e8/de/fd3877ab97859f87090557924757f7a01b3ebe694822638dd495d78980f7/td_cli-0.1.12-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bdb83a7a23be31a00e2428b74881b6d9", "sha256": "977ab3be4f9b6533d41b103a863a2fe20d1d61259d9d8f1eaf20129b774c9d50" }, "downloads": -1, "filename": "td-cli-0.1.12.tar.gz", "has_sig": false, "md5_digest": "bdb83a7a23be31a00e2428b74881b6d9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 16123, "upload_time": "2018-10-02T10:45:16", "upload_time_iso_8601": "2018-10-02T10:45:16.359305Z", "url": "https://files.pythonhosted.org/packages/25/7f/75478fb27cb6f5f511015672f82de53ef75d47f614716a0262f266080020/td-cli-0.1.12.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "5103a7a396e5210fc9f64f6f4b430e33", "sha256": "4c5d6bd35528aeb328f839aee12abdd7e817fdf79ab571d66ec9cc96261f62b3" }, "downloads": -1, "filename": "td_cli-0.1.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5103a7a396e5210fc9f64f6f4b430e33", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 29971, "upload_time": "2018-10-02T14:32:05", "upload_time_iso_8601": "2018-10-02T14:32:05.805613Z", "url": "https://files.pythonhosted.org/packages/79/ad/0836a63c04fc880851bfd673a193d38984197475213a4eea9442c04fbdd3/td_cli-0.1.13-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7f23ad55c5390ce580610035349e40b4", "sha256": "1ce260668b8f455c7d4c6c027bfd801962ced10be08b0b1a38fdb2199dc13ae6" }, "downloads": -1, "filename": "td-cli-0.1.13.tar.gz", "has_sig": false, "md5_digest": "7f23ad55c5390ce580610035349e40b4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 16418, "upload_time": "2018-10-02T14:32:07", "upload_time_iso_8601": "2018-10-02T14:32:07.213810Z", "url": "https://files.pythonhosted.org/packages/ac/d9/7e415bd0badfb8a590604af613b0c3385fafdb38c365774ba5f5404938a8/td-cli-0.1.13.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.14": [ { "comment_text": "", "digests": { "md5": "a0b9269f9aa1f0e301648db9ada2344a", "sha256": "fb7fe99d9f532974fb0478635fe4c2a11804f4c86c0e31162101d4a831dc2f03" }, "downloads": -1, "filename": "td_cli-0.1.14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a0b9269f9aa1f0e301648db9ada2344a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 30751, "upload_time": "2018-10-04T11:41:33", "upload_time_iso_8601": "2018-10-04T11:41:33.840006Z", "url": "https://files.pythonhosted.org/packages/ce/79/edd92644518d799b821a283189d6461e3bba14ff9adfb78e1b50c389646b/td_cli-0.1.14-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eda7a8c589934a2c632944441e2e544a", "sha256": "4ac996ac3687ce4caea92b56c46b198c8453128174fd5c3e2fad71fd65d3f139" }, "downloads": -1, "filename": "td-cli-0.1.14.tar.gz", "has_sig": false, "md5_digest": "eda7a8c589934a2c632944441e2e544a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 17437, "upload_time": "2018-10-04T11:41:35", "upload_time_iso_8601": "2018-10-04T11:41:35.910586Z", "url": "https://files.pythonhosted.org/packages/d0/90/5098368b120dfca0c7e77a77207eff18d6333154c0149e9dbec2999d77d8/td-cli-0.1.14.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.15": [ { "comment_text": "", "digests": { "md5": "675d227059918f9b68dfe022d4aeda3a", "sha256": "29adca8c95375e89e87986c9e895161c0c1b4c14c8c19272547f81b479240f62" }, "downloads": -1, "filename": "td_cli-0.1.15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "675d227059918f9b68dfe022d4aeda3a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 30766, "upload_time": "2018-10-04T12:03:14", "upload_time_iso_8601": "2018-10-04T12:03:14.001998Z", "url": "https://files.pythonhosted.org/packages/12/f9/004dd50e7152596f015eaa6dae95ef007a901389171e1a29bd7a1ba1948f/td_cli-0.1.15-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "531e202413dcb80e5662b156b9c681e3", "sha256": "56683ef997ff17d4d64097dc645cda9f0a2f38f6c19048e70d47931d5777758b" }, "downloads": -1, "filename": "td-cli-0.1.15.tar.gz", "has_sig": false, "md5_digest": "531e202413dcb80e5662b156b9c681e3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 17456, "upload_time": "2018-10-04T12:03:15", "upload_time_iso_8601": "2018-10-04T12:03:15.303523Z", "url": "https://files.pythonhosted.org/packages/d3/fc/8e4e77c77d6bba0dc1ef13b8b16ece97efbc70af11292806aad4665a4bf8/td-cli-0.1.15.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.16": [ { "comment_text": "", "digests": { "md5": "f74fdcf5dc586f7ade53199d91d52714", "sha256": "67c7dc0ed6ec3c958ee6699eb99364dfddfb3053c635c6ee1831b39066f7d4c9" }, "downloads": -1, "filename": "td_cli-0.1.16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f74fdcf5dc586f7ade53199d91d52714", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 30808, "upload_time": "2018-10-15T14:50:08", "upload_time_iso_8601": "2018-10-15T14:50:08.148712Z", "url": "https://files.pythonhosted.org/packages/a1/8e/9fbd70bbbc1d1e8c53a1a760795c11f939a0f4a17a40e3b078024684f4b9/td_cli-0.1.16-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea8cc3c8e273eff6a7ea6e38b9cf9693", "sha256": "0d6e511b12f72fe3aae70e8664bbb5d1a7f15c007c72d83aad758a388f6c8413" }, "downloads": -1, "filename": "td-cli-0.1.16.tar.gz", "has_sig": false, "md5_digest": "ea8cc3c8e273eff6a7ea6e38b9cf9693", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 17466, "upload_time": "2018-10-15T14:50:09", "upload_time_iso_8601": "2018-10-15T14:50:09.893678Z", "url": "https://files.pythonhosted.org/packages/4c/9e/d391e39862b8f21021e8948969394eed7fb83c8affa7068c273f7e64d974/td-cli-0.1.16.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.17": [ { "comment_text": "", "digests": { "md5": "330ae8435d85871e9bb02a03527fc9d2", "sha256": "d2cefa1b4aa1c1f40317c7033cf4139782e25267f3ad161ec1e22ba94553f90d" }, "downloads": -1, "filename": "td_cli-0.1.17-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "330ae8435d85871e9bb02a03527fc9d2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 30878, "upload_time": "2018-11-21T12:14:19", "upload_time_iso_8601": "2018-11-21T12:14:19.816110Z", "url": "https://files.pythonhosted.org/packages/9d/ae/f815a10121b78c82e62baff107b3f409f0ccf4b8f9e141e86b21bc51bb87/td_cli-0.1.17-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd76bb66b19e97754279aa2e7d2c8302", "sha256": "f667456b3f151d414de8c4033d6457b7647761641a268c46dc1f1c34c78a01fd" }, "downloads": -1, "filename": "td-cli-0.1.17.tar.gz", "has_sig": false, "md5_digest": "bd76bb66b19e97754279aa2e7d2c8302", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 17492, "upload_time": "2018-11-21T12:14:21", "upload_time_iso_8601": "2018-11-21T12:14:21.637708Z", "url": "https://files.pythonhosted.org/packages/d3/4a/0586623926724fdad993ee7c4697fa09954b2793fb50a7b034faa789517d/td-cli-0.1.17.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "3ce961cc4bafce6b24174648f2a651f5", "sha256": "28a00840b3f958b18fa9fb7e3ec538a04916fc05da1435e0e07d241dbd31d542" }, "downloads": -1, "filename": "td_cli-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3ce961cc4bafce6b24174648f2a651f5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 28867, "upload_time": "2018-09-28T16:04:11", "upload_time_iso_8601": "2018-09-28T16:04:11.098485Z", "url": "https://files.pythonhosted.org/packages/59/9e/8042dd85be73dad473ffd3b0ff216abd1f859798a1ac215383a1f571f5ca/td_cli-0.1.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d42e455a82a92d93cb09bed80f41d2f2", "sha256": "6bb92c9305ff51221d3057b468956e68be944625a9518fb6eb243180163176ba" }, "downloads": -1, "filename": "td-cli-0.1.2.tar.gz", "has_sig": false, "md5_digest": "d42e455a82a92d93cb09bed80f41d2f2", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 14282, "upload_time": "2018-09-28T16:04:12", "upload_time_iso_8601": "2018-09-28T16:04:12.209293Z", "url": "https://files.pythonhosted.org/packages/9f/bc/1649cb88809d05bf11370505da4493c9d35bca9e235c10aebe451390126d/td-cli-0.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "6a62afe5a1c21a70032ba930fbb5bab9", "sha256": "f167dde3f0e26f30bb3bd04ff7fb26eba7b64772357db090984f4d72cee22740" }, "downloads": -1, "filename": "td_cli-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a62afe5a1c21a70032ba930fbb5bab9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 29599, "upload_time": "2018-09-29T21:33:30", "upload_time_iso_8601": "2018-09-29T21:33:30.114353Z", "url": "https://files.pythonhosted.org/packages/47/a4/02aee5349f5069d9aadc68876ac4fc79914952e36113b9cdb5ab15d666ed/td_cli-0.1.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5cb5cfbc2f565ae9fdbd41832121a14d", "sha256": "d131e4a8a390f2546ce99aec789a74bb8ed999bf625e699ebe58043621aa3dae" }, "downloads": -1, "filename": "td-cli-0.1.3.tar.gz", "has_sig": false, "md5_digest": "5cb5cfbc2f565ae9fdbd41832121a14d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 15887, "upload_time": "2018-09-29T21:33:31", "upload_time_iso_8601": "2018-09-29T21:33:31.801467Z", "url": "https://files.pythonhosted.org/packages/ef/03/ef56d54a7204b6eef4f5a95eac35b2875c8094c50e28b7840b2ed44931ca/td-cli-0.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "1f9573234497c2f6aff59cafdbef13b9", "sha256": "9f90a9ed72ee2afff4fc431608626a2c224ddde6ec9815620d17e2754aee9f0c" }, "downloads": -1, "filename": "td_cli-0.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1f9573234497c2f6aff59cafdbef13b9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 29625, "upload_time": "2018-09-29T21:37:06", "upload_time_iso_8601": "2018-09-29T21:37:06.958609Z", "url": "https://files.pythonhosted.org/packages/b3/9d/ea613d65d1ab6ef72bbf98ebee150e814fbd0dfb9094dd29f207169d5aaa/td_cli-0.1.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3277f112690dd1b30739e6391384b84", "sha256": "e03a96ca755ebb7b4634ed1362f7454ab211a0672d48468d67aea5d22dd455b6" }, "downloads": -1, "filename": "td-cli-0.1.4.tar.gz", "has_sig": false, "md5_digest": "d3277f112690dd1b30739e6391384b84", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 15937, "upload_time": "2018-09-29T21:37:08", "upload_time_iso_8601": "2018-09-29T21:37:08.501827Z", "url": "https://files.pythonhosted.org/packages/18/5f/cd49309fb7b7964078b4c361096c084586f8e124e30e9c47f9eec4555d2a/td-cli-0.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "c13b336c56eba96f2cb04f553302ca29", "sha256": "62effb8fe2c20b40528ebe1ffc8dab2b949f55edeffe488d5f4d24b747c7d240" }, "downloads": -1, "filename": "td_cli-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c13b336c56eba96f2cb04f553302ca29", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 29639, "upload_time": "2018-09-29T21:41:24", "upload_time_iso_8601": "2018-09-29T21:41:24.406123Z", "url": "https://files.pythonhosted.org/packages/81/0a/0298226defdc6256e01808c6a698d8ec5308154cbd8841425f7ca89b5899/td_cli-0.1.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8032f9d6dbb31847a9c7d71a21a0ba38", "sha256": "b910c02e468e6f588b077114a23f8cc4834212d4d9dd584fae56e7d4a0201d25" }, "downloads": -1, "filename": "td-cli-0.1.5.tar.gz", "has_sig": false, "md5_digest": "8032f9d6dbb31847a9c7d71a21a0ba38", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 15962, "upload_time": "2018-09-29T21:41:25", "upload_time_iso_8601": "2018-09-29T21:41:25.842479Z", "url": "https://files.pythonhosted.org/packages/6b/0b/7fc218413b711a5b4c9d65d284053d81a4091e98b4c10e6a41b1b69fbf0b/td-cli-0.1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "b0b3df026e8afd2c05608ec81b8ea8aa", "sha256": "d3664ad4704df7fcd65eaec6ce40bbe0e16e30ce349b6f497de3968f457e8089" }, "downloads": -1, "filename": "td_cli-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b0b3df026e8afd2c05608ec81b8ea8aa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 29656, "upload_time": "2018-09-29T21:49:43", "upload_time_iso_8601": "2018-09-29T21:49:43.960747Z", "url": "https://files.pythonhosted.org/packages/01/4f/a161ba0862c4cb209f4c02ba8c516cf1e033a191d1a3026cd671cda56dbe/td_cli-0.1.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6179991adfd0a02160d15fa0c543fb8e", "sha256": "91ab316b0b3fde4659f610b87c58b83e0a6ec436d193ef040d123675e8f6cf66" }, "downloads": -1, "filename": "td-cli-0.1.6.tar.gz", "has_sig": false, "md5_digest": "6179991adfd0a02160d15fa0c543fb8e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 15987, "upload_time": "2018-09-29T21:49:45", "upload_time_iso_8601": "2018-09-29T21:49:45.339316Z", "url": "https://files.pythonhosted.org/packages/6e/81/af8e37ab1acd7db43f1847f98c9db24e948648be20777c5287ec6b69a75b/td-cli-0.1.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "aea6fa4301e564ca7878177f253ff437", "sha256": "99c6912f0caf0e8254b2db8470e516020bfd7f48d9dbd127c2412d01b0235857" }, "downloads": -1, "filename": "td_cli-0.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aea6fa4301e564ca7878177f253ff437", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 29703, "upload_time": "2018-10-01T14:52:47", "upload_time_iso_8601": "2018-10-01T14:52:47.101520Z", "url": "https://files.pythonhosted.org/packages/44/3b/26b8780cd7e8e7570cf20a5635a8546d75890951b4079ad424498618fd66/td_cli-0.1.7-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "84c9410755af96d84c72b6063bb7921e", "sha256": "a75764fbd1ccc9006faed04e232ab1591ba3c7942d3dc5eb3ddcc33218acc7ed" }, "downloads": -1, "filename": "td-cli-0.1.7.tar.gz", "has_sig": false, "md5_digest": "84c9410755af96d84c72b6063bb7921e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 16053, "upload_time": "2018-10-01T14:52:48", "upload_time_iso_8601": "2018-10-01T14:52:48.275330Z", "url": "https://files.pythonhosted.org/packages/57/60/b6e0b27b7e80396280d34ec82ab8e94d2fac143681dac25e51d596e562b8/td-cli-0.1.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "8bd50ccbcf6fe8c7833053f2986986ed", "sha256": "74314bbccd95d047e98a0bae4b6ff208430b4a792d25d2f991b390a7a3b3597b" }, "downloads": -1, "filename": "td_cli-0.1.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8bd50ccbcf6fe8c7833053f2986986ed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 29708, "upload_time": "2018-10-01T15:26:23", "upload_time_iso_8601": "2018-10-01T15:26:23.266177Z", "url": "https://files.pythonhosted.org/packages/71/c0/16b1325c116cd9f15398cc802a004c0d3c3167d4d69b0d8a2526a083156a/td_cli-0.1.8-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc5c545ab87103e529c405adf3e86558", "sha256": "c993552c25a800ebf2550442aff92dcfdb504226b1126189a36ee0b48d9afcc7" }, "downloads": -1, "filename": "td-cli-0.1.8.tar.gz", "has_sig": false, "md5_digest": "fc5c545ab87103e529c405adf3e86558", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 16062, "upload_time": "2018-10-01T15:26:24", "upload_time_iso_8601": "2018-10-01T15:26:24.836379Z", "url": "https://files.pythonhosted.org/packages/81/37/3c8d29a85d6e775eeae03a2104608f2d2a82ce86e12d3cf88b2896d26272/td-cli-0.1.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "e131fd36d3ae5aaf269b5bc7237dcc92", "sha256": "55b17e8c1d3c161867e71e834807c6f9cdf84c5f12f7f3afecadf3de614f6370" }, "downloads": -1, "filename": "td_cli-0.1.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e131fd36d3ae5aaf269b5bc7237dcc92", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 29709, "upload_time": "2018-10-01T15:32:12", "upload_time_iso_8601": "2018-10-01T15:32:12.913623Z", "url": "https://files.pythonhosted.org/packages/a9/7e/56a21047506a59806315a82010eed1c2335ffba5a82e63e3171e918842da/td_cli-0.1.9-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6e013c688cd0921301bd1d86145f6f8", "sha256": "8ecfd6b8a23290a89e2f503a21f8ed3bed52545fd3294015b6cd42c8a34aca8a" }, "downloads": -1, "filename": "td-cli-0.1.9.tar.gz", "has_sig": false, "md5_digest": "d6e013c688cd0921301bd1d86145f6f8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 16063, "upload_time": "2018-10-01T15:32:14", "upload_time_iso_8601": "2018-10-01T15:32:14.118223Z", "url": "https://files.pythonhosted.org/packages/21/23/898850edb8ee2c55d1b307107b61116a87e120bf53449fec03a03fc5feb5/td-cli-0.1.9.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "029256557c11dbee7ed75f48780be43a", "sha256": "68c3c12c50ddf3e7ec099855c12c0826887a6598430c39ed52aa29878688a248" }, "downloads": -1, "filename": "td_cli-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "029256557c11dbee7ed75f48780be43a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 36259, "upload_time": "2019-02-24T22:16:11", "upload_time_iso_8601": "2019-02-24T22:16:11.736739Z", "url": "https://files.pythonhosted.org/packages/56/d3/51dd4a1228890a5ffe09971f9d9f120aae80840bad4bbdd8109117b6e7a8/td_cli-1.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c34d31c899b3336db58706ed258f0b77", "sha256": "f87594f28df5c8352812887197685d8f5c01a9ae92ce4298882a8ca62cf31cfc" }, "downloads": -1, "filename": "td-cli-1.0.0.tar.gz", "has_sig": false, "md5_digest": "c34d31c899b3336db58706ed258f0b77", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 19485, "upload_time": "2019-02-24T22:16:13", "upload_time_iso_8601": "2019-02-24T22:16:13.659271Z", "url": "https://files.pythonhosted.org/packages/3a/2d/04520ee07ed0331e82461c95640adac5ac595a0a02a3ba8fcf7e6d1946c5/td-cli-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "7feb46d163284420d50826d8ad51fbdb", "sha256": "7a589221709515cd7ac6bed88422517ce20484225ce8ef961824439af35529ee" }, "downloads": -1, "filename": "td_cli-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7feb46d163284420d50826d8ad51fbdb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 36451, "upload_time": "2019-02-25T21:50:58", "upload_time_iso_8601": "2019-02-25T21:50:58.404658Z", "url": "https://files.pythonhosted.org/packages/35/9e/844025badbc6517c90eb6fb8fe5add926eb2949f4818a17923ef929206c4/td_cli-1.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e0cc1e39d50d96ec82ffc4570b7f4d2", "sha256": "eead3e7bc0c71b586f5db3f6e8c41591f2f51e4ca8fd5a076be7a4a521a58e6e" }, "downloads": -1, "filename": "td-cli-1.1.0.tar.gz", "has_sig": false, "md5_digest": "8e0cc1e39d50d96ec82ffc4570b7f4d2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 19729, "upload_time": "2019-02-25T21:50:59", "upload_time_iso_8601": "2019-02-25T21:50:59.828390Z", "url": "https://files.pythonhosted.org/packages/0d/bf/e573750f3a32cbfd4e14881ecaeb15186c1c30c267c6cd6a677630c6400a/td-cli-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "ee652f402b9fa9df5e10f7e885fb056d", "sha256": "7c64c2a7cc87a9ac6d6e66f5fcb346ba1cf2b234d21ad2c74102b2be3eb8ad60" }, "downloads": -1, "filename": "td_cli-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ee652f402b9fa9df5e10f7e885fb056d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 37996, "upload_time": "2019-07-18T12:57:35", "upload_time_iso_8601": "2019-07-18T12:57:35.381747Z", "url": "https://files.pythonhosted.org/packages/74/90/c2b991a6bb3aef360f5de795b2e534b251423eaace3a878a0f89e9dc2f89/td_cli-1.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e4b21d14e6d4dd682cc3aea6de031484", "sha256": "be09729659bd034ab1c012bb018788a71eeac0f5d8f9036b4981a2ad37c1dc43" }, "downloads": -1, "filename": "td-cli-1.2.0.tar.gz", "has_sig": false, "md5_digest": "e4b21d14e6d4dd682cc3aea6de031484", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 21127, "upload_time": "2019-07-18T12:57:37", "upload_time_iso_8601": "2019-07-18T12:57:37.263474Z", "url": "https://files.pythonhosted.org/packages/b0/62/b67edc13391dbe0732f13c71b98a6e83e9d39cb4f6b79810b9eb7d5f3e01/td-cli-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "d0b0a830b7f273cfc8ce7bbb9fb07af8", "sha256": "b303a877b0ae0f492363c7c8dbbbbad276ca395c1682ed78213b8c4baf169b89" }, "downloads": -1, "filename": "td_cli-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d0b0a830b7f273cfc8ce7bbb9fb07af8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 38392, "upload_time": "2019-10-28T10:20:28", "upload_time_iso_8601": "2019-10-28T10:20:28.055846Z", "url": "https://files.pythonhosted.org/packages/d9/ef/1b26daaffe5b169602462bff175d5403b0520d003030e28ad2bb5eb6b535/td_cli-1.2.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4276c738d4fd7431efabd8ec29f3757e", "sha256": "a4b18b4740b409ccb10828dd6fd9521266fa583082f817454a90579aef57d856" }, "downloads": -1, "filename": "td-cli-1.2.1.tar.gz", "has_sig": false, "md5_digest": "4276c738d4fd7431efabd8ec29f3757e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 21855, "upload_time": "2019-10-28T10:20:29", "upload_time_iso_8601": "2019-10-28T10:20:29.420576Z", "url": "https://files.pythonhosted.org/packages/8d/92/9d78c7b77701d414fa014d633aeaef91b6f62b1bd850151c29965f5de808/td-cli-1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "48a029921266d214483736878d00ffae", "sha256": "eae917cce3bb684d07e20ae63ccc8090899a4adc01ba9acb52410019d2929be7" }, "downloads": -1, "filename": "td_cli-1.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "48a029921266d214483736878d00ffae", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 38495, "upload_time": "2019-11-01T09:41:12", "upload_time_iso_8601": "2019-11-01T09:41:12.127646Z", "url": "https://files.pythonhosted.org/packages/ab/f6/5bd827a87253811002fccc35ce4cdbfade5df47add71c1ff63e039a0f1a9/td_cli-1.2.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "900474d49e8210712a43d801aad95978", "sha256": "658350b1bd21db167549b6537177a00f2db0909897f4e7a62e8496d9ecbcc5a3" }, "downloads": -1, "filename": "td-cli-1.2.2.tar.gz", "has_sig": false, "md5_digest": "900474d49e8210712a43d801aad95978", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 21919, "upload_time": "2019-11-01T09:41:13", "upload_time_iso_8601": "2019-11-01T09:41:13.586362Z", "url": "https://files.pythonhosted.org/packages/1d/c0/70504f825c812bb01eff6d1f94ed5741402b4b76dbf63a9afa790e382874/td-cli-1.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "ab4c4a7fcb6eebf959f75ca496bebc93", "sha256": "ff359a6bbf9eb32c2d6280ee272cbc02d08d76a47005c5908aa8f98b265ea611" }, "downloads": -1, "filename": "td_cli-1.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ab4c4a7fcb6eebf959f75ca496bebc93", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 38560, "upload_time": "2019-11-21T15:05:05", "upload_time_iso_8601": "2019-11-21T15:05:05.314447Z", "url": "https://files.pythonhosted.org/packages/6c/b9/27ab8788e75c33a730d9fcad52ae1fe14e9cdc1391649cef273a4cd4ab4f/td_cli-1.2.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0af35c77aa774b2f316fcfafa5843791", "sha256": "e757ba07d6d7130fbd6f6e1d9358d31ab46bbc37b4f762e6e1499d6199ea04af" }, "downloads": -1, "filename": "td-cli-1.2.3.tar.gz", "has_sig": false, "md5_digest": "0af35c77aa774b2f316fcfafa5843791", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 21958, "upload_time": "2019-11-21T15:05:07", "upload_time_iso_8601": "2019-11-21T15:05:07.046782Z", "url": "https://files.pythonhosted.org/packages/2f/80/61208e99fd99a4f4d853e4d56294769b385eeab3c68515a46ffe9ffb23bc/td-cli-1.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "3465cf5223937ffe0e6c4faef785c659", "sha256": "1c5e0566766a351ceba0ee86ddfeb4f370d8c5bf4148d6ba0d3baea75adc6f4d" }, "downloads": -1, "filename": "td_cli-1.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3465cf5223937ffe0e6c4faef785c659", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 38561, "upload_time": "2019-11-21T15:06:11", "upload_time_iso_8601": "2019-11-21T15:06:11.139955Z", "url": "https://files.pythonhosted.org/packages/a5/eb/fe0584c451037e78367c9513cb752805276b552fc9aa118fb51cb5ac49c9/td_cli-1.2.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f607c041a44792b6e1c0b4377523b47e", "sha256": "a8b971e739a16497dea177c7847b9f4ca7cc074ccc5086b5256fd12bf6620480" }, "downloads": -1, "filename": "td-cli-1.2.4.tar.gz", "has_sig": false, "md5_digest": "f607c041a44792b6e1c0b4377523b47e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 21958, "upload_time": "2019-11-21T15:06:12", "upload_time_iso_8601": "2019-11-21T15:06:12.995087Z", "url": "https://files.pythonhosted.org/packages/96/34/c19798d7fc53d94d929fbe4c6eb26016d1e5b8d91c91a15dd05928f89a95/td-cli-1.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "9d5e3020a85850d720a44fe553f79b04", "sha256": "2dc09ce8acd8f711f264d3567d915dac02f907c949cbc088d2523f3b8a22ff84" }, "downloads": -1, "filename": "td_cli-1.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9d5e3020a85850d720a44fe553f79b04", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 38561, "upload_time": "2019-11-22T12:04:45", "upload_time_iso_8601": "2019-11-22T12:04:45.640531Z", "url": "https://files.pythonhosted.org/packages/8c/e3/886f042c8df1a22e9193041c8322b3df0fba5ee38c225014ef03bfb8133e/td_cli-1.2.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65caee315f58498f30f2bd5d1a7770f7", "sha256": "1493f4a9d7f38540793b2cbfce5993fa69ecce47c45456c65c229427f742a74a" }, "downloads": -1, "filename": "td-cli-1.2.5.tar.gz", "has_sig": false, "md5_digest": "65caee315f58498f30f2bd5d1a7770f7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 21962, "upload_time": "2019-11-22T12:04:47", "upload_time_iso_8601": "2019-11-22T12:04:47.301133Z", "url": "https://files.pythonhosted.org/packages/64/3b/5884a636c5715102e92d6e8defaa7b70d7228780119e0b673b049a82f9c8/td-cli-1.2.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.6": [ { "comment_text": "", "digests": { "md5": "90d7891c57ad2d4860c964c9ce3750e8", "sha256": "b2a6777674c4a98498e5acdd83c90ffeb564002c2da1409148602f063134583f" }, "downloads": -1, "filename": "td_cli-1.2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "90d7891c57ad2d4860c964c9ce3750e8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.0.*, <4", "size": 38563, "upload_time": "2019-11-22T12:09:15", "upload_time_iso_8601": "2019-11-22T12:09:15.636802Z", "url": "https://files.pythonhosted.org/packages/73/0e/511f7bc2270a3555d26746734755dec7fd363c07297ae49b5b584770e7cb/td_cli-1.2.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "87367acbb96b421df649c7166a249c57", "sha256": "13734cf2b394aabebfa4733105acb01858bddba076d1908d2f01da9e4f608c62" }, "downloads": -1, "filename": "td-cli-1.2.6.tar.gz", "has_sig": false, "md5_digest": "87367acbb96b421df649c7166a249c57", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0.*, <4", "size": 21964, "upload_time": "2019-11-22T12:09:17", "upload_time_iso_8601": "2019-11-22T12:09:17.563423Z", "url": "https://files.pythonhosted.org/packages/a3/19/7aad1bcd7cc4b3fe1c82b9c0a863887796176ebf40251e68b336c282a987/td-cli-1.2.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "fe700b387e2d2e3c5c8c56c7ef1367ab", "sha256": "f4bb29ce6cc6bcea1a5b373527a37fc5cbc62f3790e63b86c9ee7b2c3ed9371c" }, "downloads": -1, "filename": "td_cli-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fe700b387e2d2e3c5c8c56c7ef1367ab", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.*, <4", "size": 38361, "upload_time": "2020-07-08T23:13:22", "upload_time_iso_8601": "2020-07-08T23:13:22.355903Z", "url": "https://files.pythonhosted.org/packages/7c/95/4300a6a820ba1d81a57b22767f2e49bf02d008febc4caae655cb6267b347/td_cli-1.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65217e3514db037b2bb3fdda16dbf194", "sha256": "6ba3d2d4f0f72833926835cb8ee598b796a0dbfd2dab76f07de6d6cb874663fd" }, "downloads": -1, "filename": "td-cli-1.3.0.tar.gz", "has_sig": false, "md5_digest": "65217e3514db037b2bb3fdda16dbf194", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.*, <4", "size": 22940, "upload_time": "2020-07-08T23:13:23", "upload_time_iso_8601": "2020-07-08T23:13:23.483637Z", "url": "https://files.pythonhosted.org/packages/2d/99/af19ca32d75ec47a34d16fda890e2eb8af5f8b0e5cb6adaf45cf866ca698/td-cli-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "363356782c03caf4ab942bd262660268", "sha256": "85d9a3377217cd1b87fbd957b9f1971ed2904830e60c727571e751933c88c62b" }, "downloads": -1, "filename": "td_cli-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "363356782c03caf4ab942bd262660268", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.*, <4", "size": 39096, "upload_time": "2020-07-31T13:32:07", "upload_time_iso_8601": "2020-07-31T13:32:07.354463Z", "url": "https://files.pythonhosted.org/packages/cc/79/e9fbdf3da318c01b16fe1f4b981e7f9bc252c41b496bd8230c9ac1e8679f/td_cli-2.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e7a1a59c87e2608264909a251f6d6d9b", "sha256": "4e8fc518d13e72f2d56fd860236ca13959a3ab60ea61f5ca9598cc6f2ba9aaca" }, "downloads": -1, "filename": "td-cli-2.0.0.tar.gz", "has_sig": false, "md5_digest": "e7a1a59c87e2608264909a251f6d6d9b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.*, <4", "size": 23651, "upload_time": "2020-07-31T13:32:09", "upload_time_iso_8601": "2020-07-31T13:32:09.982798Z", "url": "https://files.pythonhosted.org/packages/42/31/332f497bdf20d522397c5f5dd7e9098d4818e6831eda32b543c5c10284f2/td-cli-2.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "a8ade15854f841daddff0da588bf8869", "sha256": "fc91a5fd34c1aea86f19cdb729d598088468b233c439b611113f791b258fd4c3" }, "downloads": -1, "filename": "td_cli-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a8ade15854f841daddff0da588bf8869", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.*, <4", "size": 39179, "upload_time": "2020-11-12T12:25:36", "upload_time_iso_8601": "2020-11-12T12:25:36.048753Z", "url": "https://files.pythonhosted.org/packages/72/00/2ca0358e34337fd164aaf1c6e9500204929580a6a5e178d7d724dfeaa8c1/td_cli-2.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "56fb95b62be81973d447d73dc3cb3b61", "sha256": "f49cb7068df01c26dec1cda9c20dd9ab0b1b5f18278d3cb35edc4913175d5027" }, "downloads": -1, "filename": "td-cli-2.0.1.tar.gz", "has_sig": false, "md5_digest": "56fb95b62be81973d447d73dc3cb3b61", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.*, <4", "size": 23662, "upload_time": "2020-11-12T12:25:37", "upload_time_iso_8601": "2020-11-12T12:25:37.363329Z", "url": "https://files.pythonhosted.org/packages/73/12/3557321df44412741f5c4394645e7fe4f3c7e5f365cf0a98a88db8254987/td-cli-2.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "2001471d65298e0d7bd94bf7aa11b732", "sha256": "94a6057caf281d0d6192c880045c6b0c4843443cc35776d7089f5b364b3529bb" }, "downloads": -1, "filename": "td_cli-2.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2001471d65298e0d7bd94bf7aa11b732", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.*, <4", "size": 39192, "upload_time": "2021-04-14T10:40:36", "upload_time_iso_8601": "2021-04-14T10:40:36.695839Z", "url": "https://files.pythonhosted.org/packages/da/e6/2d24eea6495a6a59d7fec2b621ee88a3e8fa6c187bbd1a44cc43d9e729d2/td_cli-2.0.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7eb9bf418f5036984a5786a806169610", "sha256": "88cd72ce2b80ef2c364d17795a82c6120b38b4af4cb5a3e30e049220f107b182" }, "downloads": -1, "filename": "td-cli-2.0.2.tar.gz", "has_sig": false, "md5_digest": "7eb9bf418f5036984a5786a806169610", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.*, <4", "size": 23751, "upload_time": "2021-04-14T10:40:38", "upload_time_iso_8601": "2021-04-14T10:40:38.224350Z", "url": "https://files.pythonhosted.org/packages/f7/df/26b1f573c5ea83c1380dc01fecc3144cac20e96449273098271dd63b5a83/td-cli-2.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "6fdf9fe6a77d205fe5a199400c2684d3", "sha256": "ab9caf9dcc2f6f137d4e6d525c62e1e7e1c95d37303d0325e3716d1e2e4d9798" }, "downloads": -1, "filename": "td_cli-2.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6fdf9fe6a77d205fe5a199400c2684d3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.*, <4", "size": 39208, "upload_time": "2021-04-15T10:27:26", "upload_time_iso_8601": "2021-04-15T10:27:26.675749Z", "url": "https://files.pythonhosted.org/packages/e7/1b/56e9513b61c07f500fe1a6a10923c2cf207607e9b0e78b3a089f89090d5e/td_cli-2.0.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cf18ff4d8e0bbb8776333dac5b2226ff", "sha256": "fb6467a817fd1cd4d6d1c1124708b15d6a52bc7bc71ee8f8afa32cd8cae200f6" }, "downloads": -1, "filename": "td-cli-2.0.3.tar.gz", "has_sig": false, "md5_digest": "cf18ff4d8e0bbb8776333dac5b2226ff", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.*, <4", "size": 23761, "upload_time": "2021-04-15T10:27:27", "upload_time_iso_8601": "2021-04-15T10:27:27.909274Z", "url": "https://files.pythonhosted.org/packages/c4/d5/66b8103345f8bab68b6d00b9571fe8744622cb557d3ab5a8c9d08b38a14b/td-cli-2.0.3.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6fdf9fe6a77d205fe5a199400c2684d3", "sha256": "ab9caf9dcc2f6f137d4e6d525c62e1e7e1c95d37303d0325e3716d1e2e4d9798" }, "downloads": -1, "filename": "td_cli-2.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6fdf9fe6a77d205fe5a199400c2684d3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.*, <4", "size": 39208, "upload_time": "2021-04-15T10:27:26", "upload_time_iso_8601": "2021-04-15T10:27:26.675749Z", "url": "https://files.pythonhosted.org/packages/e7/1b/56e9513b61c07f500fe1a6a10923c2cf207607e9b0e78b3a089f89090d5e/td_cli-2.0.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cf18ff4d8e0bbb8776333dac5b2226ff", "sha256": "fb6467a817fd1cd4d6d1c1124708b15d6a52bc7bc71ee8f8afa32cd8cae200f6" }, "downloads": -1, "filename": "td-cli-2.0.3.tar.gz", "has_sig": false, "md5_digest": "cf18ff4d8e0bbb8776333dac5b2226ff", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.*, <4", "size": 23761, "upload_time": "2021-04-15T10:27:27", "upload_time_iso_8601": "2021-04-15T10:27:27.909274Z", "url": "https://files.pythonhosted.org/packages/c4/d5/66b8103345f8bab68b6d00b9571fe8744622cb557d3ab5a8c9d08b38a14b/td-cli-2.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }