{"id":16941406,"url":"https://github.com/francoischalifour/todo-cli","last_synced_at":"2025-05-12T03:31:58.767Z","repository":{"id":57476060,"uuid":"58815486","full_name":"francoischalifour/todo-cli","owner":"francoischalifour","description":"✅ Command-line tool to manage Todo lists","archived":false,"fork":false,"pushed_at":"2023-08-14T09:18:21.000Z","size":27,"stargazers_count":98,"open_issues_count":0,"forks_count":12,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-04-23T09:23:02.533Z","etag":null,"topics":["cli","commandline","management","productivity","project","projects","python","todo","workflow"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/francoischalifour.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-05-14T15:35:19.000Z","updated_at":"2024-04-14T14:30:57.000Z","dependencies_parsed_at":"2024-10-13T21:09:29.729Z","dependency_job_id":"1012d479-194c-435c-92d3-df615d86cb0c","html_url":"https://github.com/francoischalifour/todo-cli","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/francoischalifour%2Ftodo-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/francoischalifour%2Ftodo-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/francoischalifour%2Ftodo-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/francoischalifour%2Ftodo-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/francoischalifour","download_url":"https://codeload.github.com/francoischalifour/todo-cli/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253668078,"owners_count":21944975,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","commandline","management","productivity","project","projects","python","todo","workflow"],"created_at":"2024-10-13T21:09:27.987Z","updated_at":"2025-05-12T03:31:58.494Z","avatar_url":"https://github.com/francoischalifour.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Todo (CLI)\n\n\u003e Command-line tool to manage the Todo lists of your projects\n\n![Todo workflow](https://cloud.githubusercontent.com/assets/6137112/15577881/94d72140-235e-11e6-9f6d-68393c515a33.gif)\n\n*Built with Python3 with Unix systems in mind.*\n\n## Elevator Pitch\n\n*Todo* exists to bring all the needed functionalities for simple project management to the terminal. No graphical interface is needed; this tool is easy enough to use to improve your workflow.\n\n![Todo screenshot](https://cloud.githubusercontent.com/assets/6137112/15632931/d48ba286-25a0-11e6-983b-46ef5188e91e.png)\n\n## Usage\n\n### Clone the repo\n\n```console\n$ git clone https://github.com/francoischalifour/todo-cli\n```\n\n### Create a virtual environment (optional)\n\nIf you use several Python versions on your computer, create a virtual environment with the Python 3 interpreter:\n\n```console\n$ virtualenv -p python3 venv\n```\n\nActivate the new environment:\n\n```console\n$ source venv/bin/activate\n```\n\n### Install with [pip](https://github.com/pypa/pip)\n\n```console\n$ pip install \u003cpath to the todo-cli folder\u003e\n```\n\nYou should now be able to use the command `todo`.\n\n### Create a Todo project\n\nBefore working on your Todo list, you need to create a project.\n\n```console\n$ todo init\nProject name: (moody-app) Moody\nThe project Moody has been created.\n```\n\nYou can now start adding tasks!\n\n## Commands\n\n* [Create a project](#create-a-project)\n* [Delete a project](#delete-a-project)\n* [Rename a project](#rename-a-project)\n* [Add a task](#add-a-task)\n* [Remove a task](#remove-a-task)\n* [Check a task](#check-a-task)\n* [Uncheck a task](#uncheck-a-task)\n* [Toggle a task](#toggle-a-task)\n* [List all tasks](#list-all-tasks)\n* [Search tasks](#search-tasks)\n\n### Create a project\n\n```console\n$ todo init\n```\n\n### Delete a project\n\n```console\n$ todo delete\n```\n\n*You can use `del` instead of `delete`.*\n\n### Rename a project\n\n```console\n$ todo rename \"New name\"\n```\n\n### Add a task\n\n```console\n$ todo add \"Name of the task\"\n```\n\nYou can add several tasks and don't need to add quotes:\n\n```console\n$ todo add \"Task 1\", Task 2, \"Task 3\"\n```\n\n### Remove a task\n\nTo remove a specific task by name:\n\n```console\n$ todo remove \"Name of the task\"\n```\n\nTo remove a task with an interactive menu (Unix only):\n\n```console\n$ todo remove\n```\n\n*You can use `rm` instead of `remove`.*\n\n### Check a task\n\n```console\n$ todo check \"Name of the task\"\n```\n\nTo check all the items:\n\n```console\n$ todo check --all\n```\n\n*You can use `-a` instead of `--all`.*\n\n### Uncheck a task\n\n```console\n$ todo uncheck \"Name of the task\"\n```\n\nTo uncheck all the items:\n\n```console\n$ todo uncheck --all\n```\n\n*You can use `-a` instead of `--all`.*\n\n### Toggle a task\n\nTo toggle a specific task by name:\n\n```console\n$ todo toggle \"Name of the task\"\n```\n\nTo toggle a task with an interactive menu (Unix only):\n\n```console\n$ todo toggle\n```\n\n*You can use `tg` instead of `toggle`.*\n\n### List all tasks\n\n```console\n$ todo list\n```\n\n*You can use `ls` instead of `list`.*\n\n### Search tasks\n\n```console\n$ todo search \"keyword\"\n```\n\n## License\n\nMIT © [François Chalifour](http://francoischalifour.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrancoischalifour%2Ftodo-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrancoischalifour%2Ftodo-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrancoischalifour%2Ftodo-cli/lists"}