{"id":20119418,"url":"https://github.com/drshahinstein/whatsapp-cli","last_synced_at":"2025-07-28T17:08:39.882Z","repository":{"id":136705132,"uuid":"548050431","full_name":"DrShahinstein/whatsapp-cli","owner":"DrShahinstein","description":"Simple command line tool for whatsapp-web featuring message schedules","archived":false,"fork":false,"pushed_at":"2024-02-10T15:41:17.000Z","size":50,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-06T14:37:13.248Z","etag":null,"topics":["python-cli-app","python-poetry","whatsapp-message-sender","whatsapp-scheduler","whatsapp-web"],"latest_commit_sha":null,"homepage":"","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/DrShahinstein.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,"zenodo":null}},"created_at":"2022-10-08T20:45:06.000Z","updated_at":"2025-03-13T21:59:45.000Z","dependencies_parsed_at":"2024-02-10T16:48:22.116Z","dependency_job_id":null,"html_url":"https://github.com/DrShahinstein/whatsapp-cli","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DrShahinstein/whatsapp-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrShahinstein%2Fwhatsapp-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrShahinstein%2Fwhatsapp-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrShahinstein%2Fwhatsapp-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrShahinstein%2Fwhatsapp-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DrShahinstein","download_url":"https://codeload.github.com/DrShahinstein/whatsapp-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrShahinstein%2Fwhatsapp-cli/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267552097,"owners_count":24106000,"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-07-28T02:00:09.689Z","response_time":68,"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":["python-cli-app","python-poetry","whatsapp-message-sender","whatsapp-scheduler","whatsapp-web"],"created_at":"2024-11-13T19:15:41.021Z","updated_at":"2025-07-28T17:08:39.852Z","avatar_url":"https://github.com/DrShahinstein.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# whatsapp-cli\n\nSimple command line tool for whatsapp-web featuring message schedules. \n\n## Requirements\n\n- [python-poetry](https://python-poetry.org/)\n- [python-pip](https://pypi.org/project/pip/)\n\n## Installation\n\n```bash\n$ git clone https://www.github.com/DrShahinstein/whatsapp-cli.git\n$ cd whatsapp-cli/\n$ poetry install\n```\n\n## Usage\n\n```bash\n[whatsapp-cli]$ poetry run python3 -m whatsapp-cli [commands] [options]\n```\n\n## Examples\n\n### How to schedule messages?\n\nLet's create two new schedules like so:\n\n```bash\n[whatsapp-cli]$ poetry run python3 -m whatsapp-cli create schedule\nThe name of your schedule: test1\nMessage: Test message.\nReceiving phone number: +## ### ### ####\nhh:mm: 22\nhh:mm: 18\nNew schedule created.\n```\n\n```bash\n[whatsapp-cli]$ poetry run python3 -m whatsapp-cli create schedule\nThe name of your schedule: test2\nMessage: Test message.\nReceiving phone number: +## ### ### ####\nhh:mm: 22\nhh:mm: 15\nNew schedule created.\n```\n\n---\n\nAnd here, let's create a schedule which is going to be removed soon to see how you can remove schedules.\n\n```bash\n[whatsapp-cli]$ poetry run python3 -m whatsapp_cli create schedule\nThe name of your schedule: Gonna be removed\nMessage: Test message.\nReceiving phone number: +## ### ### ####\nhh:mm: 23\nhh:mm: 50\nNew schedule created.\n```\n\n---\n\nHere, as you can see, we removed the schedule named \"Gonna be removed\"\n\n```bash\n[whatsapp-cli]$ poetry run python3 -m whatsapp_cli remove schedule\nEnter the name of the schedule you want to remove: Gonna be removed\nGonna be removed removed.\nEnter the name of the schedule you want to remove: ^CAborted!\n```\n\n---\n\nFinally, we currently have two messages, let's schedule them.\n\n```bash\n[whatsapp-cli]$ poetry run python3 -m whatsapp_cli schedule\n# The CLI first picks the earliest one among our schedules and starts a countdown.\nNext message will be delivered in 0:00:44\n# After the ending of the countdown, it goes on with the next one.\nNext message will be delivered in 0:02:50\n```\n\nThe delivery of a message means that the CLI is going to open up whatsapp-web on your default browser and deliver your message after 10 seconds.\n\n## Build\n\nTo build whatsapp-cli, you need to run:\n\n```bash\n[whatsapp-cli]$ poetry build\n```\n\nJust then you run `poetry build`, a new directory `dist` is going to be created. Change your directory to this directory and build whatsapp-cli with the whl file inside `dist` by running:\n\n```bash\n[dist]$ pip3 install whatsapp_cli-0.1.0-py3-none-any.whl\n```\n\nNow that you have built whatsapp-cli, you can run it this way:\n\n```bash\n$ whatsapp_cli [commands] [options]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrshahinstein%2Fwhatsapp-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdrshahinstein%2Fwhatsapp-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrshahinstein%2Fwhatsapp-cli/lists"}