pingme

Cli for Pingme Android application.


License
Other
Install
pip install pingme==0.0.1

Documentation

pingme-cli

Command line client for PingMe android app.

Build Status Coverage Status PyPI Version PyPI Downloads Documentation Status

Getting Started

Requirements

  • Python 2.7+

Installation

PingMe-cli can be installed with pip:

$ pip install pingme

or directly from the source code:

$ git clone https://github.com/teddy-schmitz/pingme-cli.git
$ cd pingme-cli
$ python setup.py install

Basic Usage

To send a message use the following syntax

$ pingme -d <device id> <message>

Devices can be a comma separated list. You can also define a config file in

~/.pingme_config

[Default]
devices=deviceid1,deviceid2
message=Example

This will allow you to specify defaults for the command, but any arguments passed in will override these values.

More information at ReadtheDocs

For Contributors

Please make check and make test before submitting any pull requests.

Requirements

Installation

Create a virtualenv:

$ make env

Run the tests:

$ make test
$ make tests  # includes integration tests

Build the documentation:

$ make doc

Run static analysis:

$ make pep8
$ make pep257
$ make pylint
$ make check  # includes all checks

Prepare a release:

$ make dist  # dry run
$ make upload