Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keans/lmnotify
A package for sending notifications to LaMetric Time.
https://github.com/keans/lmnotify
Last synced: 13 days ago
JSON representation
A package for sending notifications to LaMetric Time.
- Host: GitHub
- URL: https://github.com/keans/lmnotify
- Owner: keans
- License: mit
- Created: 2016-11-12T16:50:57.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-10T18:11:12.000Z (about 6 years ago)
- Last Synced: 2024-09-28T03:54:12.400Z (about 2 months ago)
- Language: Python
- Size: 43.9 KB
- Stars: 27
- Watchers: 8
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
lmnotify
========``lmnotify`` is a package for sending notifications to
`LaMetric Time `_. To achieve this, the package
encapsulates the REST API calls that are sent to the LaMetric device.Module Installation
-------------------The easiest way to install the ``lmnotify`` module is via ``pip``:
::
pip install lmnotify
or clone/download this repository and install it:
::
python3 setup.py install
or
::
python setup.py install
Basic Setup
-----------The LaMetric Time can only be accessed by authorized applications. Therefore,
each application that wants to access the device needs to be registered
at the `LaMetric Developer `_ webpage.Creating a Custom Application
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~The following steps are required to register the ``lmnotify`` python module
as new LaMetric application at their webpage:1) Sign Up and login to the developer webpage https://developer.lametric.com
2) Click the **Create** button in the upper right corner, then select
**Notification App** and click **Create** again.
3) Enter an app name, a description and a redirect URL
4) Finally, click **Save** to create the application.For the newly created app you will obtain credentials i.e. the **client id**
and a **client secret**. Both are required in the following to to setup the
python module.Background
~~~~~~~~~~Although, the ``lmnotify`` python module must be registered with the LaMetric
cloud, on the long run, there is only a very limited interaction with the cloud
necessary. The main functions of the cloud-related RESTful API deal with user
information stored at the cloud as well as the registered LaMetric devices.
Particularly, the latter is of great paramount since the list of devices
contains an API key for each device that can be used to communicate with the
device in the local network without connecting to the cloud.For that reason, the default configuration of the module will receive all
LaMetric devices from the cloud on the first call of ``get_devices`` and store
them in the ``~/.lmdevices`` file. All further calls of ``get_devices`` will
simply read this file and return the devices without any interaction with the
LaMetric cloud.Configuration of the Module
~~~~~~~~~~~~~~~~~~~~~~~~~~~There are three different ways to provide the LaMetric API credentials to the
module: by constructor, by environment variables or by config file.1. **By constructor**: Just provide the ``client_id`` and ``client_secret`` in
the constructor of the ``LaMetricManager`` class, e.g.:::
CLIENT_ID = ""
CLIENT_SECRET = ""lmn = LaMetricManager(client_id=CLIENT_ID, client_secret=CLIENT_SECRET)
2. **By environment variables**: Just set the ``LAMETRIC_CLIENT_ID`` and the
``LAMETRIC_CLIENT_SECRET`` environment variable, e.g. in bash:::
export LAMETRIC_CLIENT_ID=""
export LAMETRIC_CLIENT_SECRET=""When not providing the ``client_id`` and ``client_secret`` in the constructor,
the environment variables will be used instead.3. **By config file**: The default config file is set to ``~/.lmconfig``. When
initializing the ``LaMetricManager`` class without parameters the config file
will be loaded, if it is already existing. Otherwise you can set the
``auto_create_config`` parameter in the constructor to True, to create an empty
configuration file. Simply fill your credentials in the config file:::
[lametric]
client_id =
client_secret =On the next start, the config file will be read automatically, when neither
``client_id`` and ``client_secret`` are set in the constructor nor the
``LAMETRIC_CLIENT_ID`` and the ``LAMETRIC_CLIENT_SECRET`` environment variables
are set.As stated above in the background section, after the devices have been obtained
from the LaMetric cloud once, all further interaction can be done locally
without any interaction with the LaMetric cloud.Example
-------As simple example, let's send a "hello world" message with an icon to the
LaMetric Time. It is assumed that you have provided the application credentials
using the environment variables or the config file so that no parameters are
set in the constructor of the LaMetricManager.::
from lmnotify import LaMetricManager, Model, SimpleFrame
# create an instance of the LaMetricManager
lmn = LaMetricManager()# get devices
devices = lmn.get_devices()# use first device to do some tests
lmn.set_device(devices[0])# prepare a simple frame with an icon and some text
sf = SimpleFrame("i210", "Hello World!")# prepare the model that will be send as notification
model = Model(frames=[sf])# send the notification the device
lmn.send_notification(model)For more examples see https://github.com/keans/lmnotify/tree/master/examples .
Development
-----------If you want to contribute in the development, please check out the source code
at https://github.com/keans/lmnotify.git .To get started with the development:
::
git clone [email protected]:keans/lmnotify.git
cd lmnotify/
virtualenv env
source env/bin/activate
pip install -r requirements.txtFor verbose debug output simply set the logging level to debug:
::
import logging
logging.basicConfig(level=logging.DEBUG)