{"id":20852655,"url":"https://github.com/epic-r-r/ttodo","last_synced_at":"2025-10-13T13:07:53.409Z","repository":{"id":62585460,"uuid":"293590912","full_name":"Epic-R-R/tTodo","owner":"Epic-R-R","description":"A simple command-line todo tools to keeping the track of your tasks","archived":false,"fork":false,"pushed_at":"2020-09-07T20:10:32.000Z","size":36,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-13T13:06:54.827Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/Epic-R-R.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}},"created_at":"2020-09-07T17:28:53.000Z","updated_at":"2023-03-02T08:15:50.000Z","dependencies_parsed_at":"2022-11-03T22:06:12.536Z","dependency_job_id":null,"html_url":"https://github.com/Epic-R-R/tTodo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Epic-R-R/tTodo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Epic-R-R%2FtTodo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Epic-R-R%2FtTodo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Epic-R-R%2FtTodo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Epic-R-R%2FtTodo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Epic-R-R","download_url":"https://codeload.github.com/Epic-R-R/tTodo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Epic-R-R%2FtTodo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279015279,"owners_count":26085683,"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","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2024-11-18T03:18:27.789Z","updated_at":"2025-10-13T13:07:53.392Z","avatar_url":"https://github.com/Epic-R-R.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tTodo (Terminal Todo)\n\n\u003e* *A simple command-line todo tools to keeping the track of your tasks\nBuilt with Python 3 with Linux systems.*\n\n## Picture\n\n*tTodo does not have a graphical interface have a graphic interface* \n\n![Todo screenshot](https://raw.githubusercontent.com/Epic-R-R/tTodo/master/screen.png?row=True)\n\n## Usage\n\n### Clone the repositorie\n\n```console\n$ git clone https://github.com/Epic-R-R/tTodo\n```\n### Go to directory\n\n```console\n$ cd tTodo\n```\n### Install with [pip](https://github.com/pypa/pip)\n\n```console\n$ pip install .\n```\n\nYou now can use the *tTodo* with this 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 project\nProject name: (web-app) MyWebsite\n```\nnow you created your project and can start adding tasks into your project\n\n## Commands\n\n* [Create a project](#create-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* [List all tasks](#list-all-tasks)\n* [Search tasks](#search-tasks)\n* [Toggle a task](#toggle-a-task)\n* [Rename a project](#rename-a-project)\n* [Delete a project](#delete-a-project)\n\n\n### Create a project\n\n```console\n$ todo project\n```\n\n### Add a task\n\n```console\n$ todo add \"Name of the task\"\n```\nMulti-tasks adding with together:\n```console\n$ todo add \"Task 1\", Task 2, \"Task 3\"\n```\n\n### Remove a task\n\nremove task by name:\n\n```console\n$ todo remove \"Name\"\n```\n\nremove with an interactive menu:\n\n```console\n$ todo remove\n```\n*You can use `rm` instead of `remove`.*\n### Check a task\nChack with name:\n```console\n$ todo check \"Name\"\n```\n\nCheck all items:\n\n```console\n$ todo check --all\n```\n*You can use `-a` instead of `--all`.*\n### Uncheck a task\nUncheck with name:\n```console\n$ todo uncheck \"Name\"\n```\n\nUncheck all items:\n\n```console\n$ todo uncheck --all\n```\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### Toggle a task\n\nToggle a specific task by name:\n\n```console\n$ todo toggle \"Name\"\n```\n\nToggle with an interactive menu:\n\n```console\n$ todo toggle\n```\n\n*You can use `tg` instead of `toggle`.*\n\n### Rename a project\n\n```console\n$ todo rename \"New name\"\n```\n\n### Delete a project\n\n```console\n$ todo delete\n```\n\n*You can use `del` instead of `delete`.*","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fepic-r-r%2Fttodo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fepic-r-r%2Fttodo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fepic-r-r%2Fttodo/lists"}