A Tedee Lock Client package
Project description
Python Tedee Async Client Package
This is a Tedee Lock Client package. It is an async implementation of joerg65's original package.
Install:
From pip
pip install pytedee-async
Locally
pipenv install -e .
# or
python3 setup.py install
Try it out
- Generate personal key. Instructions: https://tedee-tedee-api-doc.readthedocs-hosted.com/en/latest/howtos/authenticate.html#personal-access-key
Minimal scopes required for enable integration are:
- Devices.Read
- Lock.Operate
- with
example.py
: Create a fileconfig.json
next toexample.py
:
{
"personalToken": "<your token>"
}
cd into the directory of those to files and run
python example.py
- Initiate an instance of
TedeeClient
from pytedee_async import TedeeClient
pk = "<your PersonalKey>"
# through init
client = TedeeClient(pk) # is initialized with no locks
client.get_locks() # get the locks
# through classmethod
# will initialize directly with all locks you have
client = await TedeeClient.create(pk)
- the locks are avialable in a dictionary
client.locks_dict
with the key of the dict being the serial number of each lock, or in a listclient.locks
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
pytedee_async-0.2.4.tar.gz
(8.9 kB
view details)
Built Distribution
File details
Details for the file pytedee_async-0.2.4.tar.gz
.
File metadata
- Download URL: pytedee_async-0.2.4.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
38f4821ae84e08496d19bb08d0fad8c1fe94a3783dc028e7247dfb0959d973b0
|
|
MD5 |
e40516e0b394c986a66d854f08de683a
|
|
BLAKE2b-256 |
a93e3ce5a992b670c509787d921b15ea7bfaab0b947a3f6ee47500e7cb8355ef
|
File details
Details for the file pytedee_async-0.2.4-py3-none-any.whl
.
File metadata
- Download URL: pytedee_async-0.2.4-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
41068ff71aafadcd5af562ac9f39a37c45a9b93dccf1f08eee54bbc2f6578de1
|
|
MD5 |
12b56be1573e7dd603ae32cb29a726b8
|
|
BLAKE2b-256 |
930a5909a7df8a6f3512cd86b2d4d4a0b875b6adfc6a8a17dc30b9dd11b192b9
|