{"id":17273672,"url":"https://github.com/prasadg193/covaccine-notifier","last_synced_at":"2025-03-17T11:30:36.665Z","repository":{"id":48424389,"uuid":"363701755","full_name":"PrasadG193/covaccine-notifier","owner":"PrasadG193","description":"CoWIN Vaccine availability notifier for India","archived":false,"fork":false,"pushed_at":"2021-07-27T03:51:29.000Z","size":2234,"stargazers_count":62,"open_issues_count":17,"forks_count":28,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-02-27T23:06:12.875Z","etag":null,"topics":["availability-monitor","covaccine-notifier","covid-19","cowin-portal","district","email-notification","india","notifier","telegram","vaccination","vaccine-availability","vaccine-finder","vaccine-tracker"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PrasadG193.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":"2021-05-02T16:49:02.000Z","updated_at":"2022-12-29T18:08:02.000Z","dependencies_parsed_at":"2022-08-24T09:43:02.160Z","dependency_job_id":null,"html_url":"https://github.com/PrasadG193/covaccine-notifier","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrasadG193%2Fcovaccine-notifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrasadG193%2Fcovaccine-notifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrasadG193%2Fcovaccine-notifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrasadG193%2Fcovaccine-notifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PrasadG193","download_url":"https://codeload.github.com/PrasadG193/covaccine-notifier/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243858056,"owners_count":20359271,"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":["availability-monitor","covaccine-notifier","covid-19","cowin-portal","district","email-notification","india","notifier","telegram","vaccination","vaccine-availability","vaccine-finder","vaccine-tracker"],"created_at":"2024-10-15T08:51:56.287Z","updated_at":"2025-03-17T11:30:35.144Z","avatar_url":"https://github.com/PrasadG193.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# covaccine-notifier\n\nCoWIN Portal Vaccine availability notifier\n\ncovaccine-notifier periodically checks and sends email notifications for available slots for the next 7 days on CoWIN portal in a given area and age.\n\n**Sample screenshot**\n\n![email notification](./screenshot.png)\n\n## Installation\n\n### Install the pre-compiled binary\n\n```\ncurl -sfL https://raw.githubusercontent.com/PrasadG193/covaccine-notifier/main/install.sh | sh\n```\n\n### Docker\n```\ndocker pull ghcr.io/prasadg193/covaccine-notifier:v0.2.0\n```\n\n## Usage\n\ncovaccine-notifier can monitor vaccine availability either by pin-code or state and district names\n\n```bash\n$ ./covaccine-notifier --help\nCoWIN Vaccine availability notifier India\n\nUsage:\n  covaccine-notifier [command]\n\nAvailable Commands:\n  email       Notify slots availability using Email\n  help        Help about any command\n  telegram    Notify slots availability using Telegram\n\nFlags:\n  -a, --age int            Search appointment for age (required)\n  -d, --district string    Search by district name\n  -o, --dose int           Dose preference - 1 or 2. Default: 0 (both)\n  -f, --fee string         Fee preferences - free (or) paid. Default: No preference\n  -h, --help               help for covaccine-notifier\n  -i, --interval int       Interval to repeat the search. Default: (60) second\n  -m, --min-capacity int   Filter by minimum vaccination capacity. Default: (1)\n  -c, --pincode string     Search by pin code\n  -s, --state string       Search by state name\n  -v, --vaccine string     Vaccine preferences - covishield (or) covaxin. Default: No preference\n\nUse \"covaccine-notifier [command] --help\" for more information about a command.\n```\nexample \n```\n$ ./covaccine-notifier email --help \n```\n\n**Note:** Gmail password won't work for 2FA enabled accounts. Follow [this](https://support.google.com/accounts/answer/185833?p=InvalidSecondFactor\u0026visit_id=637554658548216477-2576856839\u0026rd=1) guide to generate app token password and use it with `--password` arg \n\n## Integration with Telegram\n\nFor telegram bot integration with covaccine-notifier follow [this](./docs/telegram-integration.md).\n\n## Integration with Mattermost\n\nFor mattermost integration refer this [document](docs/mattermost-integration.md)\n\n## Examples\n\n### Terminal\n\n#### Search by State and District\n\n```\ncovaccine-notifier email --state Maharashtra --district Akola --age 27  --username \u003cemail-id\u003e --password \u003cemail-password\u003e\n```\n\n#### Search by Pin Code\n\n```\ncovaccine-notifier email --pincode 444002 --age 27  --username \u003cemail-id\u003e --password \u003cemail-password\u003e\n```\n\n#### Enable Telegram Notification\n\n```\ncovaccine-notifier telegram --pincode 444002 --age 27 --token \u003ctelegram-token\u003e --username \u003ctelegram-username\u003e\n```\n\n#### Enable mattermost notification\n\n```bash\ncovaccine-notifier mattermost --pincode 444002 --age 27 --token \u003cmattermost-bot-token\u003e --username \u003cmattermost-user-to-sent-messages\u003e --url \u003cmattermost-server-url\u003e\n```\n\n### Docker\n\n```\ndocker run --rm -ti ghcr.io/prasadg193/covaccine-notifier:v0.2.0  email --state Maharashtra --district Akola --age 27  --username \u003cemail-id\u003e --password \u003cemail-password\u003e\n```\n\n### Running on Kubernetes Cluster\n\nIf you are not willing to keep your terminal on all the time :smile:, you can also create a Pod on K8s cluster\n\n```\nkubectl run covaccine-notifier --image=ghcr.io/prasadg193/covaccine-notifier:v0.2.0 --command -- /covaccine-notifier email --state Maharashtra --district Akola --age 27  --username \u003cemail-id\u003e --password \u003cemail-password\u003e\n```\n\n## Contributing\n\nWe love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:\n- Reporting a bug\n- Discussing the current state of the code\n- Submitting a fix\n- Proposing new features\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprasadg193%2Fcovaccine-notifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprasadg193%2Fcovaccine-notifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprasadg193%2Fcovaccine-notifier/lists"}