{"id":50275485,"url":"https://github.com/cusyio/cusy.tasks","last_synced_at":"2026-05-27T20:02:19.769Z","repository":{"id":200205378,"uuid":"705031940","full_name":"cusyio/cusy.tasks","owner":"cusyio","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-01T09:03:56.000Z","size":811,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-01T10:08:22.214Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cusyio.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSES/BSD-3-Clause.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-10-14T20:51:33.000Z","updated_at":"2026-05-01T09:04:00.000Z","dependencies_parsed_at":"2023-10-16T04:06:53.841Z","dependency_job_id":"2cce3cd6-c1f5-4aec-9c2d-3f8b5d04c5d7","html_url":"https://github.com/cusyio/cusy.tasks","commit_stats":null,"previous_names":["veit/items","cusyio/cusy.tasks"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/cusyio/cusy.tasks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cusyio%2Fcusy.tasks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cusyio%2Fcusy.tasks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cusyio%2Fcusy.tasks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cusyio%2Fcusy.tasks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cusyio","download_url":"https://codeload.github.com/cusyio/cusy.tasks/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cusyio%2Fcusy.tasks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33581559,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-27T02:00:06.184Z","response_time":53,"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":"2026-05-27T20:02:18.978Z","updated_at":"2026-05-27T20:02:19.763Z","avatar_url":"https://github.com/cusyio.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":".. SPDX-FileCopyrightText: 2023 Veit Schiele\n\n.. SPDX-License-Identifier: BSD-3-Clause\n\n===============================\ncusy.tasks – a simple todo list\n===============================\n\n*cusy.tasks* is a simple command line tool for managing tasks. It allows you to\ncreate, display, update and delete tasks, as well as change their status.\n\nStatus\n======\n\n.. image:: https://img.shields.io/github/contributors/cusyio/cusy.tasks.svg\n   :alt: Contributors\n   :target: https://github.com/cusyio/cusy.tasks/graphs/contributors\n.. image:: https://img.shields.io/github/license/cusyio/cusy.tasks.svg\n   :alt: License\n   :target: https://github.com/cusyio/cusy.tasks/blob/main/LICENSE\n.. image:: https://github.com/cusyio/cusy.tasks/workflows/CI/badge.svg\n   :target: https://github.com/cusyio/cusy.tasks/actions?workflow=CI\n   :alt: CI Status\n\nFeatures\n========\n\n* Create tasks with summary and owner\n* Display tasks, optionally filtered by owner or status\n* Update tasks and their status (todo, in progress, done)\n* Delete individual or all tasks\n* Simple command line interface\n* Programmable Python API\n\nInstallation\n============\n\n#. Download and unpack:\n\n   … on Linux/macOS:\n\n   .. code-block:: console\n\n      $ curl -O https://codeload.github.com/cusyio/cusy.tasks/zip/main\n      $ unzip main\n      Archive:  main\n      …\n         creating: cusy.tasks-main/\n      …\n\n   … on Windows:\n\n   .. code-block:: ps1con\n\n      C:\u003e curl.exe -o main.zip -O https://codeload.github.com/cusyio/cusy.tasks/zip/main\n      C:\u003e tar -xvzf main.zip\n      cusy.tasks-main/\n      cusy.tasks-main/.gitignore\n      …\n\n#. Install Python packages:\n\n   … on Linux/macOS:\n\n   .. code-block:: console\n\n      $ cd cusy.tasks\n      $ python3 -m venv .\n      $ . bin/activate\n      $ python -m pip install --upgrade pip\n      $ python -m pip install -e .\n\n   … on Windows:\n\n   .. code-block:: ps1con\n\n      C:\u003e py -m venv .\n      C:\u003e Scripts\\activate\n      C:\u003e python -m pip install --upgrade pip\n      C:\u003e python -m pip install -e .\n\nUsage\n=====\n\nCommand line instructions\n-------------------------\n\nAfter activating the virtual Python environment, you can use cusy.tasks on the\ncommand line:\n\n.. code-block:: console\n\n   # Display all tasks (default if no command is specified)\n   $ cusy.tasks\n\n   # Add a new task\n   $ cusy.tasks add \"My task description\" --owner \"Veit\"\n\n   # Show filtered list\n   $ cusy.tasks list --owner \"Veit\" --state \"todo\"\n\n   # Update task\n   $ cusy.tasks update 1 --owner \"Veit\" --summary \"Update description\"\n\n   # Change the status of a task\n   $ cusy.tasks start 1    # Set status to \"in progress\"\n   $ cusy.tasks finish 1   # Set status to \"done\"\n\n   # Delete task\n   $ cusy.tasks delete 1\n\n   # Display number of tasks\n   $ cusy.tasks count\n\n   # Display the file path of the database\n   $ cusy.tasks config\n\n   # Display version\n   $ cusy.tasks version\n\nPython API\n----------\n\nYou can also use the cusy.tasks functionality directly in your Python code:\n\n.. code-block:: python\n\n   # Initialise database\n   from cusy.tasks import TasksDB, Task\n\n   # Connect to database\n   db = TasksDB(\"/path/to/database\")\n\n   # Add new task\n   task = Task(summary=\"Implement feature\", owner=\"Veit\")\n   task_id = db.add_task(task)\n\n   # Retrieve task by ID\n   task = db.get_task(task_id)\n\n   # Update task\n   db.update_task(task_id, Task(summary=\"Implement feature with tests\"))\n\n   # Change status\n   db.start(task_id)  # Set to \"in progress\"\n   db.finish(task_id)  # Set to \"done\"\n\n   #  List tasks (optionally with filtering)\n   all_tasks = db.list_tasks()\n   veit_tasks = db.list_tasks(owner=\"Veit\")\n   in_process = db.list_tasks(state=\"in progress\")\n\n   #  Delete task\n   db.delete_task(task_id)\n\n   # Close connection\n   db.close()\n\nConfiguration\n=============\n\nThe database file is saved under ``~/tasks_db`` by default. You can change this\npath by setting the environment variable ``ITEMS_DB_DIR``:\n\n.. code-block:: console\n\n   # Linux/macOS\n   $ export ITEMS_DB_DIR=/pfad/zu/meiner/datenbank\n\n   # Windows\n   C:\u003e set ITEMS_DB_DIR=C:\\pfad\\zu\\meiner\\datenbank\n\nProject links\n=============\n\n* `Documentation \u003chttps://tasks.cusy.io\u003e`_\n* `GitHub \u003chttps://github.com/cusyio/cusy.tasks\u003e`_\n* `Mastodon \u003chttps://mastodon.social/deck/@Python4DataScience\u003e`_\n\nCollaboration\n=============\n\nIf you have suggestions for improvements and additions, I recommend that you\ncreate a `Fork \u003chttps://github.com/cusyio/cusy.tasks/fork\u003e`_ of my\n`GitHub Repository \u003chttps://github.com/cusyio/cusy.tasks/\u003e`_ and make\nyour changes there. You are also welcome to make a *pull request*. If the\nchanges contained therein are small and atomic, I’ll be happy to look at your\nsuggestions.\n\nLicense\n=======\n\nThis project is licensed under the BSD-3-Clause licence. Further information can\nbe found in the ``LICENSE`` file in the project repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcusyio%2Fcusy.tasks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcusyio%2Fcusy.tasks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcusyio%2Fcusy.tasks/lists"}