{"id":22116220,"url":"https://github.com/nick-denry/jabberdo","last_synced_at":"2026-05-09T16:07:36.187Z","repository":{"id":145320963,"uuid":"182005572","full_name":"nick-denry/JabberDo","owner":"nick-denry","description":"Simple TODO lists over Jabber/XMPP","archived":false,"fork":false,"pushed_at":"2020-03-21T11:53:39.000Z","size":70,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-10-22T02:53:44.455Z","etag":null,"topics":["jabber","jabber-bot","python-bot","sleekxmpp","todo","todolist","xmpp","xmpp-bot"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nick-denry.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":"2019-04-18T02:55:42.000Z","updated_at":"2023-11-18T14:28:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"f4f6f40e-cc9a-476d-9d4a-c39b42d231d5","html_url":"https://github.com/nick-denry/JabberDo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nick-denry/JabberDo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nick-denry%2FJabberDo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nick-denry%2FJabberDo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nick-denry%2FJabberDo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nick-denry%2FJabberDo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nick-denry","download_url":"https://codeload.github.com/nick-denry/JabberDo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nick-denry%2FJabberDo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32825663,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"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":["jabber","jabber-bot","python-bot","sleekxmpp","todo","todolist","xmpp","xmpp-bot"],"created_at":"2024-12-01T12:20:01.998Z","updated_at":"2026-05-09T16:07:36.170Z","avatar_url":"https://github.com/nick-denry.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TODO over XMPP\n\nPros. Easy share your task lists with any device since jabber clients are everywhere.\n\n**Disclaimer:** This is pre-alpha software. Everything could be changed. Follow README to watch the changes. \n\n## 1. Command list\n\n**Diplay Help:**\n\nJust text `?`\n\n**Control lists:**\n\n`..` - output existing lists  \n`.list_name` - add or display list, i.e. `.tasks`. Also makes list \"active\".  \n`.` - display active list  \n`.--` - clear tasks of the active list  \n`.!` - display completed tasks of the active list  \n`.!-` - clear completed tasks of the active list  \n`.-list_name` - delete list and all of its tasks     \n\n**Control tasks:**\n    \n`any message` - adds task to the active list    \n`:any multiline message` - add multiple tasks from multiline message  \n`!task_number [task_number]` - move task(s) `task_number` to complete tasks    \n`-task_number` - delete task `task_number` from list, i.e. -1 deletes first task  \n`\u003etask_number task_title` - edit task `task_number` from current list, set it new `title`  \n`^task_number list_name` - move task `task_number` from current list to `list_name` list    \n\n**Schedule tasks:**\n\n`*task_number time` or `*task_number date time` - set reminder for task `task_number` from active list to provided time or date/time\n    \n    example: *1 22:04 - set reminder for task 1 from active list to 22:04 today.\n\n`.*` - list scheduled tasks\n       \n \n\n## 2. Requremens\n\n- Redis server\n- [SleekXMPP](https://github.com/fritzy/SleekXMPP)\n- python-redis\n- python-yaml\n- python-dateutil\n\n## 3. Installation\n\n1. Create `virtualenv` in your preferred way.\n\n#### Debian/Ubuntu example.\n\n    sudo apt-get install redis-server  # Install redis server\n    sudo apt-get install python3-pip  # Install python3-pip\n    sudo pip3 install virtualenv  # Install virtualenv \n    virtualenv -p python3 myenv  # Create virtualenv\n    source myenv/bin/activate  # Activate created env\n    # Add packages\n    pip3 install sleekxmpp\n    pip3 install redis\n    pip3 install pyyaml\n    pip3 install python-dateutil\n    deactivate  # Deactivate env\n    \n \n\n2. [Download bot files](https://github.com/nick-denry/JabberDo/archive/master.zip) or clone form github:\n```bash\ngit clone https://github.com/nick-denry/JabberDo.git\n```\n\n2. Copy `main-local.dist.yml` to `main-local.yml` at `config` folder.\n\n```bash\ncp main-local.dist.yml main-local.yml\n```\n\nSet config as follow:\n\n```yaml\nbot_account:\n  jid: bot_jid@example.com\n  password: bot_password\n  port: 5222\n  PROTOCOL_SSLv23: True\n\ndb:\n  type: redis\n\nredis_db:\n  host: localhost\n  port: 6379\n  db: 0\n\nallowed_jids:\n  - jid@example.com\n ```\n \n `allowed_jids` - users allowed to interact with bot.\n\n## 4. Run\n\nRun in background with `screen` and created environment\n\n```bash\nscreen myenv/bin/python3 bot.py \n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnick-denry%2Fjabberdo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnick-denry%2Fjabberdo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnick-denry%2Fjabberdo/lists"}