Python Kodak SmartHome API
Project description
Python Kodak Smart Home
Python Kodak Smart Home is a library written in Python 3 (>=3.7) that works as API for Kodak Smart Home Portal.
This API uses the credentials from Kodak Smart Home Portal to fetch devices registered and its events to be used as Python Projects.
This project is not part of Kodak.
Installation
pip install python-kodaksmarthome
Usage
Initializing the connection
>>> from kodaksmarthome import KodakSmartHome >>> my_home = KodakSmartHome('my@email.com', 'my-pass') >>> my_home.connect() >>> my_home.is_connected True
Listing devices, state, model and device id
>>> for device in my_home.list_devices: ... print(f"Device: {device['name']}") ... print(f"Device ID: {device['device_id']}) ... print(f"Model: {device['model_name']}) ... print(f"Online: {device['is_online']}\n") ... Device: Playground Device ID: '000009999999999999999999' Model: Cherish 525 Online: False Device: Bedroom Device ID: '00000222222222222222222' Model: Cherish 525 Online: True
Listing last device motion events
>>> motion_events = my_home.get_motion_events(device_id="00000222222222222222222") >>> for event in motion_events[:2]: ... print(f"snapshot: {event['snapshot']}") ... print(f"video_recorded: {event['data'][0]['file']}") ... print(f"data: {event['created_date']}\n") snapshot: http://video_url/00000222222222222222222/SNAPSHOT.jpg video_recorded: http://video_url/00000222222222222222222/VIDEO000001.flv date: 2020-01-04T16:11:48.000Z snapshot: http://video_url/00000222222222222222222/SNAPSHOT video_recorded: http://video_url/00000222222222222222222/VIDEO000002.flv date: 2020-01-04T16:08:52.000Z
Documentation
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for python-kodaksmarthome-0.1.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd28227f9aebbc573e0f9c4cde6569b5c379d27b0a751f18ed50819c91bb1ddf |
|
MD5 | 74fc0bbea4aed5c6c35360b1101010cd |
|
BLAKE2-256 | a3d7ea49895f7f21c396a91ec20ccfe2333c5fd3a0e06df36a9eb3fabd64e059 |
Close
Hashes for python_kodaksmarthome-0.1.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0eb9ba8492d994e8beb09be94f65885d8744bca4d3a76cb39d480f61778e087 |
|
MD5 | fd7c7808112bb27d6587b558f7d39506 |
|
BLAKE2-256 | 32c0a9422ffa2c0885de1bff049b1438d9377abc3c543051b73a7edcaac62b05 |