{"id":13585441,"url":"https://github.com/markus-perl/pushover-cli","last_synced_at":"2025-07-03T21:40:56.878Z","repository":{"id":27885992,"uuid":"31377398","full_name":"markus-perl/pushover-cli","owner":"markus-perl","description":"pushover-cli is a command line client for https://pushover.net to send pushover notifications. Moreover it is possible with this client to pipe streams directly to your cellphone like tail -f /var/log/my.log | pushover-cli -","archived":false,"fork":false,"pushed_at":"2024-11-18T12:24:37.000Z","size":38,"stargazers_count":52,"open_issues_count":4,"forks_count":12,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-12T00:41:36.583Z","etag":null,"topics":["pushover","pushover-api","pushover-cli","pushover-http","pushover-linux","pushover-macos","pushover-notifications","pushover-wsl","tail"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"3xp10it/bypass_waf","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/markus-perl.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-02-26T16:50:01.000Z","updated_at":"2025-05-03T23:05:33.000Z","dependencies_parsed_at":"2023-02-19T03:55:13.281Z","dependency_job_id":null,"html_url":"https://github.com/markus-perl/pushover-cli","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markus-perl%2Fpushover-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markus-perl%2Fpushover-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markus-perl%2Fpushover-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markus-perl%2Fpushover-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/markus-perl","download_url":"https://codeload.github.com/markus-perl/pushover-cli/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253655919,"owners_count":21943072,"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":["pushover","pushover-api","pushover-cli","pushover-http","pushover-linux","pushover-macos","pushover-notifications","pushover-wsl","tail"],"created_at":"2024-08-01T15:04:56.588Z","updated_at":"2025-05-12T00:41:47.471Z","avatar_url":"https://github.com/markus-perl.png","language":"Python","readme":"pushover-cli\n==========\n\npushover-cli is a Python-based command-line client for https://pushover.net to send pushover notifications.  This can be used for a variety\nof purposes, including:\n\n* Sending control messages to an old phone running Youtube to start/pause/stop/etc. the playing video remotely.\n* Piping streams to your cellphone (e.g. `tail -f /var/log/my.log | pushover-cli -`)\n* It's essentially an MQTT channel, so anything that can read a pushover message can act on it.\n* Tie pushover notifications into your long-running scripts (build, cleanup, upgrade, etc.) to get notices of different system events.\n\nRequirements\n------------\n* Linux (including WSL) or Mac OSX\n* Python 3.x\n* Your own [pushover application token](https://pushover.net/apps/build).\n* Your pushover user key, which can be found [here](https://pushover.net).\n\n\nDownload and installation\n-------------------------\n\nSimply execute the following command to install the latest version of this script to your system:\n\n```sh\nsudo curl -o /usr/bin/pushover-cli https://raw.githubusercontent.com/markus-perl/pushover-cli/master/pushover-cli \nsudo chmod 555 /usr/bin/pushover-cli\n```    \n\nCommandline options\n-------------------\n\n```\nUsage:   pushover-cli [options] \u003cmessage\u003e \u003ctitle\u003e\nStdin:   pushover-cli [options] - \u003ctitle\u003e\nExample: pushover-cli -u ubLBe5u3zNXF9gBtX2zKkezSuPgu3v -t aK5BW3sjAqPsedH44VyQSbaQecoRen \"Hello World\"\n\n    -u --user     \u003cuser id\u003e             Pushover User-ID\n    -t --token    \u003capi token\u003e           Pushover API-Token\n    -d --device   \u003cdevice name\u003e         Device Name (if omitted, will broadcast to all devices)\n    -p --priority \u003chighest, high, normal, low, lowest\u003e   Default: normal\n    -r --retry    \u003c30+\u003e                 Default: 30)\n    -e --expire   \u003c30 - 10800\u003e          Default: 300)\n    -l --url      \u003curl\u003e                 Link the message to this URL\n    -s --sound    \u003cnotification sound\u003e  Default: pushover - see https://pushover.net/api#sounds\n    -c --config   \u003cpath to file\u003e        Default: /etc/pushover.conf\n    -v --verbose                        Be verbose\n    -q --quiet                          Be quiet\n```\n\nProxy Utilization\n-------------------\n\nIncorporating the PR from acaranta that enabled proxy support, if the `HTTP_ENV` environment variable is \npointed at a proxy server URL, `pushover-cli` will treat that as the proxy gateway and route the message\nto Pushover through it.\n\n\nConfig file\n-------------------\n\nEvery command line option can also be set by creating the config file ~/.pushover-cli.conf or /etc/pushover-cli.conf\n\nExample file:\n\n```\nuser=\u003cPushover User ID\u003e\ntoken=\u003cPushover Application API Token\u003e\npriority=normal\nverbose=0\nquiet=0\n```\n\nAfter creating this file it is no more necessary to specify these options in the command line which makes it more easier to send a message:\n```sh\n$ pushover-cli \"My Message\" \"My Title\"\n```\n\nor\n\n```sh\n$ pushover-cli -d 'my_phone' 'My Message' 'My Title'\n```\n\nor\n\n```sh\n$ pushover-cli -s 'none' 'My Message' 'My Title'\n```\nfor silent notification or use other tones https://pushover.net/api#sounds\n","funding_links":[],"categories":["Python"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkus-perl%2Fpushover-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarkus-perl%2Fpushover-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkus-perl%2Fpushover-cli/lists"}